diff options
Diffstat (limited to 'fw/tests/system/dac_systest.c')
| -rw-r--r-- | fw/tests/system/dac_systest.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/fw/tests/system/dac_systest.c b/fw/tests/system/dac_systest.c index 8653f96..9497e3b 100644 --- a/fw/tests/system/dac_systest.c +++ b/fw/tests/system/dac_systest.c @@ -19,19 +19,3 @@ main(void) { } } - -void -__interrupt() isr(void) { - static U8 ctr = 0u; - static U16 level = {0, 0}; - - if (TMR1IF) { - ctr++; - if (ctr == 23u) { // 1s period - ctr = 0u; - dacSet1a(level); - addU16(&level, 50u); - } - TMR1IF = 0; - } -} |