Teensy 4.1 Minimum Hardware SPI Speed?

Doodads

Member
I'm debugging a SPI communication error between my Teensy 4.1 and an SPI stepper driver (TMC2130), and I'm having trouble dropping the SPI speed to my target 120kHz. I'm using spi_speed
= 120000 with the below:
Code:
SPI.beginTransaction(SPISettings(spi_speed, MSBFIRST, SPI_MODE3));

I found https://www.pjrc.com/teensy/td_libs_SPI.html which states "The SPI protocol allows for a range of transmission speeds ranging from 1Mhz to 100MHz." Is it impossible to drop the SPI speed lower than 1Mhz?
 
Back
Top