dev/st7789_lcd #6

Merged
tkl merged 3 commits from dev/st7789_lcd into master 2020-03-29 13:01:38 +00:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 07301042f9 - Show all commits

View File

@ -1,3 +1,6 @@
#ifndef __NRF52_SPI_H__
#define __NRF52_SPI_H__
int spi_open(const struct driver *drv);
int spi_close(const struct driver *drv);
@ -16,3 +19,5 @@ static const struct driver_fp spi_fp = {
.write = spi_write,
.ioctl = NULL
};
#endif

View File

@ -8,7 +8,6 @@
static inline int spi_transfer(uint32_t t);
int spi_open(const struct driver *drv)
{
assert(NULL != drv);
@ -59,4 +58,3 @@ static inline int spi_transfer(uint32_t t)
}
r = NRF_SPI0->RXD; // in
return (int)r;
}