fly_param.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef __FLY_PARAM_H
  2. #define __FLY_PARAM_H
  3. #include "includes.h"
  4. #include "queue.h"
  5. #include <string.h>
  6. #define CAN_MSG_LEN 8
  7. #define UART1_TASK_PRIO 23
  8. #define UART3_TASK_PRIO 24
  9. #define MISC_PRIO 28
  10. #define IEC_PRIO 30
  11. #define IEC_STATE_PRIO 32
  12. #define TCP_PRIO 31
  13. #define INIT_TASK_PRIO 35
  14. #define INIT_STK_SIZE 128
  15. #define MISC_TASK_STK_SIZE 512
  16. #define IEC_TASK_STK_SIZE 1024
  17. #define IEC_STATE_TASK_STK_SIZE 512
  18. #define TCP_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. extern OS_EVENT *net_mutex;
  23. extern OS_EVENT *can1_sem;
  24. extern OS_EVENT *can2_sem;
  25. extern OS_EVENT *uart1_mbox;
  26. extern OS_EVENT *uart3_mbox;
  27. extern SqQueue CanQueueCan1;
  28. extern SqQueue CanQueueCan2;
  29. extern CPU_STK init_task_stk[INIT_STK_SIZE];
  30. extern CPU_STK uart1_task_stk[UART1_TASK_STK_SIZE];
  31. extern CPU_STK uart3_task_stk[UART3_TASK_STK_SIZE];
  32. extern CPU_STK misc_task_stk[MISC_TASK_STK_SIZE];
  33. extern CPU_STK iec104_task_stk[IEC_TASK_STK_SIZE];
  34. extern CPU_STK iec_state_task_stk[IEC_STATE_TASK_STK_SIZE];
  35. extern CPU_STK tcp_task_stk[TCP_TASK_STK_SIZE];
  36. #endif