12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2020-06-27 AHTYDHD the first version
- */
- #ifndef __ADC_CONFIG_H__
- #define __ADC_CONFIG_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef BSP_USING_ADC0
- #ifndef ADC0_CONFIG
- #define ADC0_CONFIG \
- { \
- .name ="adc0", \
- .adcbase = ADC0_BASE, \
- .channel = 0 , \
- .sequence = 2 , \
- .trigermode = ADC_TRIGGER_PROCESSOR, \
- .sequencepriority = 0 \
- }
- #endif /* ADC0_CONFIG */
- #endif /* BSP_USING_ADC0 */
- #ifdef BSP_USING_ADC1
- #ifndef ADC1_CONFIG
- #define ADC1_CONFIG \
- { \
- .name = "adc1", \
- .adcbase = ADC1_BASE, \
- .channel = 0 , \
- .sequence = 3 , \
- .syncMode = ADC_TRIGGER_PROCESSOR, \
- .sequencepriority = 0 \
- }
- #endif /* ADC1_CONFIG */
- #endif /* BSP_USING_ADC1 */
- #ifdef __cplusplus
- }
- #endif
- #endif /*__ADC_CONFIG_H__*/
- /************************** end of file ******************/
|