Added empty / placeholder files, required my some libraries, specificially Adafruit_ST7735. This is a work in progress and doesn't allow this library to work, as SPI needs to be updated and also the library needs code changed to its header file

This commit is contained in:
Roger Clark 2014-12-05 20:58:27 +11:00
parent 0004e11a25
commit 53f84108d6
4 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#ifndef WiringPrivate_h
#define WiringPrivate_h
#endif

View File

@ -0,0 +1,6 @@
// API compatibility
#include "variant.h"

View File

@ -0,0 +1,10 @@
#ifndef _VARIANT_ARDUINO_STM32_
#define _VARIANT_ARDUINO_STM32_
// From SAM implementation #define digitalPinToBitMask(P) ( g_APinDescription[P].ulPin )
// Added placeholder to please the compiler
#warning "TO DO. IMPLEMENT digitalPinToBitMask in variant.h"
#define digitalPinToBitMask(P) ( 1 )
#endif /* _VARIANT_ARDUINO_STM32_ */