aboutsummaryrefslogtreecommitdiff
path: root/ports
AgeCommit message (Expand)Author
2019-01-27stm32/rtc: Check RTCEN=1 when testing if RTC is already running on boot.Damien George
2019-01-27py: Add optional support for 2-argument version of built-in next().stijn
2019-01-27cc3200/mods/modussl: Fix ca_certs arg validation in mod_ssl_wrap_socket.Reagan Sanders
2019-01-27unix/mpthreadport: Remove busy wait loop in thread garbage collection.Mikhail Zakharov
2019-01-27unix/mpthreadport: Cleanup used memory on thread exit.Mikhail Zakharov
2019-01-27unix/mpthreadport: Add thread deinit code to stop threads on exit.Mikhail Zakharov
2019-01-27stm32: Implement machine.lightsleep().Damien George
2019-01-25pic16bit: Update to compile with latest xc16 v1.35 compiler.Damien George
2019-01-23esp32/machine_hw_spi: Make HW SPI objects statically allocated.Damien George
2019-01-23esp32/machine_hw_spi: Use separate DMA channels for HSPI and VSPI.Damien George
2019-01-23esp32/modules/neopixel.py: Change NeoPixel to different default timings.Matt Trentini
2019-01-22esp8266/esp_mphal: Provide mp_hal_pin_od_high_dht so DHT works reliably.Damien George
2019-01-17esp32/Makefile: Use system provided math library rather than uPy one.Damien George
2019-01-16esp32/machine_pin: Add Pin.off() and Pin.on() methods.Damien George
2019-01-16esp8266/main: Activate UART(0) on dupterm for REPL before boot.py runs.Damien George
2019-01-11stm32/main: Make thread and FS state static and exclude when not needed.Damien George
2019-01-11stm32/wdt: Make singleton WDT object const so it goes in ROM.Damien George
2019-01-10esp32/modsocket: For socket read only release GIL if socket would block.Damien George
2019-01-10esp32/mphalport: When tx'ing to REPL only release GIL if many chars sentDamien George
2018-12-30stm32/sdcard: Properly reset SD periph when SDMMC2 is used on H7 MCUs.Damien George
2018-12-30stm32/modmachine: Fix reset_cause to correctly give DEEPSLEEP on L4 MCU.roland
2018-12-30stm32/uart: Make sure user IRQs are handled even with a keyboard intr.Damien George
2018-12-30stm32/uart: Clear overrun error flag after reading RX data register.Damien George
2018-12-29stm32/uart: Always enable global UART IRQ handler on init.Damien George
2018-12-29stm32/uart: Fix uart_rx_any in case of no buffer to return 0 or 1.Damien George
2018-12-29stm32: Implement UART.irq() method with initial support for RX idle IRQ.Tobias Badertscher
2018-12-22stm32/main: Add board config option to enable/disable mounting SD card.Andrew Leech
2018-12-15windows: Remove remaining traces of old GNU readline support.Damien George
2018-12-13stm32/boards/NUCLEO_L432KC: Specify L4 OpenOCD config file for this MCU.Damien George
2018-12-13stm32/boards: Allow OpenOCD stm_flash procedure to accept single FW img.Damien George
2018-12-13py/objdict: Make .fromkeys() method configurable.Paul Sokolovsky
2018-12-12stm32/adc: Support 16-bit ADC configuration on H7 MCUs.Damien George
2018-12-12stm32/adc: Increase ADC sampling time for internal sources on H7 MCUs.Damien George
2018-12-12stm32/adc: Fix calibrated volt/temp readings on H7 by using 16bit scale.Damien George
2018-12-12stm32/extint: Use correct EXTI channels on H7 MCUs for RTC events.Damien George
2018-12-10nrf/bluetooth: Update BLE stack download script.Glenn Ruben Bakke
2018-12-10teensy: Add own uart.h to not rely on stm32's version of the file.Damien George
2018-12-10stm32/uart: Add ability to have a static built-in UART object.Damien George
2018-12-10stm32/uart: Move config of char_width/char_mask to uart.c.Damien George
2018-12-10stm32/uart: For UART init, pass in params directly, not via HAL struct.Damien George
2018-12-10stm32/uart: Simplify deinit of UART, no need to call HAL.Damien George
2018-12-10stm32/uart: Remove HAL's UART_HandleTypeDef from UART object struct.Damien George
2018-12-10stm32/uart: Factor out code to set RX buffer to function uart_set_rxbuf.Damien George
2018-12-10stm32/uart: Rework uart_get_baudrate so it doesn't need a UART handle.Damien George
2018-12-10stm32/uart: Factor out code from machine_uart.c that computes baudrate.Damien George
2018-12-10stm32: Split out UART Python bindings from uart.c to machine_uart.c.Damien George
2018-12-06esp32/modmachine: Enable machine.sleep() now that the IDF supports it.Damien George
2018-12-06esp32/machine_pwm: On deinit stop routing PWM signal to the pin.Damien George
2018-12-06esp32/machine_pwm: Support higher PWM freq by auto-scaling timer res.Damien George
2018-12-06esp32/machine_uart: Implement UART.sendbreak() method.Damien George