8000 Tags · smartmeio/arancino-core-esp32 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: smartmeio/arancino-core-esp32

Tags

1.0.0

Toggle 1.0.0's commit message
Release 1.0.0

1.0.0-test.6

Toggle 1.0.0-test.6's commit message
fix index update on append

1.0.0-test.5

Toggle 1.0.0-test.5's commit message
Update .gitlab-ci.yml

1.0.0-test.4

Toggle 1.0.0-test.4's commit message
Update .gitlab-ci.yml

1.0.0-test.3

Toggle 1.0.0-test.3's commit message
Merge branch 'feat-index-merge' into 'dev'

Feat index merge

See merge request smartme.io/arancino/ide/arancino-esp32-core!2

1.0.0-test.2

Toggle 1.0.0-test.2's commit message
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

1.0.0-test.1

Toggle 1.0.0-test.1's commit message
adding support for esp32s2 and esp32c3 MCUs to arancino ESP32 core

2.0.2-base

Toggle 2.0.2-base's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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()
0