stm32f2_hal.h 292 B

123456789101112131415
  1. #ifndef STM32F2_HAL_H
  2. #define STM32F2_HAL_H
  3. //You probably don't need this from rest of code
  4. //#include "stm32f2_hal_lowlevel.h"
  5. void init_uart(void);
  6. void putch(char c);
  7. char getch(void);
  8. void trigger_setup(void);
  9. void trigger_low(void);
  10. void trigger_high(void);
  11. #endif // STM32F2_HAL_H