2016-01-08 21:54:46 +03:00
|
|
|
### wolfSSL with Arduino
|
|
|
|
|
2016-01-08 22:07:35 +03:00
|
|
|
##### Reformatting wolfSSL as a compatible Arduino Library
|
2016-01-08 21:54:46 +03:00
|
|
|
This is a shell script that will re-organize the wolfSSL library to be
|
|
|
|
compatible with Arduino projects. The Arduino IDE requires a library's source
|
|
|
|
files to be in the library's root directory with a header file in the name of
|
2018-06-09 00:27:54 +03:00
|
|
|
the library. This script moves all src/ files to the `IDE/ARDUINO/wolfSSL`
|
|
|
|
directory and creates a stub header file called `wolfssl.h`.
|
2016-01-08 21:54:46 +03:00
|
|
|
|
2016-09-15 01:53:06 +03:00
|
|
|
Step 1: To configure wolfSSL with Arduino, enter the following from within the
|
2016-01-08 21:54:46 +03:00
|
|
|
wolfssl/IDE/ARDUINO directory:
|
|
|
|
|
2018-06-09 00:27:54 +03:00
|
|
|
`./wolfssl-arduino.sh`
|
2016-09-15 01:53:06 +03:00
|
|
|
|
|
|
|
|
2018-06-09 00:27:54 +03:00
|
|
|
Step 2: Edit `<wolfssl-root>/IDE/ARDUINO/wolfSSL/wolfssl/wolfcrypt/settings.h` uncomment the define for `WOLFSSL_ARDUINO`
|
|
|
|
If building for Intel Galileo platform also uncomment the define for `INTEL_GALILEO`.
|
2016-09-15 01:53:06 +03:00
|
|
|
|
2019-01-07 22:47:33 +03:00
|
|
|
##### Including wolfSSL in Arduino Libraries (for Arduino version 1.6.6)
|
2018-06-09 00:27:54 +03:00
|
|
|
|
|
|
|
1. In the Arduino IDE:
|
|
|
|
- In `Sketch -> Include Library -> Add .ZIP Library...` and choose the
|
|
|
|
`IDE/ARDUNIO/wolfSSL` folder.
|
|
|
|
- In `Sketch -> Include Library` choose wolfSSL.
|
|
|
|
|
2019-01-09 01:28:30 +03:00
|
|
|
2. Open an example Arduino sketch for wolfSSL:
|
|
|
|
- wolfSSL Client INO sketch: `sketches/wolfssl_client/wolfssl_client.ino`
|
|
|
|
- wolfSSL Server INO sketch: `sketches/wolfssl_server/wolfssl_server.ino`
|