aboutsummaryrefslogtreecommitdiffstats
path: root/fw/tests/system/can_tx_systest.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-10-23 19:44:16 -0400
committerSam Anthony <sam@samanthony.xyz>2025-10-23 19:44:16 -0400
commit94cdc9ec4e75fc5e55deb394eda4820ba672e3e4 (patch)
treecf0762794d78324cd508cf5e80b5a13351965d63 /fw/tests/system/can_tx_systest.c
parent04fbfdb4fd6bf4118b88867d852e3b29d139c800 (diff)
downloadcan-gauge-interface-94cdc9ec4e75fc5e55deb394eda4820ba672e3e4.zip
enable CLKOUT
Diffstat (limited to 'fw/tests/system/can_tx_systest.c')
-rw-r--r--fw/tests/system/can_tx_systest.c2
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;
}