Replies: 1 comment
-
Thanks for the interest in The r2t2 and arduino-tx examples demonstrate the usage of "only tones" mode: Lines 73 to 75 in bac95c8 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I'm liking the library a lot so far, but when I tried using it on an embedded device (a Playdate), it runs pretty slow with the usual TX encoding. I tried switching the mode to
GGWAVE_OPERATING_MODE_TX_ONLY_TONES
, but it just logsTx is disabled - cannot transmit data with this GGWave instance
and returns 0. Looking at the code in the
ggwave_encode
function of the C API, it seems to look directly atggWave->txWaveform
, ignoring tones. Also, it callsGGWave::init
explicitly, which logs the above message ifm_isTxEnabled
is false (which it is, inTX_ONLY_TONES
mode).So... I don't really know how one would encode as "only tones", even more so with just the C API. Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions