remove another unused variable

This commit is contained in:
Josh Goebel 2016-02-21 01:39:41 -05:00 committed by Scott Allen
parent 59c143af2f
commit a591ce7705
2 changed files with 22 additions and 24 deletions

View File

@ -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

View File

@ -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;
}; };