- 04 Feb, 2021 1 commit
-
-
me-no-dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/4763
-
- 03 Feb, 2021 2 commits
-
-
me-no-dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/2537
-
me-no-dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/4732
-
- 27 Jan, 2021 1 commit
-
-
Valerii Koval authored
-
- 21 Jan, 2021 4 commits
-
-
Me No Dev authored
-
Me No Dev authored
Co-authored-by: me-no-dev <me-no-dev@github.com>
-
estshorter authored
-
Emanuel Posescu authored
-
- 15 Jan, 2021 1 commit
-
-
bot1131357 authored
-
- 14 Jan, 2021 1 commit
-
-
Me No Dev authored
-
- 12 Jan, 2021 3 commits
-
-
me-no-dev authored
-
Me No Dev authored
Co-authored-by: me-no-dev <me-no-dev@github.com>
-
Me No Dev authored
-
- 11 Jan, 2021 8 commits
-
-
Me No Dev authored
esp-face: master 420fc7e esp32-camera: master 0107093
-
Keegan Morrow authored
-
richardclli authored
Added authentication callbacks and example, resolves #4622.
-
Andrew authored
BLERemoteCharacteristic::registerForNotify: Permit event registration without updating descriptor. (#4659)
-
drmpf authored
added availableForWrite to Print.h to make compatible with Arduino Print.h
-
Verkehrsrot authored
Compiler complains on unused parameter pCharacteristicMap: framework-arduinoespressif32\libraries\BLE\src\BLERemoteService.cpp: In member function 'void BLERemoteService::getCharacteristics(std::map<short unsigned int, BLERemoteCharacteristic*>*)': \framework-arduinoespressif32\libraries\BLE\src\BLERemoteService.cpp:246:89: warning: parameter 'pCharacteristicMap' set but not used [-Wunused-but-set-parameter] void BLERemoteService::getCharacteristics(std::map<uint16_t, BLERemoteCharacteristic*>* pCharacteristicMap) {
-
kabir-plod authored
-
Nikhil Choudhary authored
-
- 20 Dec, 2020 1 commit
-
-
Me No Dev authored
-
- 07 Dec, 2020 2 commits
- 02 Dec, 2020 3 commits
-
-
Me No Dev authored
Follow up for https://github.com/espressif/arduino-esp32/pull/4564
-
coylen authored
Added guarded define to set the stacksize on the main looptask. Advantage of this is that build_flags can be used to provide a different value for the stack size should it be neccessary default behaviour is unaffected
-
Aaron.Lee authored
-
- 01 Dec, 2020 4 commits
-
-
me-no-dev authored
-
Clemens Kirchgatterer authored
Replace (depricated) bzero, bcopy with memset and memcpy.
-
Clemens Kirchgatterer authored
Replace (depricated) bzero with memset.
-
Me No Dev authored
esp-face: master 420fc7e esp32-camera: master 0107093
-
- 23 Nov, 2020 3 commits
-
-
Marc J authored
Fixes #4558
-
FedericoBusero authored
-
Mike Dunston authored
Set the category to silence this warning in the Arduino IDE: ``` WARNING: Category '' in library WiFiProv is not valid. Setting to 'Uncategorized' ```
-
- 18 Nov, 2020 1 commit
-
-
Sweety authored
-
- 16 Nov, 2020 3 commits
- 15 Nov, 2020 2 commits
-
-
Me No Dev authored
The goal is to allow custom configuration for `variants_dir` to define our own board variant directly in the project. With this functionnality, we are now allowed to define in our projects a custom board **AND** a custom variant. https://docs.platformio.org/en/latest/platforms/creating_board.html#custom-embedded-boards Here is an example of how to define a custom board with custom variant: ``` my_project ├── boards │ └── custom_esp32dev.json └── variants └── custom-esp32dev └── pins_arduino.h ``` custom_esp32dev.json ```json { "build": { "arduino":{ "ldscript": "esp32_out.ld" }, "core": "esp32", "extra_flags": "-DARDUINO_ESP32_DEV", "f_cpu": "240000000L", "f_flash": "40000000L", "flash_mode": "dio", "mcu": "esp32", "variants_dir": "variants", "variant": "custom-esp32dev" }, "connectivity": [ "wifi", "bluetooth", "ethernet", "can" ], "debug": { "openocd_board": "esp-wroom-32.cfg" }, "frameworks": [ "arduino", "espidf" ], "name": "My Custom Espressif ESP32 Dev Module", "upload": { "flash_size": "4MB", "maximum_ram_size": 327680, "maximum_size": 4194304, "require_upload_port": true, "speed": 460800 }, "url": "https://en.wikipedia.org/wiki/ESP32", "vendor": "Espressif" } ```
-
Loick MAHIEUX authored
-