aboutsummaryrefslogtreecommitdiff
path: root/stmhal/spi.c
AgeCommit message (Expand)Author
2016-03-07stmhal: Make spi use mp_hal_gpio_set_afDave Hylands
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2015-12-16stmhal: Extend SPI support to fully support all SPI devices on STM32F429.Tobias Badertscher
2015-12-12stmhal: For SPI config, use HW_SPIx_SCK instead of HW_ENABLE_SPIx.Damien George
2015-12-02stmhal: Put all DMA channel & stream definitions in dma.hDave Hylands
2015-10-31all: Add py/mphal.h and use it in all ports.Damien George
2015-09-15stmhal: Use polling, not DMA, for 1 byte SPI transfers.Damien George
2015-08-05stmhal: Fix hardfault when configured as a SPI slaveDave Hylands
2015-08-05stmhal: Enable SPI support for F7 MCUs.Dave Hylands
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-24stmhal/dma.c: Modify dma_init() to accept init struct as an argumentblmorris
2015-06-10stmhal: Factor out DMA initialisation code from spi.c.Damien George
2015-06-03stmhal: Fix slow SPI DMA transfers by removing wfi from DMA wait loop.Damien George
2015-05-28stmhal: Fix off-by-one error when checking for valid I2C and SPI bus.Damien George
2015-05-27stmhal: Allow to name SPI busses, and give them names for pyboard.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-01-21py: Remove mp_obj_str_builder and use vstr instead.Damien George
2015-01-21stmhal: Add support for FEZ Cerb40 II board from ghielectronics.com.Dave Hylands
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-12-08stmhal: Allow SPI.init to specify prescaler directly; improve SPI docs.Damien George
2014-12-06stmhal: Make SPI bus use DMA for transfers.Damien George
2014-10-26stmhal: Change SPI phase spec to 0,1 to match standard conventions.Damien George
2014-10-23stmhal: Use OSError with POSIX error code for HAL errors.Damien George
2014-09-30stmhal: For spi_init, add argument to select if NSS pin is enabled.Damien George
2014-09-26stmhal: Initial implementation of cc3k module and driver.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-19Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot
2014-05-04stmhal: Document physical pins for SPI, I2C, UART busses.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03stmhal: Fix typos in class documentation.Damien George
2014-05-02unix,stmhal: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-29stmhal: Add documentation in comments, and script to generate HTML.Damien George
2014-04-26Simplify names for argcheck.c / arg parsing.Damien George
2014-04-26Add ARRAY_SIZE macro, and use it where possible.Damien George
2014-04-21stmhal: Add some documentation to I2C, SPI and USART modules.Damien George
2014-04-21stmhal: Improve USART class, to be more like SPI and I2C.Damien George
2014-04-21stmhal, SPI and I2C: Improvements to functionality and consistency.Damien George
2014-04-20stmhal: Improved configurability for I2C and SPI busses.Damien George
2014-04-20Fix i2c and spi to compile for Netduino Plus 2Dave Hylands
2014-04-20stmhal: Small bug fixes and simplifications.Damien George
2014-04-20stmhal: Update ExtInt to allow keyword arguments in constructor.Damien George
2014-04-20stmhal: Tidy up and improve consistency across modules.Damien George
2014-04-20stmhal: Add SPI class.Damien George