We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I am currently porting software from the RTX166 Real-Time OS to Advanced RTX166. In RTX166 it was possible to get current value of system time slice with os_get_timebase() function. In the new system this seems to be no longer possible. Is there a way to do it in ARTX166?
Use the following code to replace the old RTX166 function in ARTX166:
extern U16 os_time; U16 get_timebase() { return (os_time); }