fly_param.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 SD_MUTEX_PRIO 20
  8. #define UART1_TASK_PRIO 23
  9. #define UART3_TASK_PRIO 24
  10. #define MISC_PRIO 28
  11. #define IEC_PRIO 30
  12. #define TCP_PRIO 31
  13. #define IEC_STATE_PRIO 32
  14. #define FTP_CMD_PRIO 33
  15. #define FTP_DATA_PRIO 34
  16. #define INIT_TASK_PRIO 35
  17. #define INIT_STK_SIZE 128
  18. #define MISC_TASK_STK_SIZE 512
  19. #define IEC_TASK_STK_SIZE 1024
  20. #define IEC_STATE_TASK_STK_SIZE 512
  21. #define FTP_CMD_TASK_STK_SIZE 512
  22. #define FTP_DATA_TASK_STK_SIZE 2048
  23. #define TCP_TASK_STK_SIZE 512
  24. #define LED1_STK_SIZE 512
  25. #define UART1_TASK_STK_SIZE 256
  26. #define UART3_TASK_STK_SIZE 256
  27. extern OS_EVENT *net_mutex;
  28. extern OS_EVENT *can1_sem;
  29. extern OS_EVENT *can2_sem;
  30. extern OS_EVENT *uart1_mbox;
  31. extern OS_EVENT *uart3_mbox;
  32. extern OS_EVENT *ftp_mbox;
  33. extern SqQueue CanQueueCan1;
  34. extern SqQueue CanQueueCan2;
  35. extern CPU_STK init_task_stk[INIT_STK_SIZE];
  36. extern CPU_STK uart1_task_stk[UART1_TASK_STK_SIZE];
  37. extern CPU_STK uart3_task_stk[UART3_TASK_STK_SIZE];
  38. extern CPU_STK misc_task_stk[MISC_TASK_STK_SIZE];
  39. extern CPU_STK iec104_task_stk[IEC_TASK_STK_SIZE];
  40. extern CPU_STK iec_state_task_stk[IEC_STATE_TASK_STK_SIZE];
  41. extern CPU_STK ftp_server_cmd_task_stk[FTP_CMD_TASK_STK_SIZE];
  42. extern CPU_STK ftp_server_data_task_stk[FTP_DATA_TASK_STK_SIZE];
  43. extern CPU_STK tcp_task_stk[TCP_TASK_STK_SIZE];
  44. #endif