123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- #ifndef _osconfig_
- #define _osconfig_
- #define OS_MAX_TASKS 64
- #define OS_MAX_QUEUES 64
- #define OS_MAX_COUNT_SEMAPHORES 20
- #define OS_MAX_BIN_SEMAPHORES 20
- #define OS_MAX_MUTEXES 20
- #define OS_MAX_PATH_LEN 64
- #define OS_MAX_LOCAL_PATH_LEN (OS_MAX_PATH_LEN + OS_FS_PHYS_NAME_LEN)
- #define OS_MAX_API_NAME 20
- #define OS_MAX_FILE_NAME 20
- #define OS_BUFFER_SIZE 172
- #define OS_BUFFER_MSG_DEPTH 100
-
- #define OS_UTILITY_TASK_ON
- #ifdef OS_UTILITY_TASK_ON
- #define OS_UTILITYTASK_STACK_SIZE 2048
-
- #define OS_UTILITYTASK_PRIORITY 245
- #endif
- #define OS_MAX_CMD_LEN 1000
- #undef OS_INCLUDE_NETWORK
- #define OS_MAX_NUM_OPEN_FILES 50
- #define OS_SHELL_CMD_INPUT_FILE_NAME "/ram/OS_ShellCmd.in"
- #undef OS_INCLUDE_MODULE_LOADER
- #ifdef OS_INCLUDE_MODULE_LOADER
-
- #define OS_MAX_MODULES 10
-
-
- #endif
- #define OS_MAX_SYM_LEN 64
- #define OS_MAX_TIMERS 5
- #endif
|