Tags: smartmeio/arancino-core-esp32
Tags
Merge branch 'feat-index-merge' into 'dev' Feat index merge See merge request smartme.io/arancino/ide/arancino-esp32-core!2
minor fixes to platform.txt file: * fixing esptool_py upload path so to use the download package * dropping xtensa-esp32 runtime toolchain paths since are detected by the recipe itself
adding support for esp32s2 and esp32c3 MCUs to arancino ESP32 core
Implement SigmaDelta based on ESP-IDF API (espressif#6053) Summary This PR is refactoring of SigmaDelta HAL in order to use IDF instead of current Register manipulation approach. Impact Change in API: uint32_t sigmaDeltaSetup(uint8_t channel, uint32_t freq); changed to --> uint32_t sigmaDeltaSetup(uint8_t pin, uint8_t channel, uint32_t freq); void sigmaDeltaAttachPin(uint8_t pin); removed, no longer needed. Pin is attached in sigmaDeltaSetup()