1. 04 5月, 2022 1 次提交
    • V
      Properly handle ARDUINO_PARTITION define in PlatformIO (#6681) · 4453ca54
      Valerii Koval 提交于
      This fixes possible issues when developers specify arbitrary partition files
      using relative or absolute paths.
      
      Additionally, hyphens in filenames are replaced with underscores to
      avoid compilation warnings "ISO C++11 requires whitespace after the macro name"
      
      Resolves platformio/platform-espressif32#787
      4453ca54
  2. 26 4月, 2022 1 次提交
    • V
      Add support for extra flash images (#6625) · f0636d51
      Valerii Koval 提交于
      This PR adds support for uploading additional flash images (e.g. Adafruit Tiny UF2 bootloader) specified in board manifests.
      
      Additionally, the PR switches the PlatformIO CI script to the upstream version of the ESP32 dev-platform (basically reverts changes introduced in #5387 as they are no longer required).
      f0636d51
  3. 20 4月, 2022 1 次提交
  4. 29 3月, 2022 1 次提交
  5. 28 3月, 2022 3 次提交
  6. 18 1月, 2022 1 次提交
    • M
      IDF release/v4.4 f3e0c8bc41 (#6075) · 78b2df74
      Me No Dev 提交于
      esp-dsp: master 6b25cbb
      esp-face: master 925c72e
      esp-rainmaker: f1b82c7
      esp32-camera: master 221d24d
      esp_littlefs: master 5a13cd6
      
      fixes: #5948
      78b2df74
  7. 21 12月, 2021 1 次提交
  8. 14 12月, 2021 1 次提交
    • M
      IDF release/v4.4 f23dcd3555 (#5996) · 6d400df9
      Me No Dev 提交于
      esp-dsp: master 6b25cbb
      esp-face: master d141502
      esp-rainmaker: f1b82c7
      esp32-camera: master 61400bc
      esp_littlefs: master 3c29afc
      6d400df9
  9. 22 11月, 2021 1 次提交
    • M
      IDF release/v4.4 ddc44956bf (#5911) · a5002c86
      Me No Dev 提交于
      esp-dsp: master 6b25cbb
      esp-face: master 859f32a
      esp-rainmaker: f1b82c7
      esp32-camera: master 61400bc
      esp_littlefs: master 3c29afc
      a5002c86
  10. 06 11月, 2021 1 次提交
    • T
      [FEATURE] add -D ARDUINO_PARTITION_xxx build flag to platform.txt (#5804) · 674cf812
      tobozo 提交于
      * [FEATURE]  ARDUINO_PARTITION_xxx build flag
      
      Proposition: adding `-DARDUINO_PARTITION_{build.partitions}` flag to make the build partition information available at compile time.
      
      Use cas example:
      
      ```C
      #if defined ARDUINO_PARTITION_default
        // prevent compilation
        #error "This sketch needs 'Minimal SPIFFS' partition scheme to compile" 
        // or disable sketch features that need flash space
        #define USE_HUGE_BITMAP_IMAGES false
      #endif
      ```
      
      * Adding -DARDUINO_PARTITION_{build.partitions} (see #5804)
      674cf812
  11. 04 11月, 2021 1 次提交
  12. 25 10月, 2021 1 次提交
  13. 21 10月, 2021 1 次提交
    • M
      IDF master 4e03a9c34c (#5792) · 4413dbbd
      Me No Dev 提交于
      esp-dsp: master e05fc36
      esp-face: master f108a83
      esp-rainmaker: f1b82c7
      esp32-camera: master 3022601
      esp_littlefs: master 05d55ab
      4413dbbd
  14. 14 10月, 2021 1 次提交
  15. 01 10月, 2021 1 次提交
    • M
      IDF master 3e370c4296 · 00214d5c
      Me No Dev 提交于
      * Fix build compilation due to changes in the HW_TIMER's structs
      
      * Fix compilation warnings and errors with USB
      
      * Update USBCDC.cpp
      
      * Update CMakeLists.txt
      
      * Update HWCDC.cpp
      00214d5c
  16. 26 7月, 2021 1 次提交
    • M
      IDF master c69f0ec32 (#5449) · 6972695d
      Me No Dev 提交于
      esp-dsp: master f4d7d6e
      esp-face: master 420fc7e
      esp-rainmaker: f1b82c7
      esp32-camera: master 6a9497b
      esp_littlefs: master b58f00c
      6972695d
  17. 17 7月, 2021 1 次提交
    • M
      IDF master d93887f9f (#5336) · 16f4b0f5
      Me No Dev 提交于
      * Update toolchain
      
      * Update package_esp32_index.template.json
      
      * add optional component dependencies after Kconfig options are known (#5404)
      
      Until this commit, Kconfig options (e.g. CONFIG_TINYUSB_ENABLED) were
      used in conditions preceding idf_component_register to determine which
      components need to be added to `arduino` component requirements.
      However the Kconfig options aren't known at the early expansion stage,
      when the component CMakeLists.txt files are expanded the first time
      and requirements are evaluated. So all the conditions evaluated as if
      the options were not set.
      This commit changes the logic to only add these components as
      dependencies when the Kconfig options are known. Dependencies become
      "weak", which means that if one of the components isn't included into
      the build for some reason, it is not added as a dependency.
      This may happen, for example, if the component is not present in the
      `components` directory or is excluded by setting `COMPONENTS` variable
      in the project CMakeLists.txt file.
      This also ensures that if the component is not present, it will not be
      added as a dependency, and this will allow the build to proceed.
      
      Follow-up to https://github.com/espressif/arduino-esp32/pull/5391.
      Closes https://github.com/espressif/arduino-esp32/issues/5319.
      
      * IDF master d93887f9f
      
      * PlatformIO updates for CI (#5387)
      
      * Update PlatformIO CI build script
      
      - Switch to the latest toolchains 8.4.0 for ESP32, ESP32S2, ESP32C3
      - Use PlatformIO from master branch for better robustness
      
      * Update package.json for PlatformIO
      Co-authored-by: NIvan Grokhotkov <ivan@espressif.com>
      Co-authored-by: NValerii Koval <valeros@users.noreply.github.com>
      16f4b0f5
  18. 09 6月, 2021 1 次提交
    • M
      IDF master 1d7068e4b (#5257) · 4f9e583b
      Me No Dev 提交于
      esp-dsp: master 7cc5073
      esp-face: master 420fc7e
      esp-rainmaker: f1b82c7
      esp32-camera: master 7a06a7e
      esp_littlefs: master b58f00c
      4f9e583b
  19. 31 5月, 2021 1 次提交
    • M
      IDF master c13afea63 (#5214) · a618fc13
      Me No Dev 提交于
      esp-dsp: master 7cc5073
      esp-face: master 420fc7e
      esp-rainmaker: f1b82c7
      esp32-camera: master 6f8489e
      esp_littlefs: master b58f00c
      a618fc13
  20. 17 4月, 2021 1 次提交
    • M
      IDF master cf457d412 (#5073) · 5d9b98c9
      Me No Dev 提交于
      esp-dsp: master 7cc5073
      esp-face: master 420fc7e
      esp-rainmaker: f1b82c7
      esp32-camera: master 2dded7c
      esp_littlefs: master d268e18
      5d9b98c9
  21. 05 4月, 2021 1 次提交