Hi, I think I am trying to do something similar to what you describe here. I am using a Teensy 4.1. I would like to generate signals that are around 100ns in width for on/off keying at 10MHz. Is it possible to update...
I see no problem setting the CSCMR1 to be ipg_clk_root and using interval timers. As the clock is 6.25 times faster, the timing needs to be adjusted but still works. For example
IntervalTimer myTimer;
uint32_t...
Thank you for the reply! Looks like the MUX was taking the OSC clock (24MHz) instead of the IPG clock (150MHz). The default for CSCMR1 in the manual says that it should take the IPG clock but perhaps this is changed in...
Hi, does anyone have any insight on how to change the clock source on the GPT to be higher than 24MHz? I see on page 2961 of the manual that I should be able to change the input to ipg_clk_highfreq but this still seems...