Freezes when using Serial with 1.1.3

Hi,
Using Serial(over USB) with v1.1.3 freezes.
v1.1.1 works fine.

#include <Adafruit_TinyUSB.h>

void setup() {
  Serial.begin(115200);
  
  pinMode(11, OUTPUT);
}
 
void loop() {
    Serial.println("Hello world!");

    digitalWrite(11, LOW);
    delay(200);
    digitalWrite(11, HIGH);
    delay(800);
}

It seems that this change is having an effect.

Another forum user discovered that below folders are empty after installing v1.1.3:

C:\Users\username\AppData\Local\Arduino15\packages\Seeeduino\hardware\nrf52\1.1.3\libraries
=>Adafruit_nRFCrypto
=>Adafruit_TinyUSB_Arduino

Copy the missing files from github to your PC.

Hilarious, They Break more stuff than they FIX IMO…LOL
I’m convinced they don’t test this stuff very well.
C’mon Man!

GL :slight_smile: