Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: SDFileSystem mbed-dev
Fork of Nucleo_Ex06_EMU by
TFT/spidma.h
- Committer:
- charliex
- Date:
- 2017-05-27
- Revision:
- 3:8d6e6aec9b01
File content as of revision 3:8d6e6aec9b01:
/*===================================================================*/
/* */
/* spidma.h : SPI DMA function header */
/* */
/* 2016/1/20 Racoon */
/* */
/*===================================================================*/
#ifndef SPIDMA_H_INCLUDED
#define SPIDMA_H_INCLUDED
void spi_init();
void spi_write(uint8_t data);
void spi_writew(uint16_t data);
uint8_t spi_read(void);
extern SPI_HandleTypeDef SpiHandle;
#endif
