summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-03-17 17:02:08 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-03-17 17:02:08 +0100
commit04045e50f734d2dc2533facab5b91b9ad444cb54 (patch)
tree1c198c5bb2813a0915f4f29239ba003a73918b84
parentcada20fe245628f1be7ccc57a3a41e828ec13c66 (diff)
system.cc documentation
-rw-r--r--src/system.cc31
1 files changed, 17 insertions, 14 deletions
diff --git a/src/system.cc b/src/system.cc
index 7e43966..e7c12ff 100644
--- a/src/system.cc
+++ b/src/system.cc
@@ -105,7 +105,6 @@ void System::loadPattern(uint8_t anim_no)
}
}
-// ! This function has not been tested yet
void System::receive(void)
{
static uint8_t rx_pos = 0;
@@ -223,21 +222,18 @@ void System::receive(void)
void System::loop()
{
- // both buttons are pressed
+ // First, check for a shutdown request (long press on both buttons)
if ((PINC & (_BV(PC3) | _BV(PC7))) == 0) {
- // naptime!
- // But not before both buttons have been pressed for
- // SHUTDOWN_THRESHOLD * 0.256 ms. And then, not before both have
- // been released, because otherwise we'd go te sleep when
- // they're pressed and wake up when they're released, which
- // isn't really the point here.
-
+ /*
+ * Naptime!
+ * (But not before both buttons have been pressed for at least
+ * SHUTDOWN_THRESHOLD * 0.256 ms)
+ */
if (want_shutdown < SHUTDOWN_THRESHOLD) {
want_shutdown++;
}
else {
shutdown();
-
want_shutdown = 0;
}
}
@@ -245,14 +241,18 @@ void System::loop()
want_shutdown = 0;
}
- // TODO refactor the blocks above and below into one
-
if ((PINC & _BV(PC3)) == 0) {
btnMask = (ButtonMask)(btnMask | BUTTON_RIGHT);
}
if ((PINC & _BV(PC7)) == 0) {
btnMask = (ButtonMask)(btnMask | BUTTON_LEFT);
}
+
+ /*
+ * Only handle button presses when they are released to avoid
+ * double actions, such as switching to the next/previous pattern
+ * when the user actually wants to press the shutdown combo.
+ */
if ((PINC & (_BV(PC3) | _BV(PC7))) == (_BV(PC3) | _BV(PC7))) {
if (btnMask == BUTTON_RIGHT) {
current_anim_no = (current_anim_no + 1) % storage.numPatterns();
@@ -314,7 +314,10 @@ void System::shutdown()
loadPattern(current_anim_no);
display.enable();
- // wait for wakeup button(s) to be released
+ /*
+ * Wait for wakeup button(s) to be released to avoid accidentally
+ * going back to sleep again or switching the active pattern.
+ */
while (!((PINC & _BV(PC3)) && (PINC & _BV(PC7))))
display.update();
@@ -340,7 +343,7 @@ void System::handleTimeout()
ISR(PCINT1_vect)
{
- // we use PCINT1 for wakeup, so we need an (in this case empty) ISR for it
+ // we use PCINT1 for wakeup, so we need an (empty) ISR for it
}
ISR(WDT_vect)