1. 27 May, 2022 5 commits
  2. 25 May, 2022 1 commit
  3. 19 May, 2022 1 commit
  4. 18 May, 2022 2 commits
  5. 16 May, 2022 2 commits
  6. 13 May, 2022 3 commits
  7. 11 May, 2022 5 commits
  8. 10 May, 2022 1 commit
  9. 09 May, 2022 7 commits
  10. 04 May, 2022 5 commits
    • me-no-dev's avatar
      Update core version · 0b3f1a9f
      me-no-dev authored
      0b3f1a9f
    • Sergei Silnov's avatar
      Upload component to the registry on any tag (#6688) · 6707ceb6
      Sergei Silnov authored
      upload-idf-component.yml action was only running for tags like v*, while in this project tags like 2.0.3 are used. With this change, the workflow will run for all tags.
      6707ceb6
    • DeuxVis's avatar
      Fix uploader tool for ESPduino32 board (#6665) · 142fceb8
      DeuxVis authored
      142fceb8
    • Unexpected Maker's avatar
      Added non-destructive TinyUF2 support for UM ESP32-S3 boards (#6668) · ba591fd9
      Unexpected Maker authored
      Implemented a new method for allowing folks to preserve their TinyUF2 bootloader setup when flashing their boards via Arduino IDE, without being locked out of not using it if they want to use a different partition.
      
      Adafruit had already added support for keeping (reflashing) the TinyUF2 bootloader when flashing via Arduino IDE (thanks @ladyada ), but the issue with it is it doesn't allow users to not choose to use it. Even if they select a specific partition scheme from the partition drop down list, it ignores that selection and only does the TinyUF2 partitioning/bootloader thing.
      
      We wanted to let users choose between keeping their TinyUF2 partitioning and bootloader, or choose another partition scheme and have the TinyUF2 support disabled and just operate like they would expect.
      
      We've implemented this by adding the TinyUF2 support as a partition scheme option, and using these build options in platform.txt to choose to use teh UF2 path or use the standard path.
      ba591fd9
    • Valerii Koval's avatar
      Properly handle ARDUINO_PARTITION define in PlatformIO (#6681) · 4453ca54
      Valerii Koval authored
      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
  11. 29 Apr, 2022 1 commit
    • Rodrigo Garcia's avatar
      Fixes INADDR_NONE (#6659) · ce2cd111
      Rodrigo Garcia authored
      Description of Change
      
      Fixes IPAddress INADDR_NONE declaration when using Arduino WiFi or ETH.
      This symbol was defined as 0xffffffff by lwip /inet.h, making it impossible to use INADDR_NONE correctly.
      
      This PR only works when <wifi-provisioning/wifi_config.h> has a modification to include <lwip/ip4_addr.h> instead of <lwip/inet.h>. This will be done directly to the sdk folder in the github structure and it has been fixed in IDF by a separated Merge Request. This will be reflected in the future, for good.
      
      Tests scenarios
      
      This PR was tested with all Arduino WiFi examples, including AsyncUDP. Also with ETH examples.
      It was also tested for #6610 test cases.
      Testing done for ESP32, ESP32-S2, ESP32-C3 and ESP32-S3.
      
      Related links
      
      fixes #6610
      fixes #6247
      fixes #4732
      ce2cd111
  12. 28 Apr, 2022 1 commit
    • Me No Dev's avatar
      Add more controls over WiFi.begin and WiFi.scan (#6651) · 5f6d093d
      Me No Dev authored
      Added options to WiFi STA for connect:
      - setMinSecurity: default WIFI_AUTH_WPA2_PSK
      - setScanMethod: default WIFI_FAST_SCAN
      - setSortMethod: default WIFI_CONNECT_AP_BY_SIGNAL (required all channels scan method)
      
      Added parameters for SSID and BSSID to WiFi.scanNetworks()
      
      Fixes: #6485
      Fixes: Any issue about WiFi connecting slower now than in 1.0.x
      5f6d093d
  13. 27 Apr, 2022 3 commits
  14. 26 Apr, 2022 3 commits