- 11 May, 2019 1 commit
-
-
Adam authored
Implemented the ability to change the ESP32s BLE device address as according the the BLE specification. This address is used when advertising the ESP32 over BLE.
-
- 09 May, 2019 1 commit
-
-
me-no-dev authored
fixes: https://github.com/espressif/arduino-esp32/issues/2758
-
- 01 May, 2019 1 commit
-
-
Me No Dev authored
-
- 30 Apr, 2019 1 commit
-
-
Earle F. Philhower, III authored
Fixes Arduino.h redefinition errors.
-
- 27 Apr, 2019 1 commit
-
-
Dirk O. Kaar authored
-
- 26 Apr, 2019 2 commits
-
-
Earle F. Philhower, III authored
I redid the ESP8266 WString library to enable small string optimization (SSO) a while back, and think it would be helpful even on the ESP32 with its higher memory complement. SSO avoids lots of tiny mallocs() on the heap which cause fragmentation by using the memory in the class object itself to store the actual string and only mallocing() for buffers that are larger than what can fit in thie class object. Modern C++ std::string implementations have this optimization as well, but since we're using Arduino strings we had to roll our own.
-
lbernstone authored
* Ensure that _size is properly set in begin * NULL check on _data assignment * Changed _data to malloc in order to catch alloc fails
-
- 25 Apr, 2019 2 commits
-
-
lewis he authored
-
Nick Hynes authored
-
- 23 Apr, 2019 4 commits
-
-
lbernstone authored
* Converted EEPROM library to use nvs instead of partition. Removed eeprom partition from all partition table CSV files. * Changed variable names, added some comments, formatting as per me-no-dev's requests * Checks for memory on malloc * Moved include nvs.h from header to code * Reworked the extra example to make it more clear how to actually use the library and persist data
-
Nick Hynes authored
-
Dirk O. Kaar authored
-
Kryštof Černý authored
-
- 22 Apr, 2019 2 commits
-
-
jandegr authored
-
Victor Aprea authored
* add support for CORS headers * remove accidental function impl * rename setCORS to enableCORS, and add aliased function enableCrossOrigin
-
- 17 Apr, 2019 1 commit
-
-
Ivan Kravets authored
-
- 16 Apr, 2019 1 commit
-
-
me-no-dev authored
-
- 15 Apr, 2019 5 commits
-
-
me-no-dev authored
-
me-no-dev authored
-
Bascy authored
* Replaced ARDUINO_VARIANT with const char * Fixed missing return value * Added quotes around defined value in macro (Issue #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()
-
Bob authored
-
me-no-dev authored
-
- 13 Apr, 2019 6 commits
- 12 Apr, 2019 5 commits
-
-
me-no-dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/2660
-
Victor Aprea authored
-
Me No Dev authored
* Set IDF to v3.2 * Remove BLE submodule * Add BLE lib source * Update Camera example to support OV3660
-
Arsham Skrenes authored
* 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.
-
Victor Aprea authored
* 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
-
- 11 Apr, 2019 3 commits
-
-
Jean Marc BRUNO authored
-
Jan Weigelt authored
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.
-
Marc MERLIN authored
Make all the partitions descriptions consistent, they now all show what space allocation you get.
-
- 10 Apr, 2019 4 commits
-
-
lbernstone authored
* 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
-
chuck todd authored
@cyberman54 from #2250 recommended reducing unnecessary logging.
-
dyarkovoy authored
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.
-
A C SREEDHAR REDDY authored
* update getLocalTime(). * change count to millis in getLocalTime * timeout logic.
-