代码下载:
https://download.csdn.net/download/qq_31806069/12587963
#ifndef __K_ADC_H__
#define __K_ADC_H__
#include <stdlib.h>
#include "nrf52811.h"
#include "nrf52811_bitfields.h"
#include "nrf_soc.h"
#include "app_error.h"
/*
** 0-AIN0-pin2
** 1-AIN1-pin3
** 2-AIN2-pin4
** 3-AIN3-pin5
** 4-AIN4-pin28
** 5-AIN5-pin29
** 6-AIN6-pin30
** 7-AIN7-pin31
** 8-VDD
*/
/*
** ²ÎÊý1·¶Î§0~8
*/
void saadc_init(uint8_t who_ain);
/*
** ·µ»ØֵΪmv
*/
int16_t get_saadc(uint8_t who_ain);
void saadc_un_init(uint8_t who_ain);
#endif
网友评论