Fix problems caused by insensitive case of file names in Windows.

This commit is contained in:
Bigbits
2019-03-30 19:52:18 +08:00
parent f4c16ec1b0
commit 3ac3aae597
9 changed files with 10 additions and 485 deletions

View File

@@ -1,20 +1,17 @@
#include "SPI.h"
SPIClass spi0(SPI0);
void setup()
{
spi0.setFrequency(10000000);
spi0.begin(27, 26, 28, 29);
spi0.transfer(1);
spi0.transfer(2);
spi0.transfer(3);
spi0.transfer(0xEE);
SPI.setFrequency(10000000);
SPI.begin(27, 26, 28, 29);
SPI.transfer(1);
SPI.transfer(2);
SPI.transfer(3);
SPI.transfer(0xEE);
}
void loop()
{
}