-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Labels
Description
Description
The NRF52_DK serial is not capable of receiving bytes:
int main() {
RawSerial serial(USBTX, USBRX);
serial.printf("Hello world\r\n");
while (true) {
if (serial.readable()) {
serial.putc(serial.getc());
}
}
}
The trace Hello world
is printed correctly but the device does not capture any byte send to it whether the serial is polled or operating under interrupts.
The same application worked prior to 3663494 .
Issue request type
[ ] Question
[ ] Enhancement
[X] Bug