Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Garcia <danielgarcia@gmail.com>2014-04-01 05:07:53 +0400
committerDaniel Garcia <danielgarcia@gmail.com>2014-04-01 05:07:53 +0400
commit11b7c1860d1f18cf05b4a3c9c805d7592a0643bb (patch)
tree43512926fd1b7faef39d32bc1f3260951c39d4c8
parent52d4f2562f3e5f92c9b6389cd8b9d45cd00d7acd (diff)
Pulling over, manually, a pull request to pack down the pin class a couple bytes.
-rw-r--r--fastpin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fastpin.h b/fastpin.h
index 3bf22338..56a9ea61 100644
--- a/fastpin.h
+++ b/fastpin.h
@@ -19,10 +19,10 @@ public:
};
class Pin : public Selectable {
- RwReg mPinMask;
- uint8_t mPin;
volatile RwReg *mPort;
volatile RoReg *mInPort;
+ RwReg mPinMask;
+ uint8_t mPin;
void _init() {
mPinMask = digitalPinToBitMask(mPin);