board.h 297 B

12345678910111213141516171819
  1. #pragma once
  2. #ifndef _BOARD_H_
  3. #define _BOARD_H_
  4. /* Includes */
  5. #include "main.h"
  6. /* Type Defs */
  7. /* Exported macros */
  8. /* Constants */
  9. /* Defines */
  10. /* Variables */
  11. /* Exported funcions */
  12. void Board_Init(void);
  13. void EXTI4_15_IRQHandler(void);
  14. void display_test(void);
  15. #endif /* _BOARD_H_ */