23 lines
247 B
C
23 lines
247 B
C
/*
|
|
* drv_adc.h
|
|
*
|
|
* Created on: Mar 31, 2023
|
|
* Author: gxms0
|
|
*/
|
|
|
|
#ifndef BSP_DRV_ADC_H_
|
|
#define BSP_DRV_ADC_H_
|
|
|
|
#include "ch32v20x.h"
|
|
#include "debug.h"
|
|
|
|
extern uint32_t adc_raw[4];
|
|
|
|
void adc_init(void);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* BSP_DRV_ADC_H_ */
|