-
I'm attempting to use the on-board SX1276 on the MKR1310 for FSK modulation. When I try the SX127x_FSK_Modem example I'm getting a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
MKR WAN 1310 is not officially supported by the library, though it looks like it still manages to compile on the platform (somehow). I'm not familiar with the architecture of the board, so I can't answer if it's even possible to get it running. I know it's using some Muarata module instead of plain SX1276 connected directly via SPI. |
Beta Was this translation helpful? Give feedback.
-
So, it seems the default SPI frequency is 2 MHz, which doesn't work on the MKR 1310. Adding
Only then I had a new problem. When transmitting hello world I got a timeout. I checked the Dio mapping and irqFlags2 registers. The radio wass enabled (I could see things happening on my Spectrum analyzer) but I received a timeout:
Check the comments for a potential fix. |
Beta Was this translation helpful? Give feedback.
So, it seems the default SPI frequency is 2 MHz, which doesn't work on the MKR 1310. Adding
SPISettings
with a Frequency of 200 kHz and doing aSPI1.begin()
beforeradio.beginFSK
works: