mirror of https://github.com/MLXXXp/Arduboy2.git
remove another unused variable
This commit is contained in:
parent
59c143af2f
commit
a591ce7705
|
@ -1,10 +1,8 @@
|
|||
#include "core.h"
|
||||
|
||||
// need to redeclare these here since we declare them static in .h
|
||||
volatile uint8_t *ArduboyCore::mosiport,
|
||||
*ArduboyCore::csport, *ArduboyCore::dcport;
|
||||
uint8_t ArduboyCore::mosipinmask,
|
||||
ArduboyCore::cspinmask, ArduboyCore::dcpinmask;
|
||||
volatile uint8_t *ArduboyCore::csport, *ArduboyCore::dcport;
|
||||
uint8_t ArduboyCore::cspinmask, ArduboyCore::dcpinmask;
|
||||
|
||||
const uint8_t PROGMEM pinBootProgram[] = {
|
||||
// buttons
|
||||
|
|
|
@ -291,8 +291,8 @@ protected:
|
|||
|
||||
|
||||
private:
|
||||
volatile static uint8_t *mosiport, *csport, *dcport;
|
||||
uint8_t static mosipinmask, cspinmask, dcpinmask;
|
||||
volatile static uint8_t *csport, *dcport;
|
||||
uint8_t static cspinmask, dcpinmask;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue