[Ovmsdev] OVMS Poller module/singleton

Michael Balzer dexter at expeedo.de
Mon Feb 3 15:34:13 HKT 2025


Chris,

your log shows it's not a poller bug, it's a Leaf bug: the Leaf code 
detects the vehicle state change & sets the state metrics correctly, but 
does not request the appropriate poller state change.

This is the moment the vehicle state change was detected:

> 2025-02-02 21:08:14.372 GMT D (338493292) events: 
> Signal(vehicle.charge.stop)

The event is emitted automatically by the vehicle framework when metric 
"v.c.charging" (ms_v_charge_inprogress) changes from true to false.

I don't know the Leaf code, but I think that should directly lead to a 
poller state change, but doesn't.

So you should investigate that bug in the Leaf module.

Regards,
Michael


Am 02.02.25 um 23:30 schrieb Chris Box:
>
> On 2025-02-02 13:44, Michael Balzer wrote:
>
>> That can only happen, if either the Leaf code has a bug with 
>> detecting the correct vehicle state (and with announcing that by some 
>> log / event, would need to be "on" or "charging" according to the 
>> polling scheme)...
>>
>> ...or the new poller has a bug, that leads to keeping or re-entering 
>> a wrong poll state. The latter could affect other vehicles as well.
>> You need to check the poll state transitions. These get logged by the 
>> poller (log tag "vehicle-poll"), which needs to be set to log level 
>> "debug" for this.
>>
>> You should then see log entries "Pollers: Queue SetState" for the 
>> state change request & "Pollers: PollState(<state>[,<bus>])" for the 
>> actual state change.
> Yes, I can see how this would be bad. I'm learning more about the code 
> as we go through this.
> This evening, I enabled vehicle-poll debug while it was charging. As 
> you can see from the log below, there was no SetState after charging 
> stopped. Therefore the poller continued in its current state, and 
> polled every minute. So something is causing it to miss the state 
> transition.
> If you let me know what to do next, I should be able to try that on 
> Monday.
> Thanks
> Chris
> 2025-02-02 21:06:07.482 GMT D (338366402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=1], ticker=2880, wait=0, 
> cnt=0/0
> 2025-02-02 21:06:07.542 GMT D (338366462) vehicle-poll: 
> [1]PollerSend(SRX)[3]: entry at[type=21, pid=2], ticker=2880, wait=0, 
> cnt=1/0
> 2025-02-02 21:06:07.842 GMT D (338366762) vehicle-poll: 
> [1]PollerSend(SRX)[3]: entry at[type=21, pid=6], ticker=2880, wait=0, 
> cnt=2/0
> 2025-02-02 21:06:43.162 GMT I (338402082) housekeeping: 2025-02-02 
> 21:06:42 GMT (RAM: 8b=64080-79564 32b=12560 SPI=3264264-3283048)
> 2025-02-02 21:07:07.482 GMT D (338426402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=1], ticker=2940, wait=0, 
> cnt=0/0
> 2025-02-02 21:07:07.542 GMT D (338426462) vehicle-poll: 
> [1]PollerSend(SRX)[3]: entry at[type=21, pid=2], ticker=2940, wait=0, 
> cnt=1/0
> 2025-02-02 21:07:07.852 GMT D (338426772) vehicle-poll: 
> [1]PollerSend(SRX)[3]: entry at[type=21, pid=6], ticker=2940, wait=0, 
> cnt=2/0
> 2025-02-02 21:08:07.482 GMT D (338486402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=1], ticker=3000, wait=0, 
> cnt=0/0
> 2025-02-02 21:08:07.532 GMT D (338486452) vehicle-poll: 
> [1]PollerSend(SRX)[3]: entry at[type=21, pid=2], ticker=3000, wait=0, 
> cnt=1/0
> 2025-02-02 21:08:07.842 GMT D (338486762) vehicle-poll: 
> [1]PollerSend(SRX)[3]: entry at[type=21, pid=6], ticker=3000, wait=0, 
> cnt=2/0
> 2025-02-02 21:08:07.882 GMT D (338486802) vehicle-poll: 
> [1]PollerSend(SRX)[3]: entry at[type=21, pid=4], ticker=3000, wait=0, 
> cnt=3/0
> 2025-02-02 21:08:13.142 GMT I (338492062) v-nissanleaf: 
> RemoteCommandHandler
> 2025-02-02 21:08:13.142 GMT I (338492062) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.142 GMT I (338492062) ovms-server-v3: Tx notify 
> ovms/notify/info/v-nissanleaf/charge/status=Target charge level 
> reached (52%)
> 2025-02-02 21:08:13.152 GMT D (338492072) events: 
> Signal(notify.info.v-nissanleaf.charge.status)
> 2025-02-02 21:08:13.242 GMT I (338492162) v-nissanleaf: 
> RemoteCommandTimer 24
> 2025-02-02 21:08:13.242 GMT I (338492162) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.242 GMT I (338492162) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.242 GMT I (338492162) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:13.322 GMT I (338492242) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:13.322 GMT I (338492242) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:13.342 GMT I (338492262) v-nissanleaf: 
> RemoteCommandTimer 23
> 2025-02-02 21:08:13.342 GMT I (338492262) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.342 GMT I (338492262) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.342 GMT I (338492262) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:13.362 GMT I (338492282) ovms-server-v3: Message 
> publishing acknowledged (msg_id: 2149)
> 2025-02-02 21:08:13.422 GMT I (338492342) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:13.422 GMT I (338492342) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:13.442 GMT I (338492362) v-nissanleaf: 
> RemoteCommandTimer 22
> 2025-02-02 21:08:13.442 GMT I (338492362) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.442 GMT I (338492362) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.442 GMT I (338492362) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:13.522 GMT I (338492442) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:13.522 GMT I (338492442) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:13.542 GMT I (338492462) v-nissanleaf: 
> RemoteCommandTimer 21
> 2025-02-02 21:08:13.542 GMT I (338492462) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.542 GMT I (338492462) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.542 GMT I (338492462) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:13.622 GMT I (338492542) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:13.622 GMT I (338492542) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:13.642 GMT I (338492562) v-nissanleaf: 
> RemoteCommandTimer 20
> 2025-02-02 21:08:13.642 GMT I (338492562) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.642 GMT I (338492562) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.642 GMT I (338492562) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:13.722 GMT I (338492642) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:13.722 GMT I (338492642) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:13.742 GMT I (338492662) v-nissanleaf: 
> RemoteCommandTimer 19
> 2025-02-02 21:08:13.742 GMT I (338492662) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.742 GMT I (338492662) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.742 GMT I (338492662) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:13.822 GMT I (338492742) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:13.822 GMT I (338492742) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:13.842 GMT I (338492762) v-nissanleaf: 
> RemoteCommandTimer 18
> 2025-02-02 21:08:13.842 GMT I (338492762) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.842 GMT I (338492762) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.842 GMT I (338492762) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:13.922 GMT I (338492842) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:13.922 GMT I (338492842) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:13.942 GMT I (338492862) v-nissanleaf: 
> RemoteCommandTimer 17
> 2025-02-02 21:08:13.942 GMT I (338492862) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:13.942 GMT I (338492862) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:13.942 GMT I (338492862) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.022 GMT I (338492942) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.022 GMT I (338492942) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.042 GMT I (338492962) v-nissanleaf: 
> RemoteCommandTimer 16
> 2025-02-02 21:08:14.042 GMT I (338492962) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.042 GMT I (338492962) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.042 GMT I (338492962) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.122 GMT I (338493042) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.122 GMT I (338493042) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.142 GMT I (338493062) v-nissanleaf: 
> RemoteCommandTimer 15
> 2025-02-02 21:08:14.142 GMT I (338493062) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.142 GMT I (338493062) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.142 GMT I (338493062) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.222 GMT I (338493142) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.222 GMT I (338493142) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.242 GMT I (338493162) v-nissanleaf: 
> RemoteCommandTimer 14
> 2025-02-02 21:08:14.242 GMT I (338493162) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.242 GMT I (338493162) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.242 GMT I (338493162) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.322 GMT I (338493242) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.322 GMT I (338493242) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.342 GMT I (338493262) v-nissanleaf: 
> RemoteCommandTimer 13
> 2025-02-02 21:08:14.342 GMT I (338493262) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.342 GMT I (338493262) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.342 GMT I (338493262) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.372 GMT D (338493292) events: 
> Signal(vehicle.charge.stop)
> 2025-02-02 21:08:14.382 GMT D (338493302) events: 
> Signal(vehicle.charge.state)
> 2025-02-02 21:08:14.382 GMT D (338493302) events: 
> Signal(vehicle.charge.mode)
> 2025-02-02 21:08:14.422 GMT I (338493342) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.422 GMT I (338493342) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.442 GMT I (338493362) v-nissanleaf: 
> RemoteCommandTimer 12
> 2025-02-02 21:08:14.442 GMT I (338493362) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.442 GMT I (338493362) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.442 GMT I (338493362) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.522 GMT I (338493442) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.522 GMT I (338493442) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.542 GMT I (338493462) v-nissanleaf: 
> RemoteCommandTimer 11
> 2025-02-02 21:08:14.542 GMT I (338493462) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.542 GMT I (338493462) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.542 GMT I (338493462) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.622 GMT I (338493542) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.622 GMT I (338493542) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.642 GMT I (338493562) v-nissanleaf: 
> RemoteCommandTimer 10
> 2025-02-02 21:08:14.642 GMT I (338493562) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.642 GMT I (338493562) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.642 GMT I (338493562) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.722 GMT I (338493642) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.722 GMT I (338493642) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.742 GMT I (338493662) v-nissanleaf: 
> RemoteCommandTimer 9
> 2025-02-02 21:08:14.742 GMT I (338493662) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.742 GMT I (338493662) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.742 GMT I (338493662) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.822 GMT I (338493742) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.822 GMT I (338493742) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.842 GMT I (338493762) v-nissanleaf: 
> RemoteCommandTimer 8
> 2025-02-02 21:08:14.842 GMT I (338493762) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.842 GMT I (338493762) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.842 GMT I (338493762) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:14.922 GMT I (338493842) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:14.922 GMT I (338493842) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:14.942 GMT I (338493862) v-nissanleaf: 
> RemoteCommandTimer 7
> 2025-02-02 21:08:14.942 GMT I (338493862) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:14.942 GMT I (338493862) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:14.942 GMT I (338493862) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:15.022 GMT I (338493942) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:15.022 GMT I (338493942) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:15.042 GMT I (338493962) v-nissanleaf: 
> RemoteCommandTimer 6
> 2025-02-02 21:08:15.042 GMT I (338493962) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:15.042 GMT I (338493962) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:15.042 GMT I (338493962) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:15.122 GMT I (338494042) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:15.122 GMT I (338494042) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:15.142 GMT I (338494062) v-nissanleaf: 
> RemoteCommandTimer 5
> 2025-02-02 21:08:15.142 GMT I (338494062) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:15.142 GMT I (338494062) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:15.142 GMT I (338494062) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:15.222 GMT I (338494142) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:15.222 GMT I (338494142) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:15.242 GMT I (338494162) v-nissanleaf: 
> RemoteCommandTimer 4
> 2025-02-02 21:08:15.242 GMT I (338494162) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:15.242 GMT I (338494162) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:15.242 GMT I (338494162) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:15.322 GMT I (338494242) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:15.322 GMT I (338494242) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:15.342 GMT I (338494262) v-nissanleaf: 
> RemoteCommandTimer 3
> 2025-02-02 21:08:15.342 GMT I (338494262) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:15.342 GMT I (338494262) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:15.342 GMT I (338494262) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:15.422 GMT I (338494342) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:15.422 GMT I (338494342) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:15.442 GMT I (338494362) v-nissanleaf: 
> RemoteCommandTimer 2
> 2025-02-02 21:08:15.442 GMT I (338494362) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:15.442 GMT I (338494362) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:15.442 GMT I (338494362) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:15.522 GMT I (338494442) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:15.522 GMT I (338494442) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:15.542 GMT I (338494462) v-nissanleaf: 
> RemoteCommandTimer 1
> 2025-02-02 21:08:15.542 GMT I (338494462) v-nissanleaf: New TCU on CAR Bus
> 2025-02-02 21:08:15.542 GMT I (338494462) v-nissanleaf: Sending Wakeup 
> Frame
> 2025-02-02 21:08:15.542 GMT I (338494462) v-nissanleaf: Stop Charging
> 2025-02-02 21:08:15.622 GMT I (338494542) v-nissanleaf: MITM attempted off
> 2025-02-02 21:08:15.622 GMT I (338494542) v-nissanleaf:  MITM turned off
> 2025-02-02 21:08:15.642 GMT I (338494562) v-nissanleaf: 
> RemoteCommandTimer 0
> 2025-02-02 21:08:22.142 GMT I (338501062) ovms-server-v3: Tx notify 
> ovms/notify/info/charge/stopped=Charge Stopped, Timer On|0.7Mph|Full: 
> 4:35h|Charged: 3.5kWh|SOC: 52.2%|Ideal range: 66M|Est. range: 41M|ODO: 
> 56580.0M|CAC: 57.5Ah|SOH: 73%
> 2025-02-02 21:08:22.152 GMT D (338501072) events: 
> Signal(notify.info.charge.stopped)
> 2025-02-02 21:08:22.372 GMT I (338501292) ovms-server-v3: Message 
> publishing acknowledged (msg_id: 2154)
> 2025-02-02 21:08:23.142 GMT D (338502062) events: 
> Signal(vehicle.charge.12v.stop)
> 2025-02-02 21:08:24.142 GMT I (338503062) powermgmt: No longer 
> charging 12V battery..
> 2025-02-02 21:09:07.482 GMT D (338546402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=1], ticker=3060, wait=0, 
> cnt=0/0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552907 
> rxpkt=49533436 txpkt=7319 errflags=0x8000d9 rxerr=0 txerr=8 rxinval=0 
> rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 errreset=8 txqueue=0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552911 
> rxpkt=49533436 txpkt=7319 errflags=0x8000d9 rxerr=0 txerr=40 rxinval=0 
> rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 errreset=8 txqueue=0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552913 
> rxpkt=49533436 txpkt=7319 errflags=0x8000d9 rxerr=0 txerr=56 rxinval=0 
> rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 errreset=8 txqueue=0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552915 
> rxpkt=49533436 txpkt=7319 errflags=0x8000d9 rxerr=0 txerr=72 rxinval=0 
> rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 errreset=8 txqueue=0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552916 
> rxpkt=49533436 txpkt=7319 errflags=0x8000d9 rxerr=0 txerr=80 rxinval=0 
> rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 errreset=8 txqueue=0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552918 
> rxpkt=49533436 txpkt=7319 errflags=0x8440d9 rxerr=0 txerr=96 rxinval=0 
> rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 errreset=8 txqueue=0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552920 
> rxpkt=49533436 txpkt=7319 errflags=0x8040d9 rxerr=0 txerr=112 
> rxinval=0 rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 
> errreset=8 txqueue=0
> 2025-02-02 21:09:07.482 GMT E (338546402) can: can1: intr=49552923 
> rxpkt=49533436 txpkt=7319 errflags=0xa040d9 rxerr=0 txerr=128 
> rxinval=0 rxovr=6 txovr=0 txdelay=309 txfail=8283 wdgreset=0 
> errreset=8 txqueue=0
> 2025-02-02 21:09:08.482 GMT D (338547402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=2], ticker=3060, wait=0, 
> cnt=0/0
> 2025-02-02 21:09:09.482 GMT D (338548402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=6], ticker=3060, wait=0, 
> cnt=0/0
> 2025-02-02 21:10:10.482 GMT D (338609402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=1], ticker=3120, wait=0, 
> cnt=0/0
> 2025-02-02 21:10:11.482 GMT D (338610402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=2], ticker=3120, wait=0, 
> cnt=0/0
> 2025-02-02 21:10:12.482 GMT D (338611402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=6], ticker=3120, wait=0, 
> cnt=0/0
> 2025-02-02 21:11:13.482 GMT D (338672402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=1], ticker=3180, wait=0, 
> cnt=0/0
> 2025-02-02 21:11:14.482 GMT D (338673402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=2], ticker=3180, wait=0, 
> cnt=0/0
> 2025-02-02 21:11:15.482 GMT D (338674402) vehicle-poll: 
> [1]PollerSend(PRI)[3]: entry at[type=21, pid=6], ticker=3180, wait=0, 
> cnt=0/0
>
>

-- 
Michael Balzer * Am Rahmen 5 * D-58313 Herdecke
Fon 02330 9104094 * Handy 0176 20698926

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openvehicles.com/pipermail/ovmsdev/attachments/20250203/e1567e77/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: OpenPGP_signature.asc
Type: application/pgp-signature
Size: 203 bytes
Desc: OpenPGP digital signature
URL: <http://lists.openvehicles.com/pipermail/ovmsdev/attachments/20250203/e1567e77/attachment-0001.sig>


More information about the OvmsDev mailing list