Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expand the documentation regarding the certificates flashing #129

Merged
merged 2 commits into from
Feb 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,14 @@ The tool offers also the ability to flash SSL certificates to a module:
./arduino-fwuploader certificates flash -b arduino:samd:nano_33_iot" -a COM10 -u arduino.cc:443 -u google.com:443
```

or you can specify a path to a file with `-f` instead of the URL of the certificate
or you can specify a path to a file in `.der` format with `-f` instead of the URL of the certificate

Due to a limitation on the handling of certs in the NINA modules, when `certificates flash` command is launched, all the
previous certificates are going to be erased. To overcome this it's required to upload them all together:

```
./arduino-fwuploader certificates flash --url arduino.cc:443,google.com:443 --file ~/Downloads/my_self_signed_.der -b arduino:mbed_nano:nanorp2040connect -a /dev/ttyACM0
```

### Command line options

Expand Down