Update epdif.cpp

Correct spelling of include file (SPI.h) for all OS (now only compile for Windows, which is not care about upper/lower case)
This commit is contained in:
berrak 2020-12-28 12:35:47 +01:00 committed by GitHub
parent 66ff76f87e
commit 58e2fd3fa0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@
*/
#include "epdif.h"
#include <spi.h>
#include <SPI.h>
EpdIf::EpdIf() {
};
@ -61,4 +61,4 @@ int EpdIf::IfInit(void) {
SPI.begin();
SPI.beginTransaction(SPISettings(2000000, MSBFIRST, SPI_MODE0));
return 0;
}
}