aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/spi.c
Commit message (Collapse)AuthorAgeFilesLines
* [WIP] GPIO refactor: seems ok, ready for reviewMarti Bolivar2011-03-111-8/+10
|
* whitespace cleanupsMarti Bolivar2010-09-271-73/+72
|
* Check different set of flags for SPI master transmitPerry Hung2010-09-141-7/+10
| | | | | Tested on wishield, would like some more testing if anybody has more things that speak spi
* Switch spi to use new rcc interfacePerry Hung2010-08-041-2/+2
|
* Various SPI changes.Perry Hung2010-04-281-4/+7
| | | | | -Read DR after each master send, return the response. -Added a send function to allow you to pass buffers to the SPI peripheral instead of goin a byte at a time.
* Added a spi send block functionPerry Hung2010-04-271-2/+26
|
* Fixed two compiler warnings in spiPerry Hung2010-04-251-2/+2
|
* Initial SPI Polling implementation.Perry Hung2010-04-241-0/+132
Initial commit of a polling-based SPI driver. The driver is limited to synchronous, blocking sends and a 8-bit data frame format. Tested on SPI1 and SPI2. Other peripherals are temporarily disabled, and the rx function is untested until I find a good peripheral to test everything on.