We would like to be able to configure a few things remotely. These are things are:
The wait time (Default 5 min)
Some of the lora parameter (power, confirm, etc)
The GPS Dynamic Model
The GPS fix timeout (and fix type or something like that)
We want a fairly simple format to do this. Like sending 0x01 0xFF could set the timeout to 255 minutes (or something like that). We could then send multiple commands by doing this after each other. The key is that we know that message 0x01 means 'wait time update' and it (in this case) is 1 byte of data. We could thus send 0x01 0xFF 0x10 0x00 0xFF to set the wait time AND the (example) GPS fix time (Where the fix time is 2 bytes)
We would like to be able to configure a few things remotely. These are things are:
We want a fairly simple format to do this. Like sending
0x01 0xFF
could set the timeout to 255 minutes (or something like that). We could then send multiple commands by doing this after each other. The key is that we know that message 0x01 means 'wait time update' and it (in this case) is 1 byte of data. We could thus send0x01 0xFF 0x10 0x00 0xFF
to set the wait time AND the (example) GPS fix time (Where the fix time is 2 bytes)