-
Notifications
You must be signed in to change notification settings - Fork 512
Description
Is your feature request related to a problem? Please describe.
I am trying to transmit continuously. As far as I can tell, I need to transmit a buffer, let it finish, then transmit another. I don't want to trigger bits manually, but rather rely on the radio timing.
Describe the solution you'd like
I want to be able to start transmitting a buffer, then append to it continuously before it empties.
Describe alternatives you've considered
I've considered triggering the bits manually, but calling delayMicroseconds() isn't as precise as the radio itself. Plus, I'd like to do other computations between buffer fills, not manually keying each bit.
Additional context
I'm working with a CC1101 and the UHF RFID protocol. Ideally, I'd be able to run a continuous wave without any gaps, and inject commands as necessary.