Using the new Arduino IDE for ESP8266 and found bugs, report them here

Moderator: igrr

User avatar
By martinayotte
#60391 Could be on the Putty side, but not on ESP side otherwise my python script would have shown the issue.
I'm not using Putty, but how the capture is been done ?
What is interesting is the fact that the capture shows 2 bytes for each one received.
User avatar
By SwiCago
#60393
martinayotte wrote:Could be on the Putty side, but not on ESP side otherwise my python script would have shown the issue.
I'm not using Putty, but how the capture is been done ?
What is interesting is the fact that the capture shows 2 bytes for each one received.

I will look at this again. STrange that my YUN did not show this issue, nor the original device it is simulating. The output of the ESP should match the original device, but if the bytes above 7F are being mangles on esp-01, then it will never work. I do have an oscilloscope that can do serial analyzation, just didn't feel like hooking it up.


DAFlippers wrote:Also note that you are not seeing 00 either. Your sequence is going 7F C280 ... C2BF C380... C3BF which is strange.

David


It doesn't show 0x00, because that dump was done when I did
Serial.write(i);
and not
Serial.write((uint8_t) i);
which is from what I read has to be done in order to get 0x00 to print.