I have manually formed a packet as a bytestream that I want to send as is. This includes all the header fields and payload. I want to send this packet bytestream exactly as is.
I have tried using modem.beginPacket(), modem.write(), and modem.endPacket(). But there seems to be some kind of encapsulation, since the message type is confirm-data-up, when the bytestream I created is a join-request.
I see in the repo for MKRWAN there is a private function modemSend(). Is it possible to use this function to send my bytestream as is? Are there any alternatives?