individual pixel color is not a Core concept

- core only deals with pixel data in bytes (groups of 8 pixels)
- invert has no meaning at all to Core
This commit is contained in:
Josh Goebel 2016-02-21 01:51:40 -05:00 committed by Scott Allen
parent 47114cf366
commit 592d13bd93
2 changed files with 5 additions and 4 deletions

View File

@ -19,6 +19,11 @@
#define PIXEL_SAFE_MODE
// pixel colors
#define INVERT 2 //< lit/unlit pixel
#define WHITE 1 //< lit pixel
#define BLACK 0 //< unlit pixel
// compare Vcc to 1.1 bandgap
#define ADC_VOLTAGE (_BV(REFS0) | _BV(MUX4) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1))
// compare temperature to 2.5 internal reference and _BV(MUX5)

View File

@ -133,10 +133,6 @@
#define WIDTH 128
#define HEIGHT 64
#define INVERT 2 //< lit/unlit pixel
#define WHITE 1 //< lit pixel
#define BLACK 0 //< unlit pixel
class ArduboyCore
{
public: