Skip to content

NRF52_DK Serial RX doesn't work #6891

@pan-

Description

@pan-

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

Metadata

Metadata

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions