| |||||
Technical Support Support Resources
Product Information | RTX51 TINY: RTX KERNEL NOT INCLUDEDInformation in this article applies to:
QUESTIONI have created a new RTX51 TINY application but the linker does not detect that I'm using the RTX TINY kernel. My program appears as follows:
void My_Task(void) _task_ 0 {
init();
printf("ABC");
while(1) {
;
}
}
ANSWERThe linker is not including the library because there are no calls to any of the RTX51 Tiny Library routines. It is not enought to just decleare a task. You must also call at least one routine from the RTX51 Tiny library. To solve this problem, you may call the os_switch_task function. Then, the linker will automatically include the correct RTX51 run-time library for your application. For example:
void My_Task(void) _task_ 0 {
init();
os_switch_task(); // Call at least one RTX library function
printf("ABC");
while(1) {
;
}
}
MORE INFORMATION
Last Reviewed: Sunday, July 17, 2005 | ||||
| |||||