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 could not find an API for RTX to get the current ticks. I need to know that information in order to measure the performance.
The tick rate is a part of RTX's configuration. Why do you need something during runtime that you configure in RTX_config.c ?
I don't need to change it, I only need the ticks number so I can calculate the time for some operation such as
start = os_ticks_get(); do something here end = os_ticks_get();
then end - start is the time.
I need to find out the API for os_ticks_get()
in rt_time.h....
extern U16 os_time;