main.h 212 B

1234567891011
  1. #ifndef __MAIN_H
  2. #define __MAIN_H
  3. #include "stm32f4xx.h"
  4. #include "includes.h"
  5. void bsp_init(void);
  6. void init_task(void *pvParameters);
  7. void led0_task(void *pdata);
  8. void led1_task(void *pdata);
  9. #endif