You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
2.7 KiB
C

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include "SWM221.h"
#define ADC_USE_INT 0
void SerialInit(void);
int main(void)
{
ADC_InitStructure ADC_initStruct;
ADC_SEQ_InitStructure ADC_SEQ_initStruct;
SystemInit();
SerialInit();
PORT_Init(PORTA, PIN14, PORTA_PIN14_ADC0_CH0, 0); //PA.14 => ADC0.CH0
PORT_Init(PORTA, PIN11, PORTA_PIN11_ADC0_CH1, 0); //PA.11 => ADC0.CH1注意此通道只在 ADC 参考源为 ADC_REF_VDD 时可用
PORT_Init(PORTA, PIN8, PORTA_PIN8_ADC0_CH2, 0); //PA.8 => ADC0.CH2
PORT_Init(PORTB, PIN6, PORTB_PIN6_ADC0_CH5, 0); //PB.6 => ADC0.CH5
PORT_Init(PORTB, PIN5, PORTB_PIN5_ADC0_CH6, 0); //PB.5 => ADC0.CH6
PORT_Init(PORTB, PIN4, PORTB_PIN4_ADC0_CH7, 0); //PB.4 => ADC0.CH7
PORT_Init(PORTB, PIN2, PORTB_PIN2_ADC0_CH8, 0); //PB.2 => ADC0.CH8
ADC_initStruct.clkdiv = 4;
ADC_initStruct.refsrc = ADC_REF_VDD;
ADC_initStruct.samplAvg = ADC_AVG_SAMPLE1;
ADC_Init(ADC0, &ADC_initStruct);
ADC_SEQ_initStruct.trig_src = ADC_TRIGGER_SW;
ADC_SEQ_initStruct.samp_tim = 6;
ADC_SEQ_initStruct.conv_cnt = 1;
ADC_SEQ_initStruct.EOCIntEn = ADC_USE_INT;
ADC_SEQ_initStruct.channels = (uint8_t []){ ADC_CH0, 0xF };
ADC_SEQ_Init(ADC0, ADC_SEQ0, &ADC_SEQ_initStruct);
ADC_Open(ADC0);
#if ADC_USE_INT
ADC_Start(ADC_SEQ0, 0);
while(1==1)
{
}
#else
while(1==1)
{
ADC_Start(ADC_SEQ0, 0);
while(ADC_Busy(ADC0)) __NOP();
printf("%4d,", ADC_Read(ADC0, ADC_CH0));
}
#endif
}
void ADC_Handler(void)
{
if(ADC_INTStat(ADC0, ADC_SEQ0, ADC_IT_EOC))
{
ADC_INTClr(ADC0, ADC_SEQ0, ADC_IT_EOC);
printf("%4d,", ADC_Read(ADC0, ADC_CH0));
ADC_Start(ADC_SEQ0, 0);
}
}
void SerialInit(void)
{
UART_InitStructure UART_initStruct;
PORT_Init(PORTA, PIN0, PORTA_PIN0_UART0_RX, 1); //GPIOA.0配置为UART0 RXD
PORT_Init(PORTA, PIN1, PORTA_PIN1_UART0_TX, 0); //GPIOA.1配置为UART0 TXD
UART_initStruct.Baudrate = 57600;
UART_initStruct.DataBits = UART_DATA_8BIT;
UART_initStruct.Parity = UART_PARITY_NONE;
UART_initStruct.StopBits = UART_STOP_1BIT;
UART_initStruct.RXThreshold = 3;
UART_initStruct.RXThresholdIEn = 0;
UART_initStruct.TXThreshold = 3;
UART_initStruct.TXThresholdIEn = 0;
UART_initStruct.TimeoutTime = 10;
UART_initStruct.TimeoutIEn = 0;
UART_Init(UART0, &UART_initStruct);
UART_Open(UART0);
}
/******************************************************************************************************************************************
* 函数名称: fputc()
* 功能说明: printf()使用此函数完成实际的串口打印动作
* 输 入: int ch 要打印的字符
* FILE *f 文件句柄
* 输 出: 无
* 注意事项: 无
******************************************************************************************************************************************/
int fputc(int ch, FILE *f)
{
UART_WriteByte(UART0, ch);
while(UART_IsTXBusy(UART0));
return ch;
}