Hi,
I have an Arduino UNO board and am testing with PlatformIO. The code is pretty straightforward:
#include <Arduino.h>
void setup()
{
Serial.begin(9600);
Serial.println("Hello World");
}
void loop()
{
}
platformio.ini
[env:uno]
platform = atmelavr
board = uno
framework = arduino
Upload then I get:
* Executing task: platformio device monitor
--- Terminal on /dev/cu.wchusbserial1120 | 9600 8-N-1
--- Available filters and text transformations: colorize, debug, default, direct, hexlify, log2file, nocontrol, printable, send_on_enter, time
--- More details at https://bit.ly/pio-monitor-filters
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H
Hello World
But with the library daknuett/cryptosuite2@^0.2.5
in platformio.ini like this:
[env:uno]
platform = atmelavr
board = uno
framework = arduino
lib_deps =
daknuett/cryptosuite2@^0.2.5
No code seems to be running and the serial monitor outputs no “Hello World”:
* Executing task: platformio device monitor
--- Terminal on /dev/cu.wchusbserial1120 | 9600 8-N-1
--- Available filters and text transformations: colorize, debug, default, direct, hexlify, log2file, nocontrol, printable, send_on_enter, time
--- More details at https://bit.ly/pio-monitor-filters
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H
Any ideas? Thank you!