Skip to content
Snippets Groups Projects
Commit 64a46492 authored by Karl Andersson's avatar Karl Andersson Committed by Scott Lahteine
Browse files

STM32 - Fix SD write (#12897)

parent 29452143
Branches
Tags
No related merge requests found
...@@ -116,10 +116,9 @@ uint8_t spiRec(void) { ...@@ -116,10 +116,9 @@ uint8_t spiRec(void) {
*/ */
void spiRead(uint8_t* buf, uint16_t nbyte) { void spiRead(uint8_t* buf, uint16_t nbyte) {
if (nbyte == 0) return; if (nbyte == 0) return;
memset(buf, 0xFF, nbyte);
SPI.beginTransaction(spiConfig); SPI.beginTransaction(spiConfig);
for (int i = 0; i < nbyte; i++) { SPI.transfer(buf, nbyte);
buf[i] = SPI.transfer(0xFF);
}
SPI.endTransaction(); SPI.endTransaction();
} }
...@@ -145,9 +144,10 @@ void spiSend(uint8_t b) { ...@@ -145,9 +144,10 @@ void spiSend(uint8_t b) {
* @details Use DMA * @details Use DMA
*/ */
void spiSendBlock(uint8_t token, const uint8_t* buf) { void spiSendBlock(uint8_t token, const uint8_t* buf) {
uint8_t rxBuf[512];
SPI.beginTransaction(spiConfig); SPI.beginTransaction(spiConfig);
SPI.transfer(token); SPI.transfer(token);
SPI.transfer((uint8_t*)buf, (uint8_t*)0, 512); SPI.transfer((uint8_t*)buf, &rxBuf, 512);
SPI.endTransaction(); SPI.endTransaction();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment