diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-10-23 19:44:16 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-10-23 19:44:16 -0400 |
| commit | 94cdc9ec4e75fc5e55deb394eda4820ba672e3e4 (patch) | |
| tree | cf0762794d78324cd508cf5e80b5a13351965d63 /fw/tests | |
| parent | 04fbfdb4fd6bf4118b88867d852e3b29d139c800 (diff) | |
| download | can-gauge-interface-94cdc9ec4e75fc5e55deb394eda4820ba672e3e4.zip | |
enable CLKOUT
Diffstat (limited to 'fw/tests')
| -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; } |