File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,27 @@ image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/
1010Port of https://bearssl.org[BearSSL] to Arduino.
1111
1212This library depends on ArduinoECCX08. This dependency could be
13- disabled by defining ARDUINO_DISABLE_ECCX08 in ArduinoBearSSLConfig.h
14- (see examples).
13+ disabled by defining ARDUINO_DISABLE_ECCX08 in ArduinoBearSSLConfig.h.
14+
15+ To do this create a configuration library called ArduinoBearSSLConfig with the
16+ following file structure:
17+
18+ ```
19+ └── ArduinoBearSSLConfig/
20+ ├── src/
21+ │ └── ArduinoBearSSLConfig.h
22+ └── library.properties
23+ ```
24+
25+ ArduinoBearSSLConfig.h
26+ ```
27+ #pragma once
28+ #define ARDUINO_DISABLE_ECCX08
29+ ```
30+ library.properties
31+ ```
32+ name=ArduinoBearSSLConfig
33+ ```
1534
1635== License ==
1736
You can’t perform that action at this time.
0 commit comments