File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -93,3 +93,15 @@ matrix:
93
93
- << : *cmake-build-test
94
94
name : " CMake atecc608a example - debug (K64F)"
95
95
env : NAME=cmake_test TARGET_NAME=K64F PROFILE=debug CACHE_NAME=debug-K64F
96
+
97
+ - << : *cmake-build-test
98
+ name : " CMake atecc608a example - develop (NRF52_DK)"
99
+ env : NAME=cmake_test TARGET_NAME=NRF52_DK PROFILE=develop CACHE_NAME=develop-NRF52_DK
100
+
101
+ - << : *cmake-build-test
102
+ name : " CMake atecc608a example - release (NRF52_DK)"
103
+ env : NAME=cmake_test TARGET_NAME=NRF52_DK PROFILE=release CACHE_NAME=release-NRF52_DK
104
+
105
+ - << : *cmake-build-test
106
+ name : " CMake atecc608a example - debug (NRF52_DK)"
107
+ env : NAME=cmake_test TARGET_NAME=NRF52_DK PROFILE=debug CACHE_NAME=debug-NRF52_DK
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ The examples in this repository demonstrate how to use the ATECC608A secure elem
9
9
10
10
A target with I2C and power supply connections, connected to an ATECC608A secure element as shown in [ Hardware interface] ( #hardware-interface ) .
11
11
12
+ Note: This example enables Mbed OS PSA. It is _ not_ suitable for or compatible with TF-M which has its own PSA implementation
13
+ (e.g. Arm TrustZone on Arm v8-M).
14
+
12
15
## Mbed OS build tools
13
16
14
17
### Mbed CLI 2
Original file line number Diff line number Diff line change 1
1
{
2
2
"target_overrides" : {
3
3
"*" : {
4
- "target.features_add" : [" EXPERIMENTAL_API" ],
4
+ "target.features_add" : [" EXPERIMENTAL_API" , " PSA" ],
5
+ "extra_labels_add" : [" MBED_PSA_SRV" ],
5
6
"platform.stdio-baud-rate" : 9600 ,
6
7
"platform.stdio-convert-newlines" : true ,
7
8
"mbed-trace.enable" : 0
8
9
},
9
10
"NRF52_DK" : {
10
11
"cryptoauthlib.i2c_sda" : " P0_26" ,
11
12
"cryptoauthlib.i2c_scl" : " P0_27"
12
- },
13
- "SAML21J18A" : {
14
- "cryptoauthlib.i2c_sda" : " PA08" ,
15
- "cryptoauthlib.i2c_scl" : " PA09"
16
13
}
17
14
},
18
15
"macros" : [
You can’t perform that action at this time.
0 commit comments