8000 Update IDF to e931fe9 and add esp-face (#2291) · AbelCS/arduino-esp32@fa61b3b · GitHub
[go: up one dir, main page]

Skip to content

Commit fa61b3b

Browse files
authored
Update IDF to e931fe9 and add esp-face (espressif#2291)
* Update IDF to e931fe9 and add esp-face * Fix PIO builds fail because of sketch size * Fix example build failing for Arduino
1 parent 452c27a commit fa61b3b
  • Some content is hidden

    Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

    106 files changed

    +2794
    -276
    lines changed

    boards.txt

    Lines changed: 3 additions & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -44,6 +44,9 @@ esp32.menu.PartitionScheme.minimal.build.partitions=minimal
    4444
    esp32.menu.PartitionScheme.no_ota=No OTA (Large APP)
    4545
    esp32.menu.PartitionScheme.no_ota.build.partitions=no_ota
    4646
    esp32.menu.PartitionScheme.no_ota.upload.maximum_size=2097152
    47+
    esp32.menu.PartitionScheme.huge_app=Huge APP (3MB No OTA)
    48+
    esp32.menu.PartitionScheme.huge_app.build.partitions=huge_app
    49+
    esp32.menu.PartitionScheme.huge_app.upload.maximum_size=3145728
    4750
    esp32.menu.PartitionScheme.min_spiffs=Minimal SPIFFS (Large APPS with OTA)
    4851
    esp32.menu.PartitionScheme.min_spiffs.build.partitions=min_spiffs
    4952
    esp32.menu.PartitionScheme.min_spiffs.upload.maximum_size=1966080

    libraries/ESP32/examples/Camera/CameraWebServer/CameraWebServer.ino

    Lines changed: 2 additions & 2 deletions
    Original file line numberDiff line numberDiff line change
    @@ -124,7 +124,7 @@ void setup() {
    124124

    125125
    //drop down frame size for higher initial frame rate
    126126
    sensor_t * s = esp_camera_sensor_get();
    127-
    s->set_framesize(s, FRAMESIZE_CIF);
    127+
    s->set_framesize(s, FRAMESIZE_QVGA);
    128128

    129129
    WiFi.begin(ssid, password);
    130130

    @@ -144,5 +144,5 @@ void setup() {
    144144

    145145
    void loop() {
    146146
    // put your main code here, to run repeatedly:
    147-
    147+
    delay(10000);
    148148
    }

    0 commit comments

    Comments
     (0)
    0