- 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 7 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
-
Me No Dev authored
-
me-no-dev authored
-
Me No Dev authored
-
lbernstone authored
-
-
- 14 Nov, 2020 1 commit
-
-
me-no-dev authored
-
- 12 Nov, 2020 1 commit
-
-
Me No Dev authored
-
- 10 Nov, 2020 3 commits
-
-
Clemens Kirchgatterer authored
Do not pollute the global namespace with generic names like 'config' by declaring global variables 'static'.
-
lbernstone authored
-
Robby Decosemaeker authored
-
- 09 Nov, 2020 1 commit
-
-
- 08 Nov, 2020 2 commits
- 06 Nov, 2020 6 commits
-
-
Me No Dev authored
-
me-no-dev authored
-
Me No Dev authored
-
ahorn42 authored
See #3960 for more details of the problem and the solution. I only implemented what was proposed in this ticket, as it solves my problem, which was the same as in this ticket. Credits for the code going to @etrinh ;-) This also is a more consistence behaviour compared to esp8266, where it also is possible to restart the wifiserver immediately on the same port.
-
Sean Kwok authored
-
Timo Wielink authored
-
- 04 Nov, 2020 2 commits
- 03 Nov, 2020 1 commit
-
-
Me No Dev authored
-