diff options
Diffstat (limited to 'fw/tests/system/can_tx_systest.c')
| -rw-r--r-- | fw/tests/system/can_tx_systest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fw/tests/system/can_tx_systest.c b/fw/tests/system/can_tx_systest.c index a770d06..b1dec17 100644 --- a/fw/tests/system/can_tx_systest.c +++ b/fw/tests/system/can_tx_systest.c @@ -49,7 +49,7 @@ main(void) { void __interrupt() isr(void) { if (PIR1bits.TMR1IF) { - if (++ctr == 23u) { // 1s period + if (++ctr == 114u) { // 5s period (void)canTx(&frame); ctr = 0u; } |