We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34cfa59 commit 08eff44Copy full SHA for 08eff44
src/sketches/provisioning.ino.js
@@ -10,9 +10,10 @@ export const provisioningSketch = {
10
#include <utility/ECCX08Cert.h>
11
#include <utility/ECCX08TLSConfig.h>
12
13
-#include <ArduinoBearSSL.h>
+#include <ArduinoIoTCloudBearSSL.h>
14
#include <ArduinoECCX08.h>
15
16
+const bool DEBUG = true;
17
const int keySlot = 0;
18
const int compressedCertSlot = 10;
19
const int serialNumberAndAuthorityKeyIdentifierSlot = 11;
@@ -135,6 +136,10 @@ void setup() {
135
136
while (1);
137
}
138
139
+ if (!DEBUG) {
140
+ return;
141
+ }
142
+
143
Serial.println("Compressed cert = ");
144
145
const byte* certData = ECCX08Cert.bytes();
0 commit comments