You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enable configuring target variants (espressif#7019)
This change enables picking the right board configuration from the
variants/ folder. Previously, we would always pick the default
configuration (e.g., "esp32" instead of "heltec_wifi_lora_32_V2").
* Update .gitignore (espressif#7021)
Add entries to gitignore
* Update esptool to version 4.2.1 (espressif#7127)
* Update esptool to version 4.2.1
* Fix esptool for MacOS
* Esptool v4.2.1 for CI Platformio (espressif#7147)
to complete the test.
Co-authored-by: Jason2866 <[email protected]>
* Update get.py to support python 3.10+ (espressif#7166)
* Update get.py to support python 3.10+
* Use try/except to remove version check
* fixed names on the VID and PID for boards (espressif#7144)
somehow had duplicated the same name across all my boards. the PID's and VID's were correct, but the name was the same for all of them. that is fixed now.
* Compile error if CONFIG_FREERTOS_HZ != 1000 (espressif#6955)
* Compile error if CONFIG_FREERTOS_HZ != 1000
* add a check at the CMake level, per feedback
* Set CONFIG_FREERTOS_HZ=1000 in CI test of Arduino-as-component
* Adding u-blox NORA-W10 series (ESP32-S3) (espressif#7191)
* Create pins_arduino.h
* Update boards.txt
* Update boards.txt
* Fixedespressif/esp-rainmaker#152 (espressif#7171)
* Update PlatformIO build scripts (espressif#7200)
This update includes the following:
- Implemented an additional build step that produces an adjusted bootloader image with updated headers
according to selected flash mode and size values. This step is only executed for debugging or uploading
via debug probes.
- Implemented a basic mechanism to dynamically add an extra UF2 bootloader image if corresponding
partition is selected (e.g. for Adafruit targets)
- Minor code formatting
Co-authored-by: Dr. Christian Kohlschütter <[email protected]>
Co-authored-by: Me No Dev <[email protected]>
Co-authored-by: Paul Price <[email protected]>
Co-authored-by: Daniel Egnor <[email protected]>
Co-authored-by: Michael Ammann <[email protected]>
Co-authored-by: Sanket Wadekar <[email protected]>
Co-authored-by: Valerii Koval <[email protected]>
Copy file name to clipboardExpand all lines: docs/source/esp-idf_component.rst
+1-2
Original file line number
Diff line number
Diff line change
@@ -140,8 +140,7 @@ If you are writing code that does not require Arduino to compile and you want yo
140
140
FreeRTOS Tick Rate (Hz)
141
141
-----------------------
142
142
143
-
You might notice that Arduino-esp32's `delay()` function will only work in multiples of 10ms. That is because, by default, esp-idf handles task events 100 times per second.
144
-
To fix that behavior, you need to set FreeRTOS tick rate to 1000Hz in `make menuconfig` -> `Component config` -> `FreeRTOS` -> `Tick rate`.
143
+
The Arduino component requires the FreeRTOS tick rate `CONFIG_FREERTOS_HZ` set to 1000Hz in `make menuconfig` -> `Component config` -> `FreeRTOS` -> `Tick rate`.
0 commit comments