summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266/modpybuart.c
Commit message (Collapse)AuthorAge
* esp8266/modpybuart: Fix UART parity setting.daniel-k2016-07-27
| | | | | | | | | The configuration bits for the UART register were wrong and the parity couldn't be enabled, because the exist_parity member hasn't been updated. I took this ESP8266 register description (http://esp8266.ru/esp8266-uart-reg/) as reference. Verification has been done with a logic analyzer.
* esp8266/modpybuart: allow setting baudrate and other paramsRadomir Dopieralski2016-06-30
|
* all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky2016-06-18
| | | | | It's now used for more than just stream protocol (e.g. pin protocol), so don't use false names.
* esp8266: Convert to use new MP_Exxx errno symbols.Damien George2016-05-10
| | | | | | | These symbols are still defined in terms of the system Exxx symbols, and can be switched to internal numeric definitions at a later stage. Note that extmod/modlwip still uses many system Exxx symbols.
* esp8266: Implement UART.read functionality.Damien George2016-04-21
|
* esp8266: Add initial implementation of machine.UART.Damien George2016-04-06
Currently UART(0) and UART(1) are exposed and only uart.write works.