- 11 Nov, 2022 1 commit
-
-
Jan Procházka authored
-
- 09 Nov, 2022 2 commits
-
-
Me No Dev authored
* ESP-IDF v4.4.3
-
Jan Procházka authored
-
- 07 Nov, 2022 3 commits
-
-
David McCurley authored
Improves WiFi reconnection
-
Zeynep Dicle authored
* Add new board (Deneyap Kart 1A) * Update pins_arduino.h * Add newly board (Deneyap Kart G) New Deneyap Family member, wearable development board * updated Deneyap boards pin_arduino.h files * Update boards.txt * Update pins_arduino.h * updated deneyap boards pins_arduino.h * updated Deneyap boards variants files * updated Deneyap boards pins_arduino.h Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Ha Thach authored
which prevent changing to other partition scheme
-
- 04 Nov, 2022 1 commit
-
-
Jan Procházka authored
* add touch.rst * update touchRead comment in header file * Edited examples * typo changes + updates * about edit
-
- 03 Nov, 2022 2 commits
-
-
Jan Procházka authored
* Add ESP32S3 to libraries support list * Update libraries.rst
-
HACKER3000 authored
* Add the Partition Scheme Menu to HELTEC LoRa32 V1 This is missing from many boards, i may add that to all of them * reordered heltec_wifi_lora_32 partition options Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
- 02 Nov, 2022 9 commits
-
-
Jan Procházka authored
* added test for touch peripheral * removed cfg.json * pass test for unsupported chips * fixed condition * changed released value for S2 * add new chip error
-
John authored
* Update RMakerDevice.h Changer spelling of addTemprature * Update RMakerDevice.cpp Cahnge Spelling of add TempratureParam * Update README.md Update documentation addTemperatureParam
-
Rotzbua authored
... while readValue
-
Sanket Wadekar authored
* Added OTA Event Handlers * Overrided verifyRollbackLater Method Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
-
YOSHIKI authored
-
Rotzbua authored
Update: * actions/checkout * actions/setup-python * actions/cache https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
-
Juan Luis Leal Contreras authored
Fixed #7406 . The "reason2str" macro in WiFiGeneric.cpp tries to read memory from index "-1" in "system_event_reasons" array when handling STA_DISCONNECTED event with reason 0. Dealing with reason 0 as a reason 1 (WIFI_REASON_UNSPECIFIED) will solve the problem (the reason for this event to arrive with reason 0 is unknown). #7406
-
Rodrigo Garcia authored
-
WereCatf authored
The original code assumes 100Hz FreeRTOS tick rate and just supplies vTaskDelay with the assumed number of ticks required for the wanted delay. This patch simply fixes it to use portTICK_PERIOD_MS, thereby working correctly regardless of what tick rate FreeRTOS has been configured to run at.
-
- 28 Oct, 2022 1 commit
-
-
Sanket Wadekar authored
Co-authored-by: Pedro Minatel <pedro.minatel@espressif.com>
-
- 26 Oct, 2022 5 commits
-
-
Wind-stormger authored
-
Michael Ammann authored
Somehow the fix #7129 was not applied to NORA-W10 probably both changes were happening at around the same time, this PR fixes this. Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
TAMC authored
Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Hamish Cunningham authored
As per #6962 we have another case of build.flash_type incorrectly named qspi; this commit fixes the issue for the unphone9 board. Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
lewis he authored
TBeam adds a revision option to facilitate the differentiation of boards of different versions (#7332) Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
- 25 Oct, 2022 2 commits
-
-
Vojtěch Bartoška authored
* Update of supported SoCs Changed ESP32-S3 support to stable. * Update getting_started.rst Co-authored-by: Pedro Minatel <pedro.minatel@espressif.com>
-
Wai Weng authored
* Added support for Cytron Maker Feather AIoT S3. * 1. Select OPI PSRAM by default. 2. Fixed pin name error in variant.cpp. 3. Added definition for RGB_BUILTIN. * Define the RGB_BUILTIN as shown in #6979. * Added pin definition for A12 (Vin Sense).
-
- 24 Oct, 2022 2 commits
-
-
mjysci authored
Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
-
Jesse Peterson authored
board.txt
-
- 29 Sep, 2022 2 commits
-
-
Vojtěch Bartoška authored
Add v2.0.5 into Issue Template
-
Vojtěch Bartoška authored
Update of Issue template with addition of new version 2.0.5.
-
- 27 Sep, 2022 1 commit
-
-
Me No Dev authored
-
- 23 Sep, 2022 2 commits
-
-
Me No Dev authored
-
Tomáš Pilný authored
* Doc update: added note about global arduino component * Requested changne IDF -> ESP-IDF
-
- 19 Sep, 2022 1 commit
-
-
Sergei Silnov authored
-
- 17 Sep, 2022 3 commits
-
-
me-no-dev authored
-
Zeynep Dicle authored
* Add new board (Deneyap Kart 1A) * Update pins_arduino.h * Add newly board (Deneyap Kart G) New Deneyap Family member, wearable development board
-
RefactorFactory authored
The HID semaphore allows USBHID::SendReport() to wait for the completion of report sending. With a zero timeout xSemaphoreTake() after calling tud_hid_n_report(), occasionally, the following would happening: 1. USBHID::SendReport() would send a report by calling tud_hid_n_report(). 2. The send would complete and (presumably on another thread) tud_hid_report_complete_cb() would be called and it would xSemaphoreGive() the semaphore. 3. In USBHID::SendReport(), the zero timeout xSemaphoreTake(sem, 0) would succeed, taking the semaphore. 4. On the next line, xSemaphoreTake(sem, timeout_ms ...) would timeout because the semaphore was already taken by the previous line of code. The result would be waiting timeout_ms for no reason. The purpose of the zero timeout xSemaphoreTake() is to clear the semaphore in case a previous SendReport() timed out waiting for the semaphore. In that case, tud_hid_report_complete_cb() may be called after the timeout, giving the semaphore. Then the next SendReport() would start with the semaphore given, which isn't desired if we want to call xSemaphoreTake(sem, timeout_ms ...) on it. There have also been other cases where tud_hid_report_complete_cb() is called an extra time, causing the same situation. The fix is to move the zero timeout xSemaphoreTake() before the call to tud_hid_n_report(). This eliminates the race between the zero timeout xSemaphoreTake() and tud_hid_report_complete_cb() in the common case when no timeout occurs. There is still a possible race condition between the zero timeout xSemaphoreTake() and tud_hid_report_complete_cb() in the case of a timeout, but that should be rarer.
-
- 16 Sep, 2022 3 commits
-
-
David McCurley authored
Issue: Serial data sent during frequency change is corrupted. Fixes corrupt debug message by printing the message after the frequency change is completed.
-
me-no-dev authored
-
Me No Dev authored
* Add IDF libs from v4.4.2 * Implement build time elf2bin for the bootloader
-