Hi everyone
I started communication between cubecell and the chirpstack server. The gateway is Mikrotik Lora8. I have a few questions in this regard.
-
On the mikrotik side I have the following messages:
https://prnt.sc/w2jkz7 -
On the chirpstack side I get something like this:
Something’s wrong?
- This is the code fragment that executes the sent data:
/* Prepares the payload of the frame */
static void prepareTxFrame( uint8_t port )
{
appDataSize = 2;
appData[0] = 1234;
appData[1] = 5678;
}
prepareTxFrame( appPort );
LoRaWAN.send();
deviceState = DEVICE_STATE_CYCLE;
- Where can I see this data (1234, 5678) in the frame?
https://prnt.sc/w2jln6
Sorry for these trivial questions, but I’m just getting started with Lora.
Regards.
JN