[AFSK] Fixed incorrect mathod name

This commit is contained in:
jgromes 2022-06-19 16:06:24 +02:00
parent b0d660cf42
commit d62c9a6283

View file

@ -47,7 +47,7 @@ int16_t AFSKClient::noTone(bool keepOn) {
return(_phy->standby());
}
int16_t AFSKClient::tones(float baseFreq, uint8_t* bits, size_t len) {
int16_t AFSKClient::emulateTone(float baseFreq, uint8_t* bits, size_t len) {
// set fixed packet length mode
int16_t state = _phy->fixedPacketLengthMode(len);
RADIOLIB_ASSERT(state);