tm4c123_config.h 743 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (c) 2006-2019, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-06-27 AHTYDHD the first version
  9. */
  10. #ifndef __TM4C123GH6PZ_CONFIG_H__
  11. #define __TM4C123GH6PZ_CONFIG_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #ifdef RT_USING_SERIAL
  16. void uart_hw_config(void);
  17. #endif /* RT_USING_SERIAL */
  18. #ifdef RT_USING_ADC
  19. void adc_hw_config(void);
  20. #endif /* RT_USING_ADC */
  21. #ifdef RT_USING_PWM
  22. void pwm_hw_config(void);
  23. #endif /* RT_USING_PWM */
  24. #ifdef RT_USING_SPI
  25. void spi_hw_config(void);
  26. #endif /* RT_USING_SPI */
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /*__TM4C123GH6PZ_CONFIG_H__*/
  31. /************************** end of file ******************/