Hi,
I am working on TI RTOS sys/bios version bios_6_76_03_01
I want to achieve something simple as adding a delay between high and low pulse on a pin. Something like this:
GPIO_write(STEP_INDEX,HIGH);
delay();
GPIO_write(STEP_INDEX, LOW);
delay();
Is there a function that I can use something like delay(1000) ?
I went through this forum post :https://e2e.ti.com/support/legacy_forums/embedded/tirtos/f/355/t/537919?time-delay-ti-rtos
where you suggest using a clock, but in that case I would need to call that function which needs to be executed after the time delay period.
This is not feasible for me as I am using the above lines in a bigger function whose main purpose is more than just the lines mentioned here.
Please suggest another way to add delay between these two lines using any simple internal function if available.
Also, I am not sure if this is the right forum to ask this question. But I couldn't post questions on TI RTOS forum (Its says its archived) , please also suggest a way to directly ask questions related to TI RTOS to in the correct forum.
Thank you,
Arshiya Tabassum