Configuring the HopeRF Radio to run in FSK Mode #28
-
|
Hello, is anyone familiar with configuring the hope RF radio to run in FSK mode instead of LoRa. I tried changing code in Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
@Michael-Equi See line 260 of that library. if self.operation_mode != SLEEP_MODE or not self.long_range_mode:
raise RuntimeError("Failed to configure radio for LoRa mode, check wiring!")So only LoRa is supported by the adafruit library at the moment. It isn't hard to add the FSK capability, but my implementations aren't coherent enough to share with others (all it'd do is probably cause confusion). EDIT: |
Beta Was this translation helpful? Give feedback.
@Michael-Equi See line 260 of that library.
So only LoRa is supported by the adafruit library at the moment. It isn't hard to add the FSK capability, but my implementations aren't coherent enough to share with others (all it'd do is probably cause confusion).
EDIT:
I realized my response wasn't super clear. What that code is saying is: if the operating mode isn't
sleep(aka idle) orlong range(aka LoRa), then raise an error. In other words, they haven't implemented anything else so that catch is there to prevent the user from g…