[HAL] Fix tone on ESP32 IDF > 5.0.0 (#1123)
This commit is contained in:
parent
a8b6c38488
commit
940eb07674
1 changed files with 2 additions and 0 deletions
|
@ -126,6 +126,8 @@ void inline ArduinoHal::tone(uint32_t pin, unsigned int frequency, RadioLibTime_
|
||||||
if(prev == -1) {
|
if(prev == -1) {
|
||||||
#if !defined(ESP_IDF_VERSION) || (ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5,0,0))
|
#if !defined(ESP_IDF_VERSION) || (ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5,0,0))
|
||||||
ledcAttachPin(pin, RADIOLIB_TONE_ESP32_CHANNEL);
|
ledcAttachPin(pin, RADIOLIB_TONE_ESP32_CHANNEL);
|
||||||
|
#else
|
||||||
|
ledcAttach(pin, frequency, 14); // 14-bit resolution should be enough
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
if(prev != frequency) {
|
if(prev != frequency) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue