Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
-
Consider if you need to fill the buffer that quickly, you are very likely breaching local legal laws regarding duty cycle - typically 1% maximum airtime. And if you are doing back to back transmissions on the same frequency, sooner or later it will look like a denial of service to other users ... |
Beta Was this translation helpful? Give feedback.
-
If I move data into a buffer, and then do an interrupt driven transmission, e.g.
int16_t startTransmit(uint8_t* buffer, .... );
when the call to startTransmit returns: is the buffer free to be refilled, or must I wait for the transmit complete interrupt? I would like to refill the buffer while the SX1262 is sending out the previous packet. Or is the SX1262 sending it out from my userspace buffer?
Beta Was this translation helpful? Give feedback.
All reactions