Is it possible to generate a continuous square wave signal in the GPIO pin without extra order from CPU?
I realized that I would need continuously switching the GPIO pin for external MUX.
So, I want to know how to program continuously switching a GPIO pin (with a specific frequency and start timing for synchronizing with other GPIO pins)
However, If I on/off the GPIO pin with a delay, the timing doesn't match well.
So, is there any way to generate a frequency in a GPIO pin without any extra order such as DMA (it means that the GPIO pin just generates some signal without extra on/off control from the processor).
Is it possible? then what code should I use?