-
Notifications
You must be signed in to change notification settings - Fork 506
Closed
Labels
bugSomething isn't workingSomething isn't workingwaiting for feedbackRequires response from original posterRequires response from original poster
Description
Hello,
I test the SerialPIO on RP235X with a ESP8266 over serial and only the Transmit works, I don't receive anything over serial.
some test:
SerialPIO ser6(10,11);//tx/rx
void setup() {
delay(1000);
Serial.begin(9600);
ser6.begin(115200);
Serial.println("\n-----boot--------");
}
void loop() {
ser6.write("AT+GMR\r\n");
delay(100);
while (ser6.available()) {
Serial.println(ser6.readString());
}
delay(1000);
}
I connect a serial to usb module in 115200 and have data from ESP8266 :
OK
AT+GMR
AT version:2.2.0.0(b097cdf - ESP8266 - Jun 17 2021 12:57:45)
SDK version:v3.4-22-g967752e2
compile time(6800286):Aug 4 2021 17:20:05
Bin version:2.2.0(Cytron_ESP-01S)
Can be some bug in SerialPIO on RP235X ?
Thanks VS
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingwaiting for feedbackRequires response from original posterRequires response from original poster