Class to be able to send SPI data with almost no overhead, useful at very high speeds.
Dependents: MakerBotServer epaper_mbed_130411_KL25Z epaper_mbed_test epaper_mbed_test_copy1 ... more
General
BurstSPI sends SPI data without reading it back, allowing higher speeds than the regular SPI library. This is mainly useful at high frequencies and large payloads. With a small number of bytes the setting up and finishing time will remove any advantage.
The three new functions compared to regular SPI are: fastWrite, setFormat and clearRX.
fastWrite is the function to quickly write data. setFormat is only required if the SPI format might have changed, or the first time you fastWrite something and you haven't used a regular SPI write before. clearRX is required if you also want to be able read from the SPI peripheral later on.
//Send 1000 SPI packets as fast as possible spi.setFormat(); for (int i = 0; i<1000; i++) spi.fastWrite(data[i]); spi.clearRX();
Supported targets
- KL25Z, KL46Z
- LPC1768, LPC11u24, LPC1114, LPC1549, LPC1347
- STML152RE
If a target is not supported the library will issue a warning, and use regular writes. This means if you for example use this library to speed up writing to an LCD display, your LCD display library will work on all targets, and if possible BurstSPI will speed up the process.
Changes
Revision | Date | Who | Commit message |
---|---|---|---|
13:bc069279eb37 | 2015-05-16 | Sissors | Added STM F4XX support. |
12:c99022511536 | 2015-04-03 | Backstrom | As we set receive ignore flag we don't need any code in clearRX. |
11:36ac5fd058dd | 2015-04-03 | Backstrom | Add LPC1549 target support. |
10:6ed1d9f1ef37 | 2014-10-07 | Sissors | Added support for non-supported targets |
9:b69faea5252c | 2014-10-07 | Sissors | Added LPC13XX in list of defines (does compile, not verified yet to work) |
8:97d75b6d5028 | 2014-09-03 | mcapewel | Add LPC11U24 as target supported by LPC1768 code. |
7:9faa78fb128a | 2014-08-05 | mcapewel | Add LPC1114 as target supported by LPC1768 code. |
6:b862ffb6c5e2 | 2014-07-25 | kenno | Merge with version 2.0 |
5:4437229b0738 | 2014-07-19 | kenno | Add BustSPI_KL46Z |
4:8585ddebd28b | 2014-06-25 | Alamalione | Version 2.0 |
3:7d9b64d67b22 | 2013-07-04 | Sissors | Refactored code, added version 1 of KL25Z support |
2:a8e55f7cbfee | 2013-01-04 | frankvnk | none |
1:5ef4a019e0db | 2013-01-03 | Sissors | Small error |
0:600eecd89a78 | 2013-01-03 | Sissors | v1.0 |