Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/arduino.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ on:
paths:
# Specific to this Arduino CI Build (1 of 4)
- '.github/workflows/arduino.yml'
- 'examples/configs/user_settings_arduino.h'
- 'IDE/ARDUINO/**'
- 'src/**'
- 'wolfcrypt/**'
Expand All @@ -61,6 +62,7 @@ on:
branches: [ '**' ]
paths:
- '.github/workflows/arduino.yml'
- 'examples/configs/user_settings_arduino.h'
- 'IDE/ARDUINO/**'
- 'src/**'
- 'wolfcrypt/**'
Expand Down
5 changes: 5 additions & 0 deletions examples/configs/user_settings_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,11 @@
* Use the smaller ECC-256 built-in cert set to keep the examples fitting.
*/
#define USE_CERT_BUFFERS_256

/* ECC-256 certs alone no longer fit. Drop the error reason string
* tables to reclaim flash; only wolfSSL_ERR_*_string() text is lost,
* TLS/crypto and DEBUG_WOLFSSL traces are unchanged. */
#define NO_ERROR_STRINGS
#elif defined (__AVR__) || defined(__AVR_ARCH__) || defined(__MEGAAVR__)
/* Do not enable TLS on platforms without networking */

Expand Down
Loading