CSR generation example does not work on Arduino Nano IoT 33 #23
Labels
topic: code
Related to content of the project itself
type: imperfection
Perceived defect in any part of project
The example, as is, does not work on the IoT 33.
Serial.println(csr);
pushes an empty string out through serial. To get this to work, I had to prime the String instance and/or the Serial singleton by callingSerial.println(csr.length())
immediately beforeSerial.println(csr)
in order for the CSR cert to output via Serial. Otherwise, the output would be an empty string. If I simply callcsr.length()
without passing the result toSerial.println
, this also does not work. Seems like a weird state issue, maybe?The text was updated successfully, but these errors were encountered: