I have a problem with Serial communication between my laptop and nodemcuv3 that suddenly occurred. All programs I test on the nodemcu crash / freeze if they contain Serial.begin () and Serial.print (). I tried to run a simple program (see below) but it crashes / freezes immediately and the LED does not flash. I have the same problem with another nodemcuv2 but with an Arduino UNO it works without problems. I have also tested different baud rates but it makes no difference. I usually use platformio in vscode but I have also tested serial monitor in putty and it is the same problem. From the picture below it looks like the drivers are correctly installed, right?
I use this nodemcu board: https://www.electrokit.com/produkt/nodemcu-v3/ which uses CH340G drivers

Does anyone know what could be the issue?
Code i ran for testing:
#include <Arduino.h>
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println("test");
digitalWrite(16,HIGH);
delay(500);
digitalWrite(16,LOW);
delay(500);
}