File tree 1 file changed +21
-2
lines changed
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/
10
10
Port of https://bearssl.org[BearSSL] to Arduino.
11
11
12
12
This 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
+ ```
15
34
16
35
== License ==
17
36
You can’t perform that action at this time.
0 commit comments