1. 07 2月, 2023 1 次提交
  2. 11 12月, 2022 1 次提交
  3. 08 12月, 2022 2 次提交
  4. 14 9月, 2022 1 次提交
  5. 09 8月, 2022 1 次提交
  6. 28 7月, 2022 1 次提交
  7. 06 7月, 2022 1 次提交
    • A
      Update ssl_client.cpp (#6942) · 949aa27f
      Anx2k 提交于
      Fixed issue with ssl_client->socket being closed without being consistently set to -1.  Changed close to lwip_close to be consistent with lwip_socket, resolved issue with long term assert after 4+ days (assert failed: lock_release_generic locks.c:186).
      Co-authored-by: NMe No Dev <me-no-dev@users.noreply.github.com>
      949aa27f
  8. 10 5月, 2022 1 次提交
    • T
      Added compiler.warning_flags to platform.txt; fixing #6118 (#6596) · ca77502c
      Tomáš Pilný 提交于
      Summary
      
      Added compiler.warning_flags to all chips in platform.txt to reflect users setting of warning level output during compilation (set up in Arduino IDE preferences)
      
      Impact
      
      When a warning is set to none the compilation will no longer display warnings
      
      Related links
      
      Solves issue #6118
      ca77502c
  9. 26 4月, 2022 2 次提交
  10. 28 3月, 2022 1 次提交
  11. 07 2月, 2022 1 次提交
  12. 31 1月, 2022 1 次提交
  13. 19 1月, 2022 1 次提交
  14. 14 12月, 2021 1 次提交
  15. 25 10月, 2021 1 次提交
    • A
      Add ALPN support to WiFiClientSecure (#5633) · 15bbd0a1
      Anthony Elder 提交于
      This adds a function to WiFiClientSecure to set the ALPN protocol.
      
      This is required for an MQTT client to connect to AWS IoT when using an AWS Custom Authorizer, as described here.
      
      Example code snippet:
      
      ...
      WiFiClientSecure wiFiClient;
      
      // ALPN protocol, needed with AWS custom authorizer
      const char *aws_protos[] = {"mqtt", NULL};
      
      void setup() {
        wiFiClient.setCACert(AWSCAPEM);
        wiFiClient.setAlpnProtocols(aws_protos);
      }
      ...
      15bbd0a1
  16. 08 10月, 2021 1 次提交
  17. 21 7月, 2021 1 次提交
    • V
      fix: WiFiClientSecure connection timeout (#5398) (#5418) · e12d8c8f
      Vlasta Hajek 提交于
      Closes #5398
      
      Using the same non-blocking socket connect pattern for respecting connection timeout, copied from WiFiClient::connect.
      
      WiFiClient::connect uses lwip_connect_r, whereas start_ssl_client uses lwip_connect. I haven't found what is the difference between them. I tested both, both work ok, so I kept lwip_connect.
      e12d8c8f
  18. 09 6月, 2021 2 次提交
  19. 18 3月, 2021 1 次提交
  20. 11 3月, 2021 1 次提交
  21. 23 2月, 2021 1 次提交
  22. 18 2月, 2021 2 次提交
  23. 21 12月, 2020 1 次提交
  24. 01 12月, 2020 1 次提交
  25. 03 11月, 2020 1 次提交
    • I
      Fix for espressif#3460 issue (#4424) · d6b91872
      Ivan Golubic 提交于
      Fixes: #3460
      
      This code has been run in production for 1 month and it looks stable, no data dropped and it definitely fixes the issue described. I think that this can be merged to avoid using custom package referencing in PlatformIO that has been used in quite a few projects for now.
      Co-authored-by: NIvan Golubic <ivan@mvt-solutions.com>
      d6b91872
  26. 14 10月, 2020 2 次提交
    • D
      Add an aditional (void *) arg to the RMT callback (much like Ticker() et.al.). (#3345) · d79a1f3d
      Dirk-Willem van Gulik 提交于
      * Add an aditional (void *) arg to the RMT callback - to allow more flexible handling of the callback (e.g. by passing a private struct or a class pointer). Same pattern as used by the Ticker() and many others. Example updated & new example with a trapoline added.
      
      * Fix example for new API
      
      * Fix lint warnings
      
      * Add a second missed example.
      
      * Correct timeout & improve socket error handling.
      d79a1f3d
    • V
      Certificate isn't be free in case parse failure. (#4412) · 2685a5dd
      Vo Linh Truc 提交于
      I met problem while I was working with the WiFiClientSecure.
      I tried to found the source of the problem, and I found it in the sll_client.cpp.
      Please check my contribution.
      
      I've open this problem in #4335 but received no response.
      2685a5dd
  27. 30 9月, 2020 1 次提交
  28. 17 10月, 2019 1 次提交
  29. 17 9月, 2019 1 次提交
  30. 15 4月, 2019 2 次提交
  31. 31 12月, 2018 1 次提交
  32. 16 12月, 2018 1 次提交
  33. 03 12月, 2018 1 次提交
  34. 29 11月, 2018 1 次提交
    • L
      Clean warnings when all warning enabled (#2112) · ce340faf
      Luc 提交于
      * Clean warnings when all warning enabled
      
      Not used variables / functions due to debug log
      
      Dual define with different values :
      cores\esp32/binary.h
      #define B110 6
      #define B1000000 64
      
      tools/sdk/include/newlib/sys/termios.h
      #define B110        3
      #define B1000000   23
      
      Local variable returned in WiFiclient Secure
      
      * change due to deprecated function
      
      * Update with proper variable and label
      
      * Update esp32-hal-i2c.c
      
      * Apply changes requested
      
      * Fix warnings due to #define conflict thanks @atanisoft
      ce340faf