bsp.h 255 B

1234567891011121314
  1. #ifndef __BSP_H__
  2. #define __BSP_H__
  3. #include "hal/hal.h"
  4. #include "hal/pwm.h"
  5. #include "hal/adc.h"
  6. void system_init(void);
  7. void system_reboot(void);
  8. int get_hall_stat(int samples);
  9. void wdog_reload(void);
  10. void wdog_enable(void);
  11. #endif /* __BSP_H__ */