fly_param.h 956 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 MISC_PRIO 28
  13. #define NET_PRIO 30
  14. #define INIT_TASK_PRIO 35
  15. #define INIT_STK_SIZE 128
  16. #define MISC_TASK_STK_SIZE 512
  17. #define NET_TASK_STK_SIZE 512
  18. #define LED0_STK_SIZE 512
  19. #define LED1_STK_SIZE 512
  20. #define UART1_TASK_STK_SIZE 256
  21. #define UART5_TASK_STK_SIZE 256
  22. extern OS_EVENT *can1_sem;
  23. extern OS_EVENT *can2_sem;
  24. extern OS_EVENT *uart1_mbox;
  25. extern SqQueue CanQueueCan1;
  26. extern SqQueue CanQueueCan2;
  27. extern CPU_STK init_task_stk[INIT_STK_SIZE];
  28. extern CPU_STK uart1_task_stk[UART1_TASK_STK_SIZE];
  29. extern CPU_STK misc_task_stk[MISC_TASK_STK_SIZE];
  30. extern CPU_STK net_task_stk[NET_TASK_STK_SIZE];
  31. extern CPU_STK LED_TASK_STK[LED0_STK_SIZE];
  32. #endif