-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: bdring/arduino-esp32
base: master
head repository: espressif/arduino-esp32
compare: master
Commits on Apr 3, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 25dff4f - Browse repository at this point
Copy the full SHA 25dff4fView commit details
Commits on Apr 6, 2018
-
Configuration menu - View commit details
-
Copy full SHA for f6a4b02 - Browse repository at this point
Copy the full SHA f6a4b02View commit details -
Configuration menu - View commit details
-
Copy full SHA for c01e556 - Browse repository at this point
Copy the full SHA c01e556View commit details -
currently, when M5Stack board is selected (espressif#1242)
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
Configuration menu - View commit details
-
Copy full SHA for 5abe49e - Browse repository at this point
Copy the full SHA 5abe49eView commit details -
Preserver custom pin assigments (espressif#1239)
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.
Configuration menu - View commit details
-
Copy full SHA for 7998e23 - Browse repository at this point
Copy the full SHA 7998e23View commit details -
Configuration menu - View commit details
-
Copy full SHA for 149190f - Browse repository at this point
Copy the full SHA 149190fView commit details -
HardwareSerial - availableForWrite() support (espressif#1226)
* HardwareSerial - availableForWrite() support * fix indentation errors (tab vs space)
Configuration menu - View commit details
-
Copy full SHA for aa1288a - Browse repository at this point
Copy the full SHA aa1288aView commit details -
Add Core Debug Level for WeMosBat (espressif#1222)
Should we add this declaration option for all boards?
Configuration menu - View commit details
-
Copy full SHA for 7eb6fc5 - Browse repository at this point
Copy the full SHA 7eb6fc5View commit details -
Update WiFiMulti.cpp (espressif#1220)
* Update WiFiMulti.cpp added 5 sec timeout from ESP8266 * Update WiFiMulti.cpp * Update WiFiMulti.h
Configuration menu - View commit details
-
Copy full SHA for 2ded419 - Browse repository at this point
Copy the full SHA 2ded419View commit details -
Configuration menu - View commit details
-
Copy full SHA for 14ed6c4 - Browse repository at this point
Copy the full SHA 14ed6c4View commit details -
Add Hardware Reset when Initing I2C peripheral (espressif#1201)
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.
Configuration menu - View commit details
-
Copy full SHA for 1cf4270 - Browse repository at this point
Copy the full SHA 1cf4270View commit details
Commits on Apr 7, 2018
-
Update IDF to f586f5e (espressif#1296)
* 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
Configuration menu - View commit details
-
Copy full SHA for 69f72ec - Browse repository at this point
Copy the full SHA 69f72ecView commit details
Commits on Apr 14, 2018
-
Configuration menu - View commit details
-
Copy full SHA for febcda0 - Browse repository at this point
Copy the full SHA febcda0View commit details -
Additional partition scheme min_spiffs (espressif#1302)
with minimal SPIFFS partition size and OTA support for bigger apps
Configuration menu - View commit details
-
Copy full SHA for 4da5d46 - Browse repository at this point
Copy the full SHA 4da5d46View commit details -
Corrected Flash Mode (espressif#1205)
Changed Flashmode to DIO due board only supports DIO
Configuration menu - View commit details
-
Copy full SHA for 1da3138 - Browse repository at this point
Copy the full SHA 1da3138View commit details
Commits on Apr 16, 2018
-
Convert the few remaining cr/lf files to use lf for eol. (espressif#1316
) 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
Configuration menu - View commit details
-
Copy full SHA for c92b617 - Browse repository at this point
Copy the full SHA c92b617View commit details -
Add guard to handle to check for _initialized (espressif#1321)
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.
Configuration menu - View commit details
-
Copy full SHA for 1424b6d - Browse repository at this point
Copy the full SHA 1424b6dView commit details
Commits on May 2, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6826508 - Browse repository at this point
Copy the full SHA 6826508View commit details
Commits on May 7, 2018
-
Configuration menu - View commit details
-
Copy full SHA for bfed6eb - Browse repository at this point
Copy the full SHA bfed6ebView commit details
Commits on May 10, 2018
-
Configuration menu - View commit details
-
Copy full SHA for b9ca922 - Browse repository at this point
Copy the full SHA b9ca922View commit details -
Configuration menu - View commit details
-
Copy full SHA for cef5433 - Browse repository at this point
Copy the full SHA cef5433View commit details
Commits on May 14, 2018
-
Fix WiFi.persistent(false); having no effect. (espressif#1406)
This PR calls `esp_wifi_set_storage(WIFI_STORAGE_RAM);` when persistent WiFi configuration is not desired.
Configuration menu - View commit details
-
Copy full SHA for 0ea9ea4 - Browse repository at this point
Copy the full SHA 0ea9ea4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00f9624 - Browse repository at this point
Copy the full SHA 00f9624View commit details -
Configuration menu - View commit details
-
Copy full SHA for 611db61 - Browse repository at this point
Copy the full SHA 611db61View commit details -
Selectable (from menu) partitions for m5stack (espressif#1382)
* 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: espressif#1379) discourse here: espressif#1378
Configuration menu - View commit details
-
Copy full SHA for 6f12b69 - Browse repository at this point
Copy the full SHA 6f12b69View commit details -
Configuration menu - View commit details
-
Copy full SHA for f8a3c61 - Browse repository at this point
Copy the full SHA f8a3c61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bf1f47 - Browse repository at this point
Copy the full SHA 7bf1f47View commit details -
std::functioanl for WFIF event + Minor fix (espressif#1366)
* add missing bits from esp8266 to help porting other libs * Clean Up of Wifi event * Exampl of Wifi Events
Configuration menu - View commit details
-
Copy full SHA for 6bf7619 - Browse repository at this point
Copy the full SHA 6bf7619View commit details -
Adding a getClockDivider function (espressif#1355)
* Adding getClockDivider function * indentation correction
Configuration menu - View commit details
-
Copy full SHA for f5246cf - Browse repository at this point
Copy the full SHA f5246cfView commit details -
Convert - to _ in build.board names (espressif#1341)
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 _.
Configuration menu - View commit details
-
Copy full SHA for 25678f4 - Browse repository at this point
Copy the full SHA 25678f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 848cf98 - Browse repository at this point
Copy the full SHA 848cf98View commit details -
WiFi disconnect reason message updated (espressif#1323)
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.
Configuration menu - View commit details
-
Copy full SHA for f14de5c - Browse repository at this point
Copy the full SHA f14de5cView commit details -
Fix wrong range of duty cycle (espressif#1353)
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.
Configuration menu - View commit details
-
Copy full SHA for dd639c4 - Browse repository at this point
Copy the full SHA dd639c4View commit details
Commits on May 22, 2018
-
Use esp_timer_get_time as time source for micros and mills (espressif…
…#1424) 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.
Configuration menu - View commit details
-
Copy full SHA for 93c45af - Browse repository at this point
Copy the full SHA 93c45afView commit details
Commits on May 23, 2018
-
Add
SYSTEM_EVENT_WIFI_READY
call back + WiFiMode fixes (espressif#1322) * 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. espressif#1306 * make changes compatible with new _persistent behaviour.
Configuration menu - View commit details
-
Copy full SHA for c24a340 - Browse repository at this point
Copy the full SHA c24a340View commit details
Commits on May 25, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 4ad27b4 - Browse repository at this point
Copy the full SHA 4ad27b4View commit details -
Added IIC pins (espressif#1436)
Added IIC pins. I can confirm that this is working!
Configuration menu - View commit details
-
Copy full SHA for 7aa8fc4 - Browse repository at this point
Copy the full SHA 7aa8fc4View commit details -
Selectable (from menu) partitions for MH ET LIVE boards (espressif#1430)
* 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: espressif#1379) discourse here: espressif#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
Configuration menu - View commit details
-
Copy full SHA for e733899 - Browse repository at this point
Copy the full SHA e733899View commit details
Commits on May 26, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 9570b77 - Browse repository at this point
Copy the full SHA 9570b77View commit details
Commits on May 28, 2018
-
Update commented pins in SPI Multi example
Update commented pins so people do not get confused and try to use them
Configuration menu - View commit details
-
Copy full SHA for 900e0a0 - Browse repository at this point
Copy the full SHA 900e0a0View commit details
Commits on May 31, 2018
-
Add submodule of Azure IoT library (espressif#1448)
* Add submodule of Azure IoT library * update the submodule of AzureIoT
Configuration menu - View commit details
-
Copy full SHA for 40d85ce - Browse repository at this point
Copy the full SHA 40d85ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 03808e3 - Browse repository at this point
Copy the full SHA 03808e3View commit details -
[OTA] Add UserSelectable timeout for invitation to device + check for…
… OK result in the last few messages (espressif#1445)
Configuration menu - View commit details
-
Copy full SHA for 7b243ad - Browse repository at this point
Copy the full SHA 7b243adView commit details -
Configuration menu - View commit details
-
Copy full SHA for a7b627c - Browse repository at this point
Copy the full SHA a7b627cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 89859f7 - Browse repository at this point
Copy the full SHA 89859f7View commit details
Commits on Jun 18, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 8e4ebf4 - Browse repository at this point
Copy the full SHA 8e4ebf4View commit details -
add support for TXT records in mDNS query responses (espressif#1480)
* add methods for getting TXTs. * add methods for getting TXTs.
Configuration menu - View commit details
-
Copy full SHA for 83810fa - Browse repository at this point
Copy the full SHA 83810faView commit details -
Added SPI bus pins (espressif#1454)
Added SPI bus pins and tested them as well
Configuration menu - View commit details
-
Copy full SHA for c63d746 - Browse repository at this point
Copy the full SHA c63d746View commit details
Commits on Jun 19, 2018
-
Configuration menu - View commit details
-
Copy full SHA for d06fa8e - Browse repository at this point
Copy the full SHA d06fa8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 33392af - Browse repository at this point
Copy the full SHA 33392afView commit details
There are no files selected for viewing
Uh oh!
There was an error while loading. Please reload this page.