The os_sys_init_user function initializes and starts the Real-Time eXecutive (RTX) kernel. Use this function when you must specify a large stack for the starting task. The task argument points to the task function to start after the kernel is initialized
The os_sys_init_prio function initializes and starts the Real-Time eXecutive (RTX) kernel. The task argument points to the task to start after the kernel is initialized. The priority argument specifies the priority for the task. The default task priority
Some other features of how I have things set up: I am using os_sys_init_user (rather than os_sys_init) to start *all* of my tasks, including init, to make it easy for me to fine-tune the size of each task's stack. In RTX_Config.c, I have the following settings: Number of...
The os_sys_init function initializes and starts the Real-Time eXecutive (RTX) kernel. The task argument points to the task function to start after the kernel is initialized. The RTX kernel gives the task a default priority of 1. The os_sys_init function