aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/HardwareTimer.h
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2010-09-05 18:34:44 -0400
committerbnewbold <bnewbold@robocracy.org>2010-09-05 22:58:36 -0400
commitb6e3624a705b36b15e7f4c0637d133c7dab059bd (patch)
tree700df3f574cb1ea64faf719de4bd6607a1addc6e /wirish/HardwareTimer.h
parent16b4c1fce5b1023cfb8210f9c12f09c71d4a755d (diff)
downloadlibrambutan-b6e3624a705b36b15e7f4c0637d133c7dab059bd.tar.gz
librambutan-b6e3624a705b36b15e7f4c0637d133c7dab059bd.zip
timer refactor (c, not c++)
also removed an old ASSERT()
Diffstat (limited to 'wirish/HardwareTimer.h')
-rw-r--r--wirish/HardwareTimer.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/wirish/HardwareTimer.h b/wirish/HardwareTimer.h
index 3f986e4..aa48718 100644
--- a/wirish/HardwareTimer.h
+++ b/wirish/HardwareTimer.h
@@ -62,16 +62,6 @@ class HardwareTimer {
void detachCompare2Interrupt(void);
void detachCompare3Interrupt(void);
void detachCompare4Interrupt(void);
- #if NR_TIMERS >= 8
- void setChannel5Mode(uint8 mode);
- void setChannel8Mode(uint8 mode);
- void setCompare5(uint16 val); // truncates to overflow
- void setCompare8(uint16 val); // truncates to overflow
- void attachCompare5Interrupt(voidFuncPtr handler);
- void attachCompare8Interrupt(voidFuncPtr handler);
- void detachCompare5Interrupt(void);
- void detachCompare8Interrupt(void);
- #endif
};
extern HardwareTimer Timer1;