Replies: 6 comments 2 replies
-
I suggest checking the examples, there are calls to
Then you can
|
Beta Was this translation helpful? Give feedback.
-
Not sure if you can disable channel 0 then call |
Beta Was this translation helpful? Give feedback.
-
Check also #33 which is where I now remember I got the info, especially the last message. |
Beta Was this translation helpful? Give feedback.
-
@MikeX7 The LMIC does not allow "standard channels" in the region to be disabled or changed. (This was done as part of the compliance efforts -- these are all common code paths, and the compliance test tries to disable and change default channels from the MAC messages. It wasn't convenient to duplicate code, so I just locked things down to match the spec.) So single-channel support is going to be hard, as all regions have at least two channels. You're going to have to fork and edit the code, or use an older repo. Sorry! |
Beta Was this translation helpful? Give feedback.
-
So called Single Channel Packet Forwarders (SCPF) are not LoRaWAN gateways because not compliant with LoRaWAN requirements. Not sure whichLoRaWAN network provider you want to use this with but on The Things Network (TTN) and many commercial LoRaWAN networks SCPF are not supported and not allowed. For more information check the LoRaWAN network providers (e.g. for TTN check their forum). |
Beta Was this translation helpful? Give feedback.
-
You can just use the ping pong driver for RFM95, no need for full blown LMIC. |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am going to be running a tiny private lorawan network for a few sensors I have and it wouldn't really make sense for me to buy full blown expensive gateways to service 2 or 3 sensors, so I will be using a gateway cobbled together from an ESP and one RFM95 module, which means this gateway will only be listening on one spreading factor and one channel.
For my nodes I would like to use the MCCI library with otaa. But, I need to somehow limit the mcci to only use one SF (9) and one channel, to make sure the gateway can hear it.
I realize that this is out of spec for lorawan, but since I can't afford to buy (and it wouldn't make sense in my case) to run full gateways (and there aren't any deployed where I live) this is the only option I have.
I had a look at the mcci source code and I could maybe hack it somehow together by changing all the frequencies in the config files and adjusting the random channel selections and such to all use the same SF and channel, but I am hoping that there is some cleaner way to do this.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions