-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: acevest/arduino-esp32
base: master
head repository: espressif/arduino-esp32
compare: master
Commits on Feb 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 628b8f0 - Browse repository at this point
Copy the full SHA 628b8f0View commit details
Commits on Feb 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 5af0336 - Browse repository at this point
Copy the full SHA 5af0336View commit details
Commits on Mar 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f3c1a91 - Browse repository at this point
Copy the full SHA f3c1a91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 84e458a - Browse repository at this point
Copy the full SHA 84e458aView commit details -
return macaddress (espressif#2477)
* WiFi.macaddress() returns mac address * change description * return macaddress when WiFi mode is WIFI_MODE_NULL
Configuration menu - View commit details
-
Copy full SHA for 2ceab7c - Browse repository at this point
Copy the full SHA 2ceab7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for dffda0b - Browse repository at this point
Copy the full SHA dffda0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for ff85f3e - Browse repository at this point
Copy the full SHA ff85f3eView commit details -
Default pin remap for wESP32 (espressif#2508)
* Add default pin mapping for Serial1 and Serial2 * Default pin remap on wESP32 Improved default pin mapping for I2C0 and UART1 to avoid issues with programming. SDA0 was on IO2 but IO2 needs to be pulled low on reset to enable serial programming, which conflicts with I2C pull-ups. RX1 was on IO12, idle UART level is high which conflicts with IO12 needing to be low on reset to select correct 3.3V flash voltage. New mappings: SDA0 on IO15 RX1 on IO13 TX1 on IO12
Configuration menu - View commit details
-
Copy full SHA for cebd870 - Browse repository at this point
Copy the full SHA cebd870View commit details -
Adding debug flag to PIO build script (espressif#2510)
Adding the -g3 flag that was omitted in the PIO build script but is present in Arduino IDE build scripts. This flag restores the ability to get line numbers from stack traces for elf files generated in PlatformIO IDE.
Configuration menu - View commit details
-
Copy full SHA for cb0a939 - Browse repository at this point
Copy the full SHA cb0a939View commit details -
Frog Board ESP32 definition (espressif#2515)
* Added board definition Signed-off-by: Roman Hosek <roman.hosek@iotbakery.com> * fix typo * variant + pin definition
Configuration menu - View commit details
-
Copy full SHA for 566f659 - Browse repository at this point
Copy the full SHA 566f659View commit details -
Update IDF to ebdcbe8c6 (espressif#2539)
- ESP-Face to 2937054 - ESP32-Camera to 113629b
Configuration menu - View commit details
-
Copy full SHA for 7df50a9 - Browse repository at this point
Copy the full SHA 7df50a9View commit details
Commits on Apr 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d5f71ce - Browse repository at this point
Copy the full SHA d5f71ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for e28dce7 - Browse repository at this point
Copy the full SHA e28dce7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1db72a2 - Browse repository at this point
Copy the full SHA 1db72a2View commit details -
Added rmtDeinit to header. Fixes espressif#2585 (espressif#2587)
* Added rmtDeinit to header. Fixes espressif#2585 * oops. missing ;
Configuration menu - View commit details
-
Copy full SHA for 8e8c503 - Browse repository at this point
Copy the full SHA 8e8c503View commit details -
Add support for ffat on 4MB ESP32 Dev Module and mhetesp32minikit boa…
…rd. (espressif#2588) * Update boards.txt Add menu items for ffat on mhetesp32minikit board. * Add partition table. * Added ffat partition for 4MB ESP32 Dev Module. * Added comment about partitioning schemes.
Configuration menu - View commit details
-
Copy full SHA for 4930853 - Browse repository at this point
Copy the full SHA 4930853View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8091c2c - Browse repository at this point
Copy the full SHA 8091c2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 67ee7c3 - Browse repository at this point
Copy the full SHA 67ee7c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd64980 - Browse repository at this point
Copy the full SHA dd64980View commit details -
Configuration menu - View commit details
-
Copy full SHA for 92220b7 - Browse repository at this point
Copy the full SHA 92220b7View commit details
Commits on Apr 10, 2019
-
Added 2 ffat partition schemes for 4MB modules + improved description…
…s. (espressif#2623) * Added 2 ffat partition schemes for 4MB modules + improved descriptions. Existing format options were unclear on how much spiffs you were getting. Also add missing 1MB App/3MB Spiffs split. This addresses espressif#1799 This makes it very clear what each option gives you, and also adds 2 options to get ffat on 4MB chips.. * Added link to ffat howto.
Configuration menu - View commit details
-
Copy full SHA for 53a4bf3 - Browse repository at this point
Copy the full SHA 53a4bf3View commit details -
update getLocalTime(). (espressif#2629)
* update getLocalTime(). * change count to millis in getLocalTime * timeout logic.
Configuration menu - View commit details
-
Copy full SHA for 0906bf5 - Browse repository at this point
Copy the full SHA 0906bf5View commit details -
Reset retry counter upon successful write (espressif#2638)
Currently WiFiClient::write is unable to send messages over 25Kb, because of the hard-coded retry limit of 10, that is getting decremented on every successful send. Since we cannot send more than 2*MTU bytes in one go, and have only 10 retries, write() is limited to approximately 25Kb. Technically it is not a bug, as it correctly returns the number of sent bytes and the caller can set up futher retries. But not all libs are aware of this behavior, for example, WebServer is not. I suggest improving current behavior by resetting retry counter every time we had a successful write, so the limit of 10 retries will apply to Failed writes only, and will not apply to Successful writes. This will allow to write() blobs of arbitrary sizes.
Configuration menu - View commit details
-
Copy full SHA for a0c975d - Browse repository at this point
Copy the full SHA a0c975dView commit details -
Hide log_v behind conditional define, reduce excessive logging (espre…
…ssif#2641) @cyberman54 from espressif#2250 recommended reducing unnecessary logging.
Configuration menu - View commit details
-
Copy full SHA for 9150803 - Browse repository at this point
Copy the full SHA 9150803View commit details -
overload Preferences.getBytes similar to nvs so you can get size of t… (
espressif#2498) * overload Preferences.getBytes similar to nvs so you can get size of the array. * Cleaner implentation, with a separate function to get length. Added an example
Configuration menu - View commit details
-
Copy full SHA for da8b7c1 - Browse repository at this point
Copy the full SHA da8b7c1View commit details
Commits on Apr 11, 2019
-
Also show how space is allocated for the default partitions (espressi…
…f#2649) Make all the partitions descriptions consistent, they now all show what space allocation you get.
Configuration menu - View commit details
-
Copy full SHA for 6744565 - Browse repository at this point
Copy the full SHA 6744565View commit details -
Fix AsyncUDP receive memory leak (espressif#2607)
If _handler is set, pbuf_free is not called. ~AsyncUDPPacket() calls pbuf_free once but only after calling pbuf_ref in it's constructor. The refcount never reaches zero and the memory allocated for pbuf is never released.
Configuration menu - View commit details
-
Copy full SHA for a87b2ec - Browse repository at this point
Copy the full SHA a87b2ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for e0beac8 - Browse repository at this point
Copy the full SHA e0beac8View commit details
Commits on Apr 12, 2019
-
Alternative Improve _uploadReadByte (espressif#2656)
* add opportunity for more than one retry to _uploadReadByte * an alternative timeout-based method to making _uploadReadByte more resilient * move timing variables in the correct scope * implement and use client.getTimeout instead of hard-coded timeout in _uploadReadByte * add missing return * some refactoring to address respecting the timeout in a potentially deadlocked connection * fix spelling in comment * address review comments; move impl to cpp file for getTimeout, and remove local variable for currentMillis * remove redundant cast * need to check for timeout outside the inner while as well * update WebUpdate example to print something in unexpected callback condition * update log_e messages per review comments
Configuration menu - View commit details
-
Copy full SHA for 25c0b52 - Browse repository at this point
Copy the full SHA 25c0b52View commit details -
Properly allocate string and remove warning (espressif#2652)
* Properly allocate string and remove warning The former way generates the following warning: ISO C++ forbids converting a string constant to 'char*' This change makes a character array the size of the string with null ending. It's clearer and gets rid of the warning. * Better way Since this is technically immutable, the type should reflect this too.
Configuration menu - View commit details
-
Copy full SHA for 1412606 - Browse repository at this point
Copy the full SHA 1412606View commit details -
Set ESP-IDF to 3.2 (espressif#2662)
* Set IDF to v3.2 * Remove BLE submodule * Add BLE lib source * Update Camera example to support OV3660
Configuration menu - View commit details
-
Copy full SHA for 7b5cd47 - Browse repository at this point
Copy the full SHA 7b5cd47View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1efcd21 - Browse repository at this point
Copy the full SHA 1efcd21View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dab3f6 - Browse repository at this point
Copy the full SHA 6dab3f6View commit details
Commits on Apr 13, 2019
-
Add board "SparkFun LoRa Gateway 1-Channel". (espressif#2664)
* Add board "SparkFun LoRa Gateway 1-Channel". * Extend boards.txt. Source: https://learn.sparkfun.com/tutorials/sparkfun-lora-gateway-1-channel-hookup-guide/all
Configuration menu - View commit details
-
Copy full SHA for 33d4186 - Browse repository at this point
Copy the full SHA 33d4186View commit details -
Configuration menu - View commit details
-
Copy full SHA for d922557 - Browse repository at this point
Copy the full SHA d922557View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa74767 - Browse repository at this point
Copy the full SHA fa74767View commit details -
Configuration menu - View commit details
-
Copy full SHA for c600929 - Browse repository at this point
Copy the full SHA c600929View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea043cd - Browse repository at this point
Copy the full SHA ea043cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for ef07a84 - Browse repository at this point
Copy the full SHA ef07a84View commit details
Commits on Apr 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 582e643 - Browse repository at this point
Copy the full SHA 582e643View commit details -
Configuration menu - View commit details
-
Copy full SHA for af23d0b - Browse repository at this point
Copy the full SHA af23d0bView commit details -
Refactored use of LOG_X(LOG_TAG, ...) to log_x(...) (espressif#2672)
* Replaced ARDUINO_VARIANT with const char * Fixed missing return value * Added quotes around defined value in macro (Issue espressif#2193) * Change logging from Error to Verbose when not found and default available * Move Enter and Exit logging to Verbose Level * Refactored LOG_X() into log_x()
Configuration menu - View commit details
-
Copy full SHA for 01d7ea7 - Browse repository at this point
Copy the full SHA 01d7ea7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d6e4e1 - Browse repository at this point
Copy the full SHA 3d6e4e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a9ff62 - Browse repository at this point
Copy the full SHA 9a9ff62View commit details
Commits on Apr 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6bf1048 - Browse repository at this point
Copy the full SHA 6bf1048View commit details
Commits on Apr 17, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f8eebb5 - Browse repository at this point
Copy the full SHA f8eebb5View commit details
Commits on Apr 22, 2019
-
Add optional support for CORS headers (espressif#2688)
* add support for CORS headers * remove accidental function impl * rename setCORS to enableCORS, and add aliased function enableCrossOrigin
Configuration menu - View commit details
-
Copy full SHA for 672e4fa - Browse repository at this point
Copy the full SHA 672e4faView commit details -
Configuration menu - View commit details
-
Copy full SHA for a28cf00 - Browse repository at this point
Copy the full SHA a28cf00View commit details
Commits on Apr 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 606446a - Browse repository at this point
Copy the full SHA 606446aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 119ece2 - Browse repository at this point
Copy the full SHA 119ece2View commit details
There are no files selected for viewing
Uh oh!
There was an error while loading. Please reload this page.