fly_param.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 UART1_TASK_PRIO 23
  11. #define UART3_TASK_PRIO 24
  12. #define UART6_TASK_PRIO 25
  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 LED1_STK_SIZE 512
  20. #define UART1_TASK_STK_SIZE 256
  21. #define UART3_TASK_STK_SIZE 256
  22. #define UART6_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 OS_EVENT *uart6_mbox;
  29. extern SqQueue CanQueueCan1;
  30. extern SqQueue CanQueueCan2;
  31. extern CPU_STK init_task_stk[INIT_STK_SIZE];
  32. extern CPU_STK uart1_task_stk[UART1_TASK_STK_SIZE];
  33. extern CPU_STK uart3_task_stk[UART3_TASK_STK_SIZE];
  34. extern CPU_STK uart6_task_stk[UART6_TASK_STK_SIZE];
  35. extern CPU_STK misc_task_stk[MISC_TASK_STK_SIZE];
  36. extern CPU_STK net_task_stk[NET_TASK_STK_SIZE];
  37. #endif