资源简介
nRF51822的adc和pwm

代码片段和文件信息
/* Copyright (c) 2009 Nordic Semiconductor. All Rights Reserved.
*
* The information contained herein is property of Nordic Semiconductor ASA.
* Terms and conditions of usage are described in detail in NORDIC
* SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
*
* Licensees are granted free non-transferable use of the information. NO
* WARRANTY of ANY KIND is provided. This heading must NOT be removed from
* the file.
*
*/
/** @file
* @defgroup uart_example_pca10001_main main.c
* @{
* @ingroup uart_example_pca10001
*
* @brief UART Example Application main file.
*
* This file contains the source code for a sample application using UART.
*
*/
#include
#include
#include “nrf.h“
#include “simple_uart.h“
#include “nrf_gpio.h“
#include “boards.h“
#include “twi_master.h“
#include “nrf_delay.h“
#include “nrf_adc.h“
#include “nrf_pwm.h“
//#define ENABLE_LOOPBACK_TEST /*!< if defined then this example will be a loopback test which means that TX should be connected to RX to get data loopback */
#define ERROR_PIN (LED_0) /*!< gpio pin number to show error if loopback is enabled */
#define MAX_TEST_DATA_BYTES (15U) /*!< max number of test bytes to be used for tx and rx */
#ifndef ENABLE_LOOPBACK_TEST
/** @brief Function for sending ‘ Exit!‘ string to UART.
Execution is blocked until UART peripheral detects all characters have been sent.
*/
static __INLINE void uart_quit()
{
simple_uart_putstring((const uint8_t *)“ \n\rExit!\n\r“);
}
/** @brief Function for sending ‘Start: ‘ string to UART.
Execution is blocked until UART peripheral detects all characters have been sent.
*/
static __INLINE void uart_start()
{
simple_uart_putstring((const uint8_t *)“ \n\rStart: “);
}
#else
/** @brief Function for setting @ref ERROR_PIN to one and enter an infinite loop. This function is called if any of the
* nRF6350 functions fail.
*/
static void show_error(void)
{
nrf_gpio_pin_write(ERROR_PIN 1);
while(true)
{
}
}
/** @brief Function for transmitting one char at a time as check if the loopback received data is same as transmitted
* Just used for testing with loopback setup (i.e @ref TX_PIN_NUMBER connected to @ref RX_PIN_NUMBER)
* return true if test passed else return false
*/
static void uart_loopback_test()
{
uint8_t tx_data[] = (“\n\r LOOPBACK_TEST“);
uint8_t rx_data[MAX_TEST_DATA_BYTES] = {0};
// Start sending one byte and see if you get the same
for(uint8_t i = 0; i < MAX_TEST_DATA_BYTES; i++)
{
bool status;
simple_uart_put(tx_data[i]);
if(!simple_uart_get_with_timeout(2 &rx_data[i]))
{
show_error();
}
}
for(uint8_t i = 0; i < MAX_TEST_DATA_BYTES; i++)
{
if ((rx_data[i] != tx_data[i]))
{
show_error();
}
}
return; // Test passed
}
#endif
/**
* @brief Function for application main entry
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-11-20 16:41 adc\
目录 0 2014-11-20 17:48 adc\arm\
文件 34712 2014-11-20 16:41 adc\arm\Jli
文件 650 2013-12-17 15:57 adc\arm\Jli
文件 138101 2013-12-18 16:55 adc\arm\uart_example.uvgui.L
文件 141263 2014-11-20 17:48 adc\arm\uart_example.uvgui.wntime
文件 136670 2013-12-18 15:58 adc\arm\uart_example.uvgui_L.bak
文件 143240 2014-11-20 10:05 adc\arm\uart_example.uvgui_wntime.bak
文件 20721 2014-11-20 17:48 adc\arm\uart_example.uvopt
文件 65831 2014-11-20 17:48 adc\arm\uart_example.uvproj
文件 6535 2014-11-20 16:41 adc\arm\uart_example_nrf51822_xxaa (256K).dep
文件 20738 2014-11-20 10:05 adc\arm\uart_example_uvopt.bak
文件 65911 2014-11-19 17:39 adc\arm\uart_example_uvproj.bak
目录 0 2014-11-20 16:41 adc\arm\_build\
文件 75 2014-11-20 16:41 adc\arm\_build\arm_startup_nrf51.d
文件 28529 2014-11-20 16:41 adc\arm\_build\arm_startup_nrf51.lst
文件 4436 2014-11-20 16:41 adc\arm\_build\arm_startup_nrf51.o
文件 19 2013-12-17 16:45 adc\arm\_build\ExtDll.iex
文件 256190 2014-11-20 16:41 adc\arm\_build\main.crf
文件 998 2014-11-20 16:41 adc\arm\_build\main.d
文件 237652 2014-11-20 16:41 adc\arm\_build\main.o
文件 347 2014-11-20 16:41 adc\arm\_build\main._2i
文件 6309 2014-11-20 15:22 adc\arm\_build\mpu6050.crf
文件 248662 2014-11-20 16:41 adc\arm\_build\nrf_adc.crf
文件 760 2014-11-20 16:41 adc\arm\_build\nrf_adc.d
文件 231268 2014-11-20 16:41 adc\arm\_build\nrf_adc.o
文件 366 2014-11-20 16:41 adc\arm\_build\nrf_adc._2i
文件 255759 2014-11-20 16:41 adc\arm\_build\nrf_pwm.crf
文件 848 2014-11-20 16:41 adc\arm\_build\nrf_pwm.d
文件 244140 2014-11-20 16:41 adc\arm\_build\nrf_pwm.o
文件 366 2014-11-20 16:41 adc\arm\_build\nrf_pwm._2i
............此处省略276个文件信息
- 上一篇:C++ 影碟租赁系统
- 下一篇:留言板实验报告
相关资源
- 单片机和adc0809数字电压表
- 单片机、ADC0808809设计简易数字电压表
- 数据采集系统——ADC0808的应用,单片
- ADC0809数字电压表 LCD1602显示 汇编程序
- 数字电压表(源程序 protues仿真)
- stm32通过DMA方式采集ADC数据
- broadcom phy BCM5482S datasheet(开发用)
- ADC0808工作时序图
- bcm5482 datasheet
- broadcom 802.11g 网络适配器驱动程序 v
- STM32F103VCT6TR - High-density performance lin
- AT89C51+ADC0808 PROTEUS仿真
- ADC0832ADC0809DAC0832三种芯片程序,c程序
- 数据采集系统——ADC0808的应用
- 超声处理原位反应合成Al2O3/ADC12复合材
- STM32AD采集DA还原
- 以单片机AT89S52、光电脉宽调制器芯片
- 最小NRF51822系统原理图+PCB版图+元器件
- ADC0808 数字电压表仿真+C程序
- AppleBluetoothBroadcomInstaller 滚轮
- BMS检测代码-12路-串联
- cs1237手册
- nrf51822 SDk12.3 DFU空中升级中添加看门狗
- MSP430教程:MSP430单片机ADC12模块
- 过采样技术提高ADC分辨率
- 12位逐次逼近寄存器型ADC转换器设计
- 12bit流水线ADC电路整体电路原理图-c
- 10位ADC转换器AD5612(stm32_IO口模拟I2C)
- STM32F103 ADC测电压 代码
- ADC采集数据存储SD卡和读取程序
评论
共有 条评论