board.h 204 B

12345678910111213
  1. #ifndef __BOARD_H
  2. #define __BOARD_H
  3. #include "can.h"
  4. #include "drv_gpio.h"
  5. #include "dwt.h"
  6. #define RED_LED_PIN GET_PIN(F, 9)
  7. #define GREEN_LED_PIN GET_PIN(F, 10)
  8. void rt_hw_board_init(void);
  9. #endif