summaryrefslogtreecommitdiff
path: root/stmhal/uart.c
AgeCommit message (Expand)Author
2017-05-06stmhal: Convert all module and method tables to use MP_ROM macros.Damien George
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-02-06stmhal: Use MICROPY_EVENT_POLL_HOOK instead of __WFI where appropriate.Damien George
2017-01-04all: Consistently update signatures of .make_new and .call methods.Paul Sokolovsky
2016-12-28stmhal/uart: Increase inter-character timeout by 1ms.Damien George
2016-12-28stmhal/uart: Provide a custom function to transmit over UART.Damien George
2016-12-05stmhal/uart: Add check that UART id is valid for the given board.Damien George
2016-12-05stmhal/uart: Add support for UART7 and UART8 on F7 MCUs.Damien George
2016-12-05stmhal: Refactor UART configuration to use pin objects.Rami Ali
2016-12-02py/stream: Move ad-hoc ioctl constants to stream.h and rename them.Damien George
2016-11-14all: Remove readall() method, which is equivalent to read() w/o args.Paul Sokolovsky
2016-06-18all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky
2016-06-03stmhal/uart.c: Fix wrong baudrate calculation for stm32l4 series.Tobias Badertscher
2016-05-10stmhal: Convert to use internal errno symbols; enable uerrno module.Damien George
2016-04-17stmhal: L4: Modify uart.c to support L4 MCU.Damien George
2016-04-13stmhal: Properly handle RTS/CTS flow control for buf/unbuf transfers.Peter Hinch
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2015-12-12stmhal: Make uart init use struct instead of array for parsing args.Damien George
2015-12-04stmhal: Fix uart off by 1 circular buffer size.Ryan Shaw
2015-11-30stmhal: Make uart.write() function correctly for timeout=0.Damien George
2015-11-30stmhal: uart.any() function now returns number of bytes available.Ryan Shaw
2015-11-26stmhal: Allow make DEBUG=1 to buildDave Hylands
2015-11-01stmhal: Add symbolic #defines for interrupt levels in irq.h.Dave Curtis
2015-10-31all: Add py/mphal.h and use it in all ports.Damien George
2015-10-20stmhal/uart: If char is not received within timeout, return EAGAIN error.Paul Sokolovsky
2015-08-07stamhal: Add definitions for MCU_SERIES_F4 and MCU_SERIES_F7Dave Hylands
2015-08-03stmhal: Add support for USART1 and conditional pins in make-pins.py.Damien George
2015-08-03stmhal: Add better support for UART having Tx and Rx on different ports.Damien George
2015-08-03stmhal: Factor GPIO clock enable logic into mp_hal_gpio_clock_enable.Damien George
2015-07-30stmhal: Add STM32F7DISC and associated changes.Dave Hylands
2015-06-01stmhal: Add support for UART5Dave Hylands
2015-05-27stmhal: Remove PYBVxx defines and use config vars for UART/CAN names.Damien George
2015-05-03stmhal: Allow to configure UART pins completely via mpconfigboard.h.Eero af Heurlin
2015-04-18stmhal: Exclude code for UARTs that don't exist in hardware.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-02-22stmhal: For UART, check that baudrate is within 5% of desired value.Damien George
2015-02-13stmhal: Add uart.sendbreak() method, to send a break condition.Damien George
2015-01-07stmhal: Collect all root pointers together in 1 place.Damien George
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-11-17stream: Convert .ioctl() to take fixed number of args.Paul Sokolovsky
2014-10-31stmhal: Fix UART so bits counts number of data bits, not incl parity.Damien George
2014-10-31stmhal: Implement support for RTS/CTS hardware flow control in UART.Damien George
2014-10-24stmhal: Use stream's readinto.Damien George
2014-10-23stmhal: Use OSError with POSIX error code for HAL errors.Damien George
2014-10-21stmhal: Overhaul UART class to use read/write, and improve it.v1.3.4Damien George
2014-10-02stmhal: Set is_enabled=false when creating UART object; fix doc typo.Damien George
2014-09-07stmhal: uart ioctl uses EINVAL, and checks TXE bit for write-ability.Damien George
2014-09-07stmhal: Fix modselect so non-hashable objects can be polled.Damien George
2014-09-07stmhal: Add polling ability to UART object.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George