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"
|
#include "core.h"
|
||||||
|
|
||||||
// need to redeclare these here since we declare them static in .h
|
// need to redeclare these here since we declare them static in .h
|
||||||
volatile uint8_t *ArduboyCore::mosiport,
|
volatile uint8_t *ArduboyCore::csport, *ArduboyCore::dcport;
|
||||||
*ArduboyCore::csport, *ArduboyCore::dcport;
|
uint8_t ArduboyCore::cspinmask, ArduboyCore::dcpinmask;
|
||||||
uint8_t ArduboyCore::mosipinmask,
|
|
||||||
ArduboyCore::cspinmask, ArduboyCore::dcpinmask;
|
|
||||||
|
|
||||||
const uint8_t PROGMEM pinBootProgram[] = {
|
const uint8_t PROGMEM pinBootProgram[] = {
|
||||||
// buttons
|
// buttons
|
||||||
|
|
|
@ -291,8 +291,8 @@ protected:
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
volatile static uint8_t *mosiport, *csport, *dcport;
|
volatile static uint8_t *csport, *dcport;
|
||||||
uint8_t static mosipinmask, cspinmask, dcpinmask;
|
uint8_t static cspinmask, dcpinmask;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue