Hi,
I want to output a high & low voltage with an array, the array contains a sequence number, looks like: {0, 1, 0, 0, 0, 1, 1, 1, 1, 0, ...} , and the length of the array is fixed, might be 100, I know I can using the GPIO and a while loop to do that, but I want to do it without CPU, because the interval of each voltage needs less 1us, e.g every 120ns output a high or low.
I know how to use PPI, Timer, GPIO&GPIOTE, but no idea how to combine them, to take an element from the array, and put it as the output of the GPIO PIN.
Thanks