fly_param.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef __FLY_PARAM_H
  2. #define __FLY_PARAM_H
  3. #include "includes.h"
  4. // #include "ext_flash.h"
  5. #include "queue.h"
  6. // #include "soc_out.h"
  7. // #include "bms_config.h"
  8. #include <string.h>
  9. #define CAN_MSG_LEN 8
  10. #define LED_RX_PRIO 7
  11. #define UART1_TASK_PRIO 23
  12. #define UART3_TASK_PRIO 24
  13. #define MISC_PRIO 28
  14. #define NET_PRIO 30
  15. #define INIT_TASK_PRIO 35
  16. #define INIT_STK_SIZE 128
  17. #define MISC_TASK_STK_SIZE 512
  18. #define NET_TASK_STK_SIZE 512
  19. #define LED0_STK_SIZE 512
  20. #define LED1_STK_SIZE 512
  21. #define UART1_TASK_STK_SIZE 256
  22. #define UART3_TASK_STK_SIZE 256
  23. extern OS_EVENT *net_mutex;
  24. extern OS_EVENT *can1_sem;
  25. extern OS_EVENT *can2_sem;
  26. extern OS_EVENT *uart1_mbox;
  27. extern OS_EVENT *uart3_mbox;
  28. extern SqQueue CanQueueCan1;
  29. extern SqQueue CanQueueCan2;
  30. extern CPU_STK init_task_stk[INIT_STK_SIZE];
  31. extern CPU_STK uart1_task_stk[UART1_TASK_STK_SIZE];
  32. extern CPU_STK uart3_task_stk[UART3_TASK_STK_SIZE];
  33. extern CPU_STK misc_task_stk[MISC_TASK_STK_SIZE];
  34. extern CPU_STK net_task_stk[NET_TASK_STK_SIZE];
  35. extern CPU_STK LED_TASK_STK[LED0_STK_SIZE];
  36. #endif