Search found 3 matches

by dkulinski
Thu Jan 05, 2017 11:59 pm
Forum: ESP8266 boards
Topic: Reading from UART and KeyboardInterrupt
Replies: 6
Views: 9549

Re: Reading from UART and KeyboardInterrupt

Ultimately I disabled the KeyboardInterrupt from the firmware on the UART. Now it is working flawlessly. Thanks for the assistance and I hope we do see a common solution to disable this in run time in the future.
by dkulinski
Thu Jan 05, 2017 2:19 pm
Forum: ESP8266 boards
Topic: Reading from UART and KeyboardInterrupt
Replies: 6
Views: 9549

Re: Reading from UART and KeyboardInterrupt

I tried the code you have suggested. It produces the same result, a couple of reads and then a KeyboardInterrupt shows up and dumps me to a REPL prompt. With my previous code I didn't suffer short reads very often. After a couple of minutes after boot up I get this debug information to show up and s...
by dkulinski
Wed Jan 04, 2017 4:07 am
Forum: ESP8266 boards
Topic: Reading from UART and KeyboardInterrupt
Replies: 6
Views: 9549

Reading from UART and KeyboardInterrupt

I am reading a RDM6300 chip on the UART. I made a modification to the Micropython firmware in accordance to what Erni T. recommended in a similar situation. The RDM chip sends a \x02 followed by 12 ascii characters followed by a \x03. The \x03 of course will generate a KeyboardInterrupt so I wrapped...