Skip to content

Commit 8c0ffd5

Browse files
authored
src/corelibs/spi: Compilation error fix. (#76)
* src/corelibs/spi: Compilation error fix. Signed-off-by: MDin <Dinesh.M-EE@infineon.com> * src/corelibs/spi: Fix compilation issue. Signed-off-by: MDin <Dinesh.M-EE@infineon.com> --------- Signed-off-by: MDin <Dinesh.M-EE@infineon.com>
1 parent f8b462b commit 8c0ffd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/corelibs/spi/test_spi_connected2_masterpingpong.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
// project includes
2020
#include <SPI.h>
21-
#ifndef SPI_TRANSFER_DELAY
22-
#define SPI_TRANSFER_DELAY 500
23-
#else
21+
#ifndef SPI_TRANSFER_DELAY_US
22+
#define SPI_TRANSFER_DELAY_US 500
23+
#endif
2424
const uint8_t MAX_BUFFER_SIZE = 20;
2525
const uint8_t MAX_TEST_ITERATION = 10;
2626

0 commit comments

Comments
 (0)