File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
ArduinoCore-Linux/libraries Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -73,9 +73,9 @@ typedef void (*voidFuncPtrParam)(void*);
7373#endif
7474
7575/* TODO: request for removal */
76- typedef bool boolean;
77- typedef uint8_t byte;
78- typedef uint16_t word;
76+ // typedef bool boolean;
77+ // typedef uint8_t byte;
78+ // typedef uint16_t word;
7979
8080void init (void );
8181void initVariant (void );
@@ -171,7 +171,7 @@ static void randomSeed(unsigned seed){
171171
172172/* C++ prototypes */
173173uint16_t makeWord (uint16_t w);
174- uint16_t makeWord (byte h, byte l);
174+ uint16_t makeWord (uint8_t h, uint8_t l);
175175
176176#define word (...) makeWord(__VA_ARGS__)
177177
Original file line number Diff line number Diff line change 22class SPIClass {
33 public:
44 bool begin () { return true ; }
5- bool begin (int SCK , int MISO , int MOSI , int SS ) { return true ; }
5+ bool begin (int sck , int miso , int mosi , int ss ) { return true ; }
66};
77
88static SPIClass SPI;
You can’t perform that action at this time.
0 commit comments