Skip to content

Describe how to include the custom configuration in Sketch #91

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

Merged
merged 1 commit into from
Jul 17, 2024
Merged
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
12 changes: 9 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/

Port of https://bearssl.org[BearSSL] to Arduino.

This library depends on ArduinoECCX08. This dependency could be
disabled by defining ARDUINO_DISABLE_ECCX08 in ArduinoBearSSLConfig.h.
This library depends on https://github.com/arduino-libraries/ArduinoECCX08[ArduinoECCX08]. This dependency could be
disabled by defining `ARDUINO_DISABLE_ECCX08` in `ArduinoBearSSLConfig.h` file.

To do this create a configuration library called ArduinoBearSSLConfig with the
To do this create a configuration library called `ArduinoBearSSLConfig` with the
following file structure:

```
Expand All @@ -32,6 +32,12 @@ library.properties
name=ArduinoBearSSLConfig
```

and include the `ArduinoBearSSLConfig` library in your Sketch as follows:

```
#include <ArduinoBearSSLConfig.h>
#include <ArduinoBearSSL.h>
```
== License ==

Copyright (c) 2018 Arduino SA. All rights reserved.
Expand Down
Loading