- 25 May, 2018 3 commits
-
-
reaper7 authored
* Additional partition scheme min_spiffs with minimal SPIFFS partition size and OTA support for bigger apps * Selectable (from menu) partitions for m5stack addition for m5stack (as is prepared for lolin32 board: https://github.com/espressif/arduino-esp32/pull/1379) discourse here: https://github.com/espressif/arduino-esp32/issues/1378 * Selectable (from menu) partitions for MH ET LIVE boards in reference to other boards (m5stack, lolin32) this PR adds partition scheme selection for MH ET LIVE boards also adds Core Debug Level selection for above boards
-
timkoers authored
Added IIC pins. I can confirm that this is working!
-
lbernstone authored
-
- 23 May, 2018 1 commit
-
-
sticilface authored
* Add `SYSTEM_EVENT_WIFI_READY` call back once wifi service is init. allows you to hook in, as the sdk does not generate this event for you. As it stands the SDK does not appear to set `WIFI_MODE_NULL` correctly. if the wifi is initialised and set to `WIFI_MODE_NULL` it actually defaults to AP mode. This fix keeps `WIFI_MODE_NULL` within the ESP class if the wifi has not been init yet, and works in my testing. albeit a one sided conversation. https://github.com/espressif/arduino-esp32/issues/1306 * make changes compatible with new _persistent behaviour.
-
- 22 May, 2018 1 commit
-
-
Ivan Grokhotkov authored
esp_timer_get_time returns monotonic time in microseconds, as a 64-bit number. It can be called from tasks and interrupts, does not use any critical sections/mutexes, and is thread safe.
-
- 14 May, 2018 12 commits
-
-
mmone authored
The esp-idf expects duty values for the the sigma delta modulator in the range of -128 to 127 The arduino framework is supposed to use the range 0-255 thus the offset caclulation was wrong.
-
Ramesh authored
wifi_err_reason_t doesn't have reason code 12. After reason code 11, we are getting wrong wifi disconnected reason message. Added "UNSPECIFIED" in place of reason code 12. And above 201 reason code, it should be r-176 instead of r-177. Because messages are started from zeroth offset.
-
Giuseppe authored
-
per1234 authored
build.board is used to define a macro but - is not a permitted character in macro names. This causes the macro name to actually be only everything up to the first - and also many warnings when compiling for one of these boards: <command-line>:0:14: warning: ISO C++11 requires whitespace after the macro name <command-line>:0:14: warning: ISO C99 requires whitespace after the macro name I have followed the convention of the other build.board names by replacing - with _.
-
BuzzRage authored
* Adding getClockDivider function * indentation correction
-
Tim P authored
* add missing bits from esp8266 to help porting other libs * Clean Up of Wifi event * Exampl of Wifi Events
-
Marcel Stör authored
-
Dominik Szymański authored
-
reaper7 authored
* Additional partition scheme min_spiffs with minimal SPIFFS partition size and OTA support for bigger apps * Selectable (from menu) partitions for m5stack addition for m5stack (as is prepared for lolin32 board: https://github.com/espressif/arduino-esp32/pull/1379) discourse here: https://github.com/espressif/arduino-esp32/issues/1378
-
chemicstry authored
-
chemicstry authored
-
Clemens Kirchgatterer authored
This PR calls `esp_wifi_set_storage(WIFI_STORAGE_RAM);` when persistent WiFi configuration is not desired.
-
- 10 May, 2018 2 commits
-
-
Ivan Kravets authored
-
Ivan Kravets authored
-
- 07 May, 2018 1 commit
-
-
Ivan Kravets authored
-
- 02 May, 2018 1 commit
-
-
AlistairSymonds authored
-
- 16 Apr, 2018 2 commits
-
-
sticilface authored
The wifi stack initialisation must be complete before calling `_udp_ota.parsePacket()` otherwise you just get a screen filled with ``` ``` and due to the more async methods in ESP32 `handle()` may be called before this can occur.
-
Craig Leres authored
If you develop on windows and need cr/lf files, see this: https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration#_formatting_and_whitespace Git can handle this by auto-converting CRLF line endings into LF when you add a file to the index, and vice versa when it checks out code onto your filesystem. You can turn on this functionality with the core.autocrlf setting. If you're on a Windows machine, set it to true - this converts LF endings into CRLF when you check out code: $ git config --global core.autocrlf true
-
- 14 Apr, 2018 3 commits
- 07 Apr, 2018 1 commit
-
-
Me No Dev authored
* Update BLE lib * Update IDF to f586f5e * Restructure Bluetooth Serial includes * Update esptool and gen_esp32part * Add partition scheme selection for menuconfig * Add partition scheme selection for Arduino IDE * Fix BLE example * Second attempt BLE fix * Add exceptions to PIO
-
- 06 Apr, 2018 10 commits
-
-
chuck todd authored
This change uses the `_RST` bit of the i2c peripheral to force the hardware into power on reset state. The prior code assumed the peripheral was already in a reset, it just cleared the reset bit. Chuck.
-
JP Liew authored
-
FloX authored
* Update WiFiMulti.cpp added 5 sec timeout from ESP8266 * Update WiFiMulti.cpp * Update WiFiMulti.h
-
chuck todd authored
Should we add this declaration option for all boards?
-
mtabu authored
* HardwareSerial - availableForWrite() support * fix indentation errors (tab vs space)
-
George Talusan authored
-
chuck todd authored
This code allows Wire.begin() to assign the default values of SDA, and SCL only if they have not been previously configured. Arduino libraries that use Wire() usually re-init the I2C interface in their initialization code with a call to Wire.begin(). If a user app sets custom pins assignment in setup(); These assignments will be overwritten with the default values whenever Wire.begin() is called.
-
reaper7 authored
M5Stack variant (pins_arduino.h) file is not automatically included, because boards.txt m5stack-core-esp32.build.variant=esp32 This commit changes m5stack-core-esp32.build.variant from esp32 to m5stack_core_esp32 also rename M5Stack variant directory from m5stack-core-esp32 to m5stack_core_esp32
-
KEDARUMA FANTASTIC authored
-
Shawn A authored
-
- 03 Apr, 2018 1 commit
-
-
me-no-dev authored
-
- 09 Mar, 2018 2 commits