16 lines
337 B
C
16 lines
337 B
C
/*
|
|
* Copyright (c) 2021 - 2022 hpmicro
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-05-08 hpmicro the first version
|
|
*/
|
|
#ifndef LIBRARIES_DRIVERS_DRV_ADC_H_
|
|
#define LIBRARIES_DRIVERS_DRV_ADC_H_
|
|
|
|
int rt_hw_adc_init(void);
|
|
|
|
#endif /* LIBRARIES_DRIVERS_DRV_ADC_H_ */
|