27 lines
790 B
Plaintext
27 lines
790 B
Plaintext
/******************** (C) COPYRIGHT 2018 Designed by Captain *********************
|
||
* 文件名 :main.c
|
||
* 描述 : AD采集实验 PB14 ADC1_Channel 20 串口1输出ADC采集数据 波特率9600
|
||
* 实验平台:STM32L151C8T6/CBT6核心板
|
||
* 库版本 :ST1.0.0
|
||
* 时间 :2019-7-26
|
||
* 功能 :串口1输出AD采集的电压值 PB14 PB15
|
||
* 作者 :老船长电子研发
|
||
* 淘宝链接1 :https://item.taobao.com/item.htm?spm=a1z10.3-c.w4002-17922877423.31.78385d6d9n5D9C&id=600155773306
|
||
* 淘宝链接2 :https://item.taobao.com/item.htm?spm=a230r.1.14.20.7b545e82MPRlaH&id=581331325422&ns=1&abbucket=19#detail
|
||
**********************************************************************************/
|
||
|
||
#include "bsp.h"
|
||
|
||
//extern __IO uint16_t VREFINT_CAL;
|
||
int main(void)
|
||
{
|
||
Equitment_Init();
|
||
while(1)
|
||
{
|
||
process();
|
||
}
|
||
}
|
||
|
||
|
||
|