[Ovmsdev] Integration of Simcom 7670 and changes to Simcom Powering
Michael Balzer
dexter at expeedo.de
Sun Mar 30 01:42:23 HKT 2025
Christian,
the GSM/PPP part now works smoothly with all standard situations tested
so far.
But the GPS part doesn't work. It looks like the NMEA sentences are
received in the MUX channel, but not forwarded to the NMEA module.
V (794230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (794230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
These should be the NMEA sentences, but there are no corresponding log
entries from gsm-nmea.
New logs attached.
Regards,
Michael
Am 29.03.25 um 15:13 schrieb Info via OvmsDev:
> Hi Michael,
> thanks for testing.
>
> The results look odd, so I went back to the schematics of OVMS modules
> and realized, that I was mistaken. The PWRKEY pin is actually inverted
> in the modules as well. This definetly explains the strange behaviour.
>
> I changed now the logic in simcom_powering.h and the inverted PWRKEY
> level is now the default.
>
> Could you please run another test?
>
> Best regards
> Christian
>
> Am 29.03.2025 um 09:25 schrieb Michael Balzer via OvmsDev:
>> Christian,
>>
>> well done on the 7670 support :-)
>>
>> I've just done some first tests of your branch on the 7600, which
>> turned up some issues. Logs attached:
>>
>> * Cold boot failed in 2 of 3 test boots, with the driver getting
>> stuck in a loop (poweredon / identify / muxstart)
>> * Regular shutdown fails to power down the modem in time -- for a
>> deep sleep phase, this would mean the modem will remain powered on
>> * After a crash, the modem driver gets somehow stuck in PowerOffOn
>> state
>>
>> It seems the test for reaction ("AT") sometimes gets skipped, even
>> though the modem isn't ready yet.
>>
>> On the failed cold boot log, you can see this at the end:
>>
>> *I (389178) cellular-modem-auto: Power Cycle*
>> I (389178) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
>> D (389178) events: Signal(system.modem.poweringon)
>> D (389188) events: Signal(egpio.output.0.low)
>> D (391678) events: Signal(egpio.output.0.high)
>> D (396678) events: Signal(egpio.output.0.low)
>> D (396878) events: Signal(egpio.output.0.high)
>> *I (396878) cellular: State: Enter Identify state
>> D (396978) cellular: tx-cmd: AT+CGMM*
>> D (396978) cellular: tx-cmd: AT+CGMM
>> D (396978) cellular: tx-cmd: AT+CGMM
>> D (396978) cellular: tx-cmd: AT+CGMM
>> D (396978) cellular: tx-cmd: AT+CGMM
>> D (396978) cellular: tx-cmd: AT+CGMM
>> D (396978) cellular: tx-cmd: AT+CGMM
>> I (397008) cellular: Identified cellular modem: SIM7600/Experimental
>> support for SIMCOM SIM7600
>> D (397008) cellular: Remove old 'auto' modem driver
>> I (397008) cellular: Set modem driver to 'SIM7600'
>> *I (397008) cellular: State: Enter PoweredOn state*
>> D (397008) events: Signal(system.modem.installed)
>> D (397008) events: Signal(system.modem.poweredon)
>> D (406178) cellular: tx-cmd:
>> AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
>> D (408178) cellular: tx-cmd: AT+CGMR;+ICCID
>> D (416178) cellular: tx-cmd: AT+CMUX=0;+CATR=6
>> D (434808) cellular: mux-rx-line #0 (2/46): OK
>> *D (434808) cellular: mux-rx-line #0 (3/39): RDY*
>> D (434808) cellular: mux-rx-line #0 (12/23): +CPIN: READY
>> D (434808) cellular: mux-rx-line #0 (8/11): SMS DONE
>> D (434808) cellular: mux-rx-line #0 (7/0): PB DONE
>> I (434808) cellular: State: Enter MuxStart state
>> D (434808) events: Signal(system.modem.muxstart)
>>
>>
>> Regards,
>> Michael
>>
>>
>> Am 26.03.25 um 13:13 schrieb Info Zeitnitz via OvmsDev:
>>> Dear all,
>>> I finished to integrate the Simcom 7670 modem into the OVMS code.
>>> See
>>> https://github.com/zbchristian/Open-Vehicle-Monitoring-System-3.git
>>> branch update_cellular.
>>>
>>> Modem Powering
>>> ===============
>>> I had problems to get the 7670 working with the current code. The
>>> modem was stuck in a power cycle loop.
>>>
>>> I checked the Simcom documentation for the 4 models 5360, 7000
>>> series, 7600, 7670 and the powering procedure via the PWRKEY pin is
>>> the same, but with different on/off timing. Depending on the
>>> hardware, the PWRKEY can be inverted as well. This is the case for
>>> my Lilygo TCall board, but I think not for the OVMS HW versions. At
>>> least version 3.1 connects the corresponding MAX7317 pin directly to
>>> the modem.
>>>
>>> Assuming, that all hardware versions use the PWRKEY procedure for
>>> powering, I streamlined the code and moved the corresponding
>>> functions into separate files (simcom_powering.cpp and
>>> simcom_powering.h). This avoids the duplication of the code.
>>>
>>> All this leads to substantial changes in ovms_cellular and
>>> ovms_cellular_modem_driver as well.
>>>
>>> The code works now perfectly for the 7670, but testing is required
>>> for all other models.
>>> If my assumptions about the OVMS HW versions are not correct, or the
>>> modems do not work as documented, some modifications might be needed.
>>>
>>> GNSS Location
>>> ============
>>> The 7670 no longer accepts the currently used AT commands to obtain
>>> the location as a GRMC sentence. So, I added code to the new 7670
>>> class to request the location via the AT+CGNSSINFO command.
>>> Since this has to be send explicitly again and again, I implemented
>>> a corresponding call in the StatusPoller of the 7670.
>>> All the NMEA related code has been adapted to handle the
>>> corresponding CGNSSINFO response.
>>>
>>>
>>> In conclusion, before doing a pull request, it would make sense that
>>> the code is tested with the other hardware and modem models.
>>>
>>> So, tell me what you think and if the general strategy of the mods
>>> make sense to you.
>>>
>>> Best regards
>>> Christian
>>>
>>>
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> OvmsDev mailing list
>>> OvmsDev at lists.openvehicles.com
>>> http://lists.openvehicles.com/mailman/listinfo/ovmsdev
>>
>> --
>> Michael Balzer * Am Rahmen 5 * D-58313 Herdecke
>> Fon 02330 9104094 * Handy 0176 20698926
>>
>> _______________________________________________
>> OvmsDev mailing list
>> OvmsDev at lists.openvehicles.com
>> http://lists.openvehicles.com/mailman/listinfo/ovmsdev
>
>
> _______________________________________________
> OvmsDev mailing list
> OvmsDev at lists.openvehicles.com
> http://lists.openvehicles.com/mailman/listinfo/ovmsdev
--
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/20250329/9d959787/attachment-0001.htm>
-------------- next part --------------
I (1253) psram: This chip is ESP32-D0WD
I (1253) spiram: Found 64MBit SPI RAM device
I (1253) spiram: SPI RAM mode: flash 40m sram 40m
I (1256) spiram: PSRAM initialized, cache is in low/high (2-core) mode.
I (1264) cpu_start: Pro cpu up.
I (1268) cpu_start: Application information:
I (1272) cpu_start: Project name: ovms3
I (1277) cpu_start: App version: 3.3.004-427-g0dfb100b
I (1284) cpu_start: Compile time: Mar 29 2025 17:49:58
I (1290) cpu_start: ELF file SHA256: 75c71ac8d6058b7f...
I (1296) cpu_start: ESP-IDF: v3.3.4-851-gfa4f07fb3b
I (1302) cpu_start: Starting app cpu, entry point is 0x400818e0
I (0) cpu_start: App cpu up.
I (2180) spiram: SPI SRAM memory test OK
I (2180) heap_init: Initializing. RAM available for dynamic allocation:
I (2181) heap_init: At 3FFAE6E0 len 00001920 (6 KiB): DRAM
I (2187) heap_init: At 3FFC1F80 len 0001E080 (120 KiB): DRAM
I (2193) heap_init: At 3FFE0440 len 00003AE0 (14 KiB): D/IRAM
I (2199) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM
I (2206) heap_init: At 4009CDD4 len 0000322C (12 KiB): IRAM
I (2212) cpu_start: Pro cpu start user code
I (2217) spiram: Adding pool of 4096K of external SPI memory to heap allocator
I (44) ovms_main: Set default logging level for * to INFO
I (44) ovms_main: WATCHDOG already initialized...
I (45) ovms-duktape: Initialising DUKTAPE Registry (1000)
I (51) command: Initialising COMMAND (1010)
I (57) command: Expanding DUKTAPE javascript engine
I (61) boot: Initialising BOOT (1100)
I (66) boot: Power cycle reset detected
I (71) events: Initialising EVENTS (1200)
I (75) config: Initialising CONFIG (1400)
I (81) time: Initialising TIME (1500)
I (84) script: Initialising SCRIPTS (1600)
I (89) ovms-duk-http: Installing DUKTAPE HTTP (1710)
I (94) ovms-duk-util: Installing DUKTAPE Utilities (1710)
I (100) ovms-duk-vfs: Installing DUKTAPE VFS (1710)
I (106) metrics: Initialising METRICS (1810)
I (112) metrics: Expanding DUKTAPE javascript engine
I (117) metrics: Persistent metrics serial 1 using 820 bytes, 0/100 slots used
I (139) notify: Initialising NOTIFICATIONS (1820)
I (141) notify: Registered notification type info
I (141) notify: Registered notification type error
I (145) notify: Registered notification type alert
I (150) notify: Registered notification type data
I (156) notify: Registered notification type stream
I (161) notify: Expanding DUKTAPE javascript engine
I (167) location: Initialising LOCATIONS (1900)
I (175) location: Expanding DUKTAPE javascript engine
I (178) vehicle: Initialising VEHICLE Factory (2000)
I (189) tls: Initialising TLS (3000)
I (190) pcp: Initialising POWER (4000)
I (192) max7317: Initialising MAX7317 EGPIO (4200)
I (198) sdcard: Initialising SD CARD (4400)
I (203) ota: Initialising OTA (4400)
I (209) canformat: Initialising CAN Format Factory (4500)
I (213) canformat-cs11: Registering CAN Format: CS11 (4505)
I (219) canformat-crtd: Registering CAN Format: CRTD (4505)
I (225) canformat-gvret: Registering CAN Format: GVRET (4505)
I (232) canformat-lawicel: Registering CAN Format: LAWICEL (4505)
I (238) canformat-panda: Registering CAN Format: PANDA (4505)
I (245) canformat-pcap: Registering CAN Format: PCAP (4505)
I (251) canformat-raw: Registering CAN Format: RAW (4505)
I (257) can: Initialising CAN (4510)
I (269) dbc-app: Initialising DBC (4520)
I (272) canlog: Initialising CAN logging (4550)
I (273) canlog-monitor: Initialising CAN logging to MONITOR (4560)
I (279) canlog-tcpclient: Initialising CAN logging as TCP client (4560)
I (288) canlog-tcpserver: Initialising CAN logging as TCP server (4560)
I (296) canlog-udpclient: Initialising CAN logging as UDP client (4560)
I (301) canlog-udpserver: Initialising CAN logging as UDP server (4560)
I (311) canlog-vfs: Initialising CAN logging to VFS (4560)
I (314) canplay: Initialising CAN play framework (4570)
I (320) canplay-vfs: Initialising CAN playing from VFS (4580)
I (327) cellular: Initialising CELLULAR (4600)
I (333) cellular-modem-factory: Initialising CELLULAR MODEM Factory (4601)
I (338) cellular-modem-auto: Registering auto-detect modem driver (4650)
I (346) SIM5360: Registering SIM5360 modem driver (4650)
I (352) SIM7000: Registering SIM7000 modem driver (4650)
I (358) SIM7600: Registering SIM7600 modem driver (4650)
I (364) SIM7670: Registering Simcom A7670E modem driver (4660)
I (370) tpms: Initialising TPMS (4700)
I (375) test: Initialising TEST (5000)
I (380) module: Initialising MODULE (5100)
I (385) vfs: Initialising VFS (5200)
I (389) ovms-server: Initialising OVMS Server (6000)
I (394) ovms-server-v2: Initialising OVMS V2 Server (6100)
I (401) ovms-server-v3: Initialising OVMS V3 Server (6200)
I (407) vehicle-poll: Initialising Poller (7000)
I (414) obd2ecu: Initialising OBD2ECU (7000)
I (418) canopen: Initialising CANopen (7000)
I (426) pluginstore: Initialising PLUGINS (7100)
I (428) esp32wifi: Initialising ESP32WIFI (8000)
I (433) ovms-mdns: Initialising MDNS (8100)
I (437) webserver: Initialising WEBSERVER (8200)
I (445) ssh: Initialising SSH (8300)
I (447) powermgmt: Initialising POWERMGMT (8500)
I (452) re: Initialising RE Tools (8800)
I (459) pushover: Initialising Pushover client (8800)
I (464) netmanager: Initialising NETMANAGER (8999)
I (471) v-zombie-vcu: Registering Vehicle: ZombieVerter VCU (9000)
I (474) v-zeva: Registering Vehicle: ZEVA (9000)
I (479) v-vweup: Registering Vehicle: VW e-Up (9000)
I (485) v-voltampera: Registering Vehicle: Chevrolet Volt/Ampera (9000)
I (492) v-track: Registering Vehicle: TRACK (9000)
I (498) v-toyotarav4ev: Registering Vehicle: Toyota RAV4 EV (9000)
I (505) v-thinkcity: Registering Vehicle: THINK CITY (9000)
I (511) v-teslaroadster: Registering Vehicle: Tesla Roadster (9000)
I (518) v-teslamodels: Registering Vehicle: Tesla Model S (9000)
I (525) v-teslamodel3: Registering Vehicle: Tesla Model 3 (9000)
I (531) v-smarteq: Registering Vehicle: SMART EQ (9000)
I (537) v-smarted: Registering Vehicle: SMART ED (9000)
I (543) v-zoe-ph2-obd: Registering Vehicle: Renault Zoe Ph2 (OBD) (9000)
I (550) v-zoe: Registering Vehicle: Renault Zoe/Kangoo (9000)
I (557) v-twizy: Registering Vehicle: Renault Twizy (9000)
I (563) v-obdii: Registering Vehicle: OBDII (9000)
I (568) v-none: Registering Vehicle: NONE (9000)
I (574) v-nissanleaf: Registering Vehicle: Nissan Leaf (9000)
I (580) v-mitsubishi: Registering Vehicle: Mitsubishi iMiEV, Citroen C-Zero, Peugeot iOn (9000)
I (590) v-minise: Registering Vehicle: Mini Cooper SE (9000)
I (596) v-mgev4: Registering Vehicle: MG4 (9000)
I (601) v-mgev: Registering Vehicle: MG5 (9000)
I (606) v-mgev: Registering Vehicle: MG ZS EV (UK/EU) (9000)
I (613) v-mgev: Registering Vehicle: MG ZS EV (AU/TH) (9000)
I (619) v-mgev: Registering Vehicle: MG ZS EV (2023-)
I (625) v-mbb250e: Registering Vehicle: MERCEDESB250E (9000)
I (631) v-maxe6: Registering Vehicle: Maxus Euniq 6 (9000)
I (637) v-maxe56: Registering Vehicle: Maxus eDeliver3 (9000)
I (644) v-maxed3: Registering Vehicle: Maxus eDeliver3 (9000)
I (650) v-maple60s: Registering Vehicle: Maple 60S (9000)
I (656) v-kiasoulev: Registering Vehicle: Kia Soul EV (9000)
I (663) v-kianiroev: Registering Vehicle: Kia Niro / Hyundai Kona EV (9000)
I (670) v-jaguaripace: Registering Vehicle: Jaguar Ipace (9000)
I (677) v-hyundaivfl: Registering Vehicle: Hyundai Ioniq vFL (9000)
I (684) v-ioniq5: Registering Vehicle: Hyundai Ioniq 5 EV/KIA EV6 (9000)
I (691) v-fiat500e: Registering Vehicle: FIAT 500e (9000)
I (697) v-energica: Registering Vehicle: Energica (9000)
I (703) v-demo: Registering Vehicle: DEMO (9000)
I (709) v-dbc: Registering Vehicle: DBC based vehicle (9000)
I (715) v-chevroletc6corvette: Registering Vehicle: Chevrolet C6 Corvette (9000)
I (723) v-cadillacc2cts: Registering Vehicle: Cadillac 2nd gen CTS (9000)
I (730) v-atto3: Registering Vehicle: BYD Atto3 (9000)
I (736) v-boltev: Registering Vehicle: Bolt EV (9000)
I (742) v-bmwi3: Registering Vehicle: BMW i3 (9000)
I (747) version: Initialising Versioning (9900)
I (758) cpu_start: Starting scheduler on PRO CPU.
I (0) cpu_start: Starting scheduler on APP CPU.
I (30) ovms-duktape: Duktape: Scripting task is running
I (838) ovms_main: Executing on CPU core 0
I (838) ovms_main: Mounting CONFIG...
I (958) ovms_main: Configure logging...
W (968) command: OpenLogfile: cannot open '/sd/logs/log', will retry on SD mount
I (968) ovms_main: Registering default configs...
I (968) location: UpdateParkPosition: vehicle is parking @0.000000,0.000000 gpslock=0 satcount=0 hdop=0.0 sq=0 invalid=1
I (968) ovms_main: Starting HOUSEKEEPING...
I (988) housekeeping: Initialising HOUSEKEEPING Framework...
I (988) tls: Built trusted CA cache (5 entries, 8101 bytes)
I (2158) pluginstore: Loading enabled plugins (2)
I (2158) pluginstore: Load retools web page /plugins/retools
I (2158) pluginstore: Loading enabled plugins (3)
D (2168) events: Signal(housekeeping.init)
I (2168) housekeeping: Executing on CPU core 1
I (2168) housekeeping: reset_reason: cpu0=1, cpu1=14
I (2178) housekeeping: Starting PERIPHERALS...
I (2178) peripherals: Initialising OVMS Peripherals...
I (2188) peripherals: TCP/IP Adaptor
I (2188) peripherals: ESP32 system
I (2198) peripherals: SPI bus
I (2198) peripherals: MAX7317 I/O Expander
I (2208) peripherals: ESP32 CAN
I (2208) peripherals: ESP32 WIFI
I (2218) peripherals: ESP32 ADC
I (2218) peripherals: MCP2515 CAN 1/2
I (2218) mcp2515: can2: SetPowerMode off
I (2308) peripherals: MCP2515 CAN 2/2
I (2308) mcp2515: can3: SetPowerMode off
I (2388) peripherals: SD CARD
I (2388) peripherals: CELLULAR MODEM
I (2388) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (2398) gpio: GPIO[4]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
V (2408) cellular: Starting modem task
I (2408) uart: queue free spaces: 50
I (2408) ext12v: Powering off external 12V devices
I (2418) housekeeping: Auto init max7317 (free: 160936 bytes)
I (2428) housekeeping: Auto init ext12v (free: 160936 bytes)
I (2428) housekeeping: Auto init dbc (free: 160936 bytes)
I (2438) housekeeping: Auto init wifi (free: 160936 bytes)
I (2438) housekeeping: Auto init modem (free: 160936 bytes)
I (2448) housekeeping: Auto init Pollers (free: 160936 bytes)
I (2448) cellular: Set modem driver to 'auto'
I (2458) housekeeping: Auto init vehicle (free: 160936 bytes)
I (2458) cellular: State: Enter PowerOffOn state
I (2468) v-none: Generic NONE vehicle module
I (2468) cellular-modem-auto: Power Cycle
I (2478) housekeeping: Auto init obd2ecu (free: 149136 bytes)
I (2478) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
I (2488) housekeeping: Auto init server v2 (free: 149136 bytes)
I (2498) housekeeping: Auto init server v3 (free: 149136 bytes)
I (2508) housekeeping: Auto init javascript (free: 149136 bytes)
I (2518) housekeeping: Auto init done (free: 149096 bytes)
I (2518) housekeeping: Starting USB console...
I (2528) uart: queue free spaces: 100
D (2538) events: Signal(egpio.output.1.low)
D (2538) events: Signal(power.cellular.on)
D (2538) events: Signal(system.modem.stop)
D (2548) events: Signal(vehicle.type.set)
D (2548) events: Signal(egpio.output.0.low)
D (2548) events: Signal(egpio.output.0.high)
D (2558) events: Signal(system.start)
I (2558) ovms-mdns: Starting MDNS
Welcome to the Open Vehicle Monitoring System (OVMS) - Async Console
I (2568) ovms-duktape: Duktape: Creating heap (size: 524288 bytes)
Firmware: 3.3.004-427-g0dfb100b/factory/edge
Hardware: OVMS WIFI BLE BT cores=2 rev=ESP32/3
OVMS> I (2708) ovms-duktape: Duktape: Initialising module system
I (2878) pluginstore: Loading enabled plugins (1)
OVMS> D (4178) events: Signal(vehicle.aux.12v.low)
OVMS> D (4998) events: Signal(egpio.output.0.low)
OVMS> I (7178) sdcard: SD CARD has been inserted
OVMS> I (7398) sdcard: mount done
D (7398) events: Signal(sd.insert)
OVMS> D (9178) events: Signal(sd.mounted)
I (9198) command: OpenLogfile: now logging to file '/sd/logs/log'
OVMS> D (9998) events: Signal(egpio.output.0.high)
D (10198) events: Signal(egpio.output.0.low)
D (10198) cellular: State timeout PowerOffOn => PoweringOn
I (10198) cellular: State: Enter PoweringOn state
I (10198) cellular-modem-auto: Power Cycle
I (10198) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
D (10198) events: Signal(system.modem.poweringon)
D (10198) events: Signal(egpio.output.0.high)
OVMS> D (12698) events: Signal(egpio.output.0.low)
OVMS> D (17698) events: Signal(egpio.output.0.high)
D (17898) events: Signal(egpio.output.0.low)
D (17898) cellular: tx-cmd: AT
D (17898) cellular: tx-cmd: AT
D (17898) cellular: tx-cmd: AT
I (17898) cellular: State: Enter Identify state
D (17898) cellular: tx-cmd: AT+CGMM
D (17898) cellular: tx-cmd: AT+CGMM
D (17898) cellular: tx-cmd: AT+CGMM
OVMS> D (18178) cellular: tx-cmd: AT+CGMM
I (18188) cellular: Identified cellular modem: SIM7600/Experimental support for SIMCOM SIM7600
D (18188) cellular: Remove old 'auto' modem driver
I (18188) cellular: Set modem driver to 'SIM7600'
I (18188) cellular: State: Enter PoweredOn state
D (18188) events: Signal(system.modem.installed)
D (18198) events: Signal(system.modem.poweredon)
OVMS> D (28178) cellular: tx-cmd: AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (28208) cellular: mux-rx-line #0 (2/120): OK
D (28208) cellular: mux-rx-line #0 (124/0): AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (28208) cellular: mux-rx-line #0 (12/20): +CPIN: READY
D (28208) cellular: mux-rx-line #0 (10/6): +CSQ: 20,0
D (28208) cellular: Signal Quality is: 20 (-73 dBm)
D (28208) cellular: mux-rx-line #0 (2/0): OK
OVMS> D (30178) cellular: tx-cmd: AT+CGMR;+ICCID
D (30188) cellular: mux-rx-line #0 (26/37): +CGMR: LE20B03SIM7600M21-A
D (30188) cellular: mux-rx-line #0 (27/6): +ICCID: 8944500408175816389
D (30198) cellular: mux-rx-line #0 (2/0): OK
OVMS> D (38178) cellular: tx-cmd: AT+CMUX=0;+CATR=6
D (38188) cellular: mux-rx-line #0 (2/0): OK
I (38188) cellular: State: Enter MuxStart state
V (38188) cellular: Starting MUX
D (38188) events: Signal(system.modem.muxstart)
OVMS> D (39178) cellular: State transition MuxStart => NetWait
I (39178) cellular: State: Enter NetWait state
V (39178) cellular: Starting NMEA
D (39178) cellular: mux-tx #1: AT+CGPS=0
D (39178) events: Signal(system.modem.netwait)
OVMS> D (41178) cellular: mux-tx #1: AT+CGPSNMEA=258
D (41198) cellular: mux-tx #1: AT+CGPSINFOCFG=5,258
D (41218) cellular: mux-tx #1: AT+CGPS=1,1
D (41218) events: Signal(system.modem.gpsstart)
D (41218) cellular: mux-rx-line #1 (2/0): OK
D (41218) cellular: mux-rx-line #1 (2/0): OK
D (41218) cellular: mux-rx-line #1 (2/0): OK
D (41228) cellular: mux-rx-line #1 (2/0): OK
OVMS> D (48528) cellular: mux-rx-line #3 (11/0): +CSQ: 20,99
OVMS> D (49178) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (49198) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
I (49198) cellular: Network Registration status: RegisteredRoaming
D (49198) cellular: mux-rx-line #3 (11/69): +CGREG: 1,2
D (49198) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (49198) cellular: mux-rx-line #3 (29/21): +CCLK: "80/01/06,01:00:51+04"
D (49198) cellular: mux-rx-line #3 (11/6): +CSQ: 20,99
D (49198) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (50178) cellular: mux-tx #3: AT+CPSI?
D (50178) cellular: State transition NetWait => NetStart
I (50178) cellular: State: Enter NetStart state
D (50178) events: Signal(system.modem.netstart)
D (50198) cellular: mux-rx-line #3 (60/0): +CPSI: GSM,Online,262-02,0x011a,17601,3 EGSM 900,-74,0,33-33
I (50198) cellular: Network Mode: GSM,Online
D (50198) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (50728) cellular: mux-rx-line #3 (9/0): +CGREG: 5
D (50908) cellular: mux-rx-line #3 (26/0): +CTZV: 4,25/03/29,16:54:09
OVMS> D (51178) cellular: Netstart AT+CGDCONT=1,"IP","hologram";+CGDATA="PPP",1
D (51228) cellular: mux-rx-line #2 (14/0): CONNECT 115200
I (51228) cellular: PPP Connection is ready to start
OVMS> D (52178) cellular: State transition NetStart => NetMode
I (52178) cellular: State: Enter NetMode state
V (52178) cellular: Launching PPP
V (52178) cellular: Starting PPP
I (52178) gsm-ppp: Initialising...
D (52188) events: Signal(system.modem.netmode)
OVMS> I (52758) gsm-ppp: StatusCallBack: None
I (52758) gsm-ppp: status_cb: Connected
I (52758) gsm-ppp: our_ipaddr = 10.170.195.13
I (52758) gsm-ppp: his_ipaddr = 10.64.64.64
I (52758) gsm-ppp: netmask = 255.255.255.255
I (52758) gsm-ppp: DNS#0 = 8.8.8.8
I (52758) gsm-ppp: DNS#1 = 8.8.4.4
I (52758) gsm-ppp: our6_ipaddr = ::
D (52768) events: Signal(network.interface.up)
D (52768) events: Signal(system.modem.gotip)
D (52768) netmanager: Saved DNS#0 8.8.8.8
D (52768) netmanager: Saved DNS#1 8.8.4.4
D (52768) netmanager: Saved DNS#2 0.0.0.0
I (52768) netmanager: Interface priority is pp1 (10.170.195.13/255.255.255.255 gateway 10.64.64.64)
I (52768) netmanager: Set DNS#2 0.0.0.0
I (52768) netmanager: MODEM up (with WIFI client down): starting network with MODEM
D (52768) events: Signal(network.modem.up)
D (52778) events: Signal(network.up)
D (52778) events: Signal(network.interface.change)
D (52788) netmanager: MongooseTask starting
D (52788) events: Signal(network.mgr.init)
I (52808) ssh: Launching SSH Server
OVMS> D (54528) cellular: mux-rx-line #3 (10/0): +CSQ: 20,0
OVMS> D (56668) cellular: mux-rx-line #3 (10/0): +CSQ: 99,0
D (56668) cellular: Signal Quality is: 99 (0 dBm)
OVMS> D (57088) cellular: mux-rx-line #3 (10/0): +CSQ: 19,0
D (57088) cellular: Signal Quality is: 19 (-75 dBm)
OVMS> ena enable d
Password:
Secure mode
OVMS# server v2 start D (82178) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (82198) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (82198) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (82198) cellular: mux-rx-line #3 (11/53): +CEREG: 1,4
D (82198) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,17:54:40+04"
D (82198) cellular: mux-rx-line #3 (10/6): +CSQ: 19,0
D (82198) cellular: mux-rx-line #3 (2/0): OK
OVMS# server v2 start
Launching OVMS Server V2 connection (oscv2)
OVMS# I (82438) ovms-server-v2: OVMS Server V2 registered metric modifier is #1
I (82438) ovms-server-v2: Status: Server has been started
D (82438) events: Signal(server.v2.waitnetwork)
I (82448) ovms-server-v2: OVMS Server v2 running
I (82458) ovms-server-v2: Connection is ovms.dexters-web.de:6870 TEST1
I (82458) ovms-server-v2: Status: Connecting...
D (82458) events: Signal(server.v2.connecting)
D (83178) cellular: mux-tx #3: AT+CPSI?
D (83198) cellular: mux-rx-line #3 (58/0): +CPSI: GSM,Online,262-02,0x011a,17601,3 EGSM 900,-74,0,0-0
D (83198) cellular: mux-rx-line #3 (2/0): OK
D (84178) cellular: mux-tx #3: AT+COPS?
D (84188) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
I (84188) cellular: Network Provider is: vodafone.de Hologram
D (84198) cellular: mux-rx-line #3 (2/0): OK
D (90558) cellular: mux-rx-line #3 (10/0): +CSQ: 19,7
D (93558) cellular: mux-rx-line #3 (10/0): +CSQ: 19,0
OVMS# D (99568) cellular: mux-rx-line #3 (10/0): +CSQ: 21,0
D (99568) cellular: Signal Quality is: 21 (-71 dBm)
OVMS# I (100288) ovms-server-v2: Connection successful
I (100288) ovms-server-v2: Status: Logging in...
D (100288) events: Signal(server.v2.authenticating)
I (100288) ovms-server-v2: Sending server login: MP-C 0 BEJDK49PdLCjC+XhJ8HAxy DCvXVPdiHuBCuduWVRwMsw== TEST1
I (100418) ovms-server-v2: Got server response: MP-S 0 PlGw1rpSWwlTw+XT2DWQkz 3VEX8cKyXogEBb/MjlTdFQ==
I (100418) ovms-server-v2: Server token is PlGw1rpSWwlTw+XT2DWQkz and digest is 3VEX8cKyXogEBb/MjlTdFQ==
I (100418) ovms-server-v2: Status: Server authentication ok. Now priming crypto.
I (100418) ovms-server-v2: Shared secret key is PlGw1rpSWwlTw+XT2DWQkzBEJDK49PdLCjC+XhJ8HAxy (44 bytes)
I (100418) ovms-server-v2: Status: OVMS V2 login successful, and crypto channel established
D (100418) events: Signal(server.v2.connected)
I (100448) ovms-server-v2: Incoming Msg: MP-0 Z0
OVMS# I (101178) ovms-server-v2: Send MP-0 S0,K,0,0.00,stopped,standard,0,0,0,0,0,0,0,21,0,0,0,0,0.00,0,0,0,0,-1,0,0,0,0,0,0,0,0.00,0.00,0.00,0.00,0.00,0.00,0.0,0.0,0.0,0.0,-1
I (101178) ovms-server-v2: Send MP-0 D0,0,5,0,0,0,0,0,0,99,0,0,1,1,0,0,12.6,0,0,0,0
I (101188) ovms-server-v2: Send MP-0 L0,0,0,0,0,0,0,0,0,0,0,0,0,0,,0,0,0,0
I (101188) ovms-server-v2: Send MP-0 Y4,FL,FR,RL,RR,0,-1,0,-1,0,-1,0,-1
I (101188) ovms-server-v2: Send MP-0 W0,0,0,0,0,0,0,0,-1
I (101188) ovms-server-v2: Send MP-0 F3.3.004-427-g0dfb100b/factory/edge (build idf v3.3.4-851-gfa4f07fb3b Mar 29 2025 17:50:01),,21,0,NONE,vodafone.de Hologram,-1,-1,OVMS WIFI BLE BT cores=2 rev=ESP32/3; MODEM SIM7600,GSM;Online
OVMS# D (112178) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (112198) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (112198) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (112198) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (112198) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,17:55:10+04"
D (112198) cellular: mux-rx-line #3 (10/6): +CSQ: 21,0
D (112198) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (113178) cellular: mux-tx #3: AT+CPSI?
D (113318) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-116,-1038,-716,10
I (113318) cellular: Network Mode: LTE,Online
D (113318) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (114178) cellular: mux-tx #3: AT+COPS?
D (114188) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (114198) cellular: mux-rx-line #3 (2/0): OK
OVMS# I (122188) housekeeping: System considered stable (RAM: 8b=102540-103616 32b=12128 SPI=3225352-3247776)
OVMS# module reset
Resetting system...
OVMS# I (142038) boot: Shutting down for Restart...
D (142038) events: Signal(system.shuttingdown)
W (142038) boot: Shutdown: vehicle pending, 1 total
I (142038) v-none: Shutdown NONE vehicle module
W (142038) boot: Shutdown: vehicle-poll pending, 2 total
D (142048) vehicle-poll: Poller Shutdown Sending Shut-Down
V (142048) vehicle-poll: Poller Shutdown Powering Down Busses
V (142048) vehicle-poll: Poller Shutdown Finished
D (142048) vehicle-poll: Pollers: Shutdown null
W (142058) boot: Shutdown: sdcard pending, 3 total
I (142058) sdcard: Unmounting SDCARD for reset
W (142058) boot: Shutdown: cellular pending, 4 total
W (142058) boot: Shutdown: ovms-duktape pending, 5 total
I (142058) cellular: State: Enter PoweringOff state
V (142058) cellular: Stopping PPP
W (142058) boot: Shutdown: webserver pending, 6 total
I (142058) gsm-ppp: Shutting down (hard)...
I (142068) gsm-ppp: StatusCallBack: User Interrupt
I (142068) gsm-ppp: PPP is shutdown
V (142068) cellular: Stopping NMEA
D (142068) cellular: mux-tx #1: AT+CGPSNMEA=0
D (142068) events: Signal(sd.unmounting)
E (142068) mongoose: mg_ssl_if_mbed_err 0x3f8e1488 SSL error: -1
I (142078) ovms-duktape: Duktape: Clearing existing context
D (142088) cellular: mux-tx #1: AT+CGPSINFOCFG=0
E (142108) ovms-server-v2: Status: Connection lost, reconnecting
D (142188) cellular: mux-tx #1: AT+CGPS=0
I (142188) Simcom: Power Off - 3000 ms
I (142208) command: CloseLogfile: file logging stopped
I (142208) sdcard: unmount done
D (142208) events: Signal(system.modem.down)
I (142218) netmanager: MODEM down (with WIFI client down): network connectivity has been lost
D (142218) events: Signal(server.v2.waitreconnect)
I (142218) ovms-server-v2: Status: Server is ready to start
I (142218) boot: Shutdown: vehicle ready, 5 pending
I (142218) boot: Shutdown: vehicle-poll ready, 4 pending
I (142218) boot: Shutdown: ovms-duktape ready, 3 pending
D (142228) events: Signal(system.modem.gpsstop)
D (142228) events: Signal(system.modem.stop)
D (142228) events: Signal(egpio.output.3.low)
D (142228) events: Signal(egpio.output.0.high)
D (142238) events: Signal(network.modem.down)
D (142238) events: Signal(network.down)
D (142238) events: Signal(network.interface.change)
D (142238) events: Signal(server.v2.waitnetwork)
D (142368) netmanager: MongooseTask stopping
D (142368) events: Signal(network.mgr.stop)
I (142368) ssh: Stopping SSH Server
OVMS# I (144178) boot: Shutdown: sdcard ready, 2 pending
I (144178) boot: Shutdown: webserver ready, 1 pending
D (144178) events: Signal(sd.unmounted)
OVMS# D (145188) events: Signal(egpio.output.0.low)
OVMS# I (146178) boot: Restart in 65 seconds (1 pending)...
OVMS# I (151178) boot: Restart in 60 seconds (1 pending)...
OVMS# I (156178) boot: Restart in 55 seconds (1 pending)...
OVMS# I (161178) boot: Restart in 50 seconds (1 pending)...
D (161178) cellular: State timeout PoweringOff => CheckPowerOff
I (161178) cellular: State: Enter CheckPowerOff state
OVMS# D (164178) cellular: tx-cmd: AT
OVMS# I (166178) boot: Restart in 45 seconds (1 pending)...
OVMS# D (167178) cellular: tx-cmd: AT
OVMS# D (170178) cellular: tx-cmd: AT
OVMS# I (171178) boot: Restart in 40 seconds (1 pending)...
OVMS# D (173178) cellular: tx-cmd: AT
OVMS# D (176178) cellular: tx-cmd: AT
I (176178) boot: Restart in 35 seconds (1 pending)...
D (176178) cellular: State timeout CheckPowerOff => PoweredOff
I (176178) cellular: State: Enter PoweredOff state
V (176178) cellular: Stopping MUX
D (176178) events: Signal(system.modem.poweredoff)
D (176178) cellular: UART shutdown
I (176178) boot: Shutdown: cellular ready, 0 pending
OVMS# I (177178) boot: Restart now
OVMS# D (178178) events: Signal(system.shutdown)ets Jul 29 2019 12:21:46
rst:0xc (SW_CPU_RESET),boot:0x1b (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:5980
ho 0 tail 12 room 4
load:0x40078000,len:16028
load:0x40080400,len:3816
entry 0x40080600
I (1252) psram: This chip is ESP32-D0WD
I (1253) spiram: Found 64MBit SPI RAM device
I (1253) spiram: SPI RAM mode: flash 40m sram 40m
I (1256) spiram: PSRAM initialized, cache is in low/high (2-core) mode.
I (1263) cpu_start: Pro cpu up.
I (1267) cpu_start: Application information:
I (1272) cpu_start: Project name: ovms3
I (1277) cpu_start: App version: 3.3.004-427-g0dfb100b
I (1283) cpu_start: Compile time: Mar 29 2025 17:49:58
I (1289) cpu_start: ELF file SHA256: 75c71ac8d6058b7f...
I (1295) cpu_start: ESP-IDF: v3.3.4-851-gfa4f07fb3b
I (1302) cpu_start: Starting app cpu, entry point is 0x400818e0
I (1294) cpu_start: App cpu up.
I (2180) spiram: SPI SRAM memory test OK
I (2180) heap_init: Initializing. RAM available for dynamic allocation:
I (2180) heap_init: At 3FFAE6E0 len 00001920 (6 KiB): DRAM
I (2186) heap_init: At 3FFC1F80 len 0001E080 (120 KiB): DRAM
I (2193) heap_init: At 3FFE0440 len 00003AE0 (14 KiB): D/IRAM
I (2199) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM
I (2206) heap_init: At 4009CDD4 len 0000322C (12 KiB): IRAM
I (2212) cpu_start: Pro cpu start user code
I (2217) spiram: Adding pool of 4096K of external SPI memory to heap allocator
I (44) ovms_main: Set default logging level for * to INFO
I (44) ovms_main: WATCHDOG already initialized...
I (44) ovms-duktape: Initialising DUKTAPE Registry (1000)
I (51) command: Initialising COMMAND (1010)
I (57) command: Expanding DUKTAPE javascript engine
I (61) boot: Initialising BOOT (1100)
I (66) boot: Boot #1 reasons for CPU0=12 and CPU1=12
I (71) boot: Soft reset by user
I (75) events: Initialising EVENTS (1200)
I (80) config: Initialising CONFIG (1400)
I (85) time: Initialising TIME (1500)
I (89) script: Initialising SCRIPTS (1600)
I (94) ovms-duk-http: Installing DUKTAPE HTTP (1710)
I (99) ovms-duk-util: Installing DUKTAPE Utilities (1710)
I (105) ovms-duk-vfs: Installing DUKTAPE VFS (1710)
I (111) metrics: Initialising METRICS (1810)
I (116) metrics: Expanding DUKTAPE javascript engine
I (121) metrics: Persistent metrics serial 2 using 820 bytes, 66/100 slots used
I (132) metrics: persist v.b.12v.voltage.ref = 12.6V
I (143) metrics: persist v.e.parktime = 139Sec
I (149) notify: Initialising NOTIFICATIONS (1820)
I (150) notify: Registered notification type info
I (151) notify: Registered notification type error
I (156) notify: Registered notification type alert
I (162) notify: Registered notification type data
I (167) notify: Registered notification type stream
I (172) notify: Expanding DUKTAPE javascript engine
I (178) location: Initialising LOCATIONS (1900)
I (187) location: Expanding DUKTAPE javascript engine
I (189) vehicle: Initialising VEHICLE Factory (2000)
I (200) tls: Initialising TLS (3000)
I (201) pcp: Initialising POWER (4000)
I (204) max7317: Initialising MAX7317 EGPIO (4200)
I (210) sdcard: Initialising SD CARD (4400)
I (214) ota: Initialising OTA (4400)
I (220) canformat: Initialising CAN Format Factory (4500)
I (224) canformat-cs11: Registering CAN Format: CS11 (4505)
I (230) canformat-crtd: Registering CAN Format: CRTD (4505)
I (236) canformat-gvret: Registering CAN Format: GVRET (4505)
I (243) canformat-lawicel: Registering CAN Format: LAWICEL (4505)
I (250) canformat-panda: Registering CAN Format: PANDA (4505)
I (256) canformat-pcap: Registering CAN Format: PCAP (4505)
I (262) canformat-raw: Registering CAN Format: RAW (4505)
I (268) can: Initialising CAN (4510)
I (280) dbc-app: Initialising DBC (4520)
I (283) canlog: Initialising CAN logging (4550)
I (284) canlog-monitor: Initialising CAN logging to MONITOR (4560)
I (290) canlog-tcpclient: Initialising CAN logging as TCP client (4560)
I (300) canlog-tcpserver: Initialising CAN logging as TCP server (4560)
I (307) canlog-udpclient: Initialising CAN logging as UDP client (4560)
I (313) canlog-udpserver: Initialising CAN logging as UDP server (4560)
I (322) canlog-vfs: Initialising CAN logging to VFS (4560)
I (326) canplay: Initialising CAN play framework (4570)
I (331) canplay-vfs: Initialising CAN playing from VFS (4580)
I (338) cellular: Initialising CELLULAR (4600)
I (345) cellular-modem-factory: Initialising CELLULAR MODEM Factory (4601)
I (350) cellular-modem-auto: Registering auto-detect modem driver (4650)
I (357) SIM5360: Registering SIM5360 modem driver (4650)
I (363) SIM7000: Registering SIM7000 modem driver (4650)
I (369) SIM7600: Registering SIM7600 modem driver (4650)
I (375) SIM7670: Registering Simcom A7670E modem driver (4660)
I (381) tpms: Initialising TPMS (4700)
I (387) test: Initialising TEST (5000)
I (392) module: Initialising MODULE (5100)
I (397) vfs: Initialising VFS (5200)
I (401) ovms-server: Initialising OVMS Server (6000)
I (405) ovms-server-v2: Initialising OVMS V2 Server (6100)
I (412) ovms-server-v3: Initialising OVMS V3 Server (6200)
I (418) vehicle-poll: Initialising Poller (7000)
I (426) obd2ecu: Initialising OBD2ECU (7000)
I (429) canopen: Initialising CANopen (7000)
I (437) pluginstore: Initialising PLUGINS (7100)
I (440) esp32wifi: Initialising ESP32WIFI (8000)
I (445) ovms-mdns: Initialising MDNS (8100)
I (448) webserver: Initialising WEBSERVER (8200)
I (456) ssh: Initialising SSH (8300)
I (458) powermgmt: Initialising POWERMGMT (8500)
I (464) re: Initialising RE Tools (8800)
I (470) pushover: Initialising Pushover client (8800)
I (475) netmanager: Initialising NETMANAGER (8999)
I (482) v-zombie-vcu: Registering Vehicle: ZombieVerter VCU (9000)
I (485) v-zeva: Registering Vehicle: ZEVA (9000)
I (491) v-vweup: Registering Vehicle: VW e-Up (9000)
I (496) v-voltampera: Registering Vehicle: Chevrolet Volt/Ampera (9000)
I (504) v-track: Registering Vehicle: TRACK (9000)
I (509) v-toyotarav4ev: Registering Vehicle: Toyota RAV4 EV (9000)
I (516) v-thinkcity: Registering Vehicle: THINK CITY (9000)
I (522) v-teslaroadster: Registering Vehicle: Tesla Roadster (9000)
I (529) v-teslamodels: Registering Vehicle: Tesla Model S (9000)
I (536) v-teslamodel3: Registering Vehicle: Tesla Model 3 (9000)
I (543) v-smarteq: Registering Vehicle: SMART EQ (9000)
I (549) v-smarted: Registering Vehicle: SMART ED (9000)
I (554) v-zoe-ph2-obd: Registering Vehicle: Renault Zoe Ph2 (OBD) (9000)
I (562) v-zoe: Registering Vehicle: Renault Zoe/Kangoo (9000)
I (568) v-twizy: Registering Vehicle: Renault Twizy (9000)
I (574) v-obdii: Registering Vehicle: OBDII (9000)
I (580) v-none: Registering Vehicle: NONE (9000)
I (585) v-nissanleaf: Registering Vehicle: Nissan Leaf (9000)
I (592) v-mitsubishi: Registering Vehicle: Mitsubishi iMiEV, Citroen C-Zero, Peugeot iOn (9000)
I (601) v-minise: Registering Vehicle: Mini Cooper SE (9000)
I (607) v-mgev4: Registering Vehicle: MG4 (9000)
I (613) v-mgev: Registering Vehicle: MG5 (9000)
I (618) v-mgev: Registering Vehicle: MG ZS EV (UK/EU) (9000)
I (624) v-mgev: Registering Vehicle: MG ZS EV (AU/TH) (9000)
I (630) v-mgev: Registering Vehicle: MG ZS EV (2023-)
I (636) v-mbb250e: Registering Vehicle: MERCEDESB250E (9000)
I (642) v-maxe6: Registering Vehicle: Maxus Euniq 6 (9000)
I (649) v-maxe56: Registering Vehicle: Maxus eDeliver3 (9000)
I (655) v-maxed3: Registering Vehicle: Maxus eDeliver3 (9000)
I (662) v-maple60s: Registering Vehicle: Maple 60S (9000)
I (668) v-kiasoulev: Registering Vehicle: Kia Soul EV (9000)
I (674) v-kianiroev: Registering Vehicle: Kia Niro / Hyundai Kona EV (9000)
I (682) v-jaguaripace: Registering Vehicle: Jaguar Ipace (9000)
I (688) v-hyundaivfl: Registering Vehicle: Hyundai Ioniq vFL (9000)
I (695) v-ioniq5: Registering Vehicle: Hyundai Ioniq 5 EV/KIA EV6 (9000)
I (702) v-fiat500e: Registering Vehicle: FIAT 500e (9000)
I (709) v-energica: Registering Vehicle: Energica (9000)
I (715) v-demo: Registering Vehicle: DEMO (9000)
I (720) v-dbc: Registering Vehicle: DBC based vehicle (9000)
I (726) v-chevroletc6corvette: Registering Vehicle: Chevrolet C6 Corvette (9000)
I (734) v-cadillacc2cts: Registering Vehicle: Cadillac 2nd gen CTS (9000)
I (742) v-atto3: Registering Vehicle: BYD Atto3 (9000)
I (748) v-boltev: Registering Vehicle: Bolt EV (9000)
I (753) v-bmwi3: Registering Vehicle: BMW i3 (9000)
I (759) version: Initialising Versioning (9900)
I (767) cpu_start: Starting scheduler on PRO CPU.
I (0) cpu_start: Starting scheduler on APP CPU.
I (30) ovms-duktape: Duktape: Scripting task is running
I (850) ovms_main: Executing on CPU core 0
I (850) ovms_main: Mounting CONFIG...
I (970) ovms_main: Configure logging...
W (980) command: OpenLogfile: cannot open '/sd/logs/log', will retry on SD mount
I (980) ovms_main: Registering default configs...
I (980) location: UpdateParkPosition: vehicle is parking @0.000000,0.000000 gpslock=0 satcount=0 hdop=0.0 sq=0 invalid=1
I (980) ovms_main: Starting HOUSEKEEPING...
I (1000) housekeeping: Initialising HOUSEKEEPING Framework...
I (1000) tls: Built trusted CA cache (5 entries, 8101 bytes)
I (2170) pluginstore: Loading enabled plugins (2)
I (2170) pluginstore: Load retools web page /plugins/retools
I (2170) pluginstore: Loading enabled plugins (3)
D (2180) events: Signal(housekeeping.init)
I (2180) housekeeping: Executing on CPU core 1
I (2180) housekeeping: reset_reason: cpu0=12, cpu1=12
I (2190) housekeeping: Starting PERIPHERALS...
I (2190) peripherals: Initialising OVMS Peripherals...
I (2200) peripherals: TCP/IP Adaptor
I (2200) peripherals: ESP32 system
I (2210) peripherals: SPI bus
I (2210) peripherals: MAX7317 I/O Expander
I (2220) peripherals: ESP32 CAN
I (2220) peripherals: ESP32 WIFI
I (2230) peripherals: ESP32 ADC
I (2230) peripherals: MCP2515 CAN 1/2
I (2230) mcp2515: can2: SetPowerMode off
I (2320) peripherals: MCP2515 CAN 2/2
I (2320) mcp2515: can3: SetPowerMode off
I (2400) peripherals: SD CARD
I (2400) peripherals: CELLULAR MODEM
I (2400) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (2410) gpio: GPIO[4]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
V (2420) cellular: Starting modem task
I (2420) uart: queue free spaces: 50
I (2420) ext12v: Powering off external 12V devices
I (2430) housekeeping: Auto init max7317 (free: 160656 bytes)
I (2440) housekeeping: Auto init ext12v (free: 160656 bytes)
I (2440) housekeeping: Auto init dbc (free: 160656 bytes)
I (2450) housekeeping: Auto init wifi (free: 160656 bytes)
I (2450) housekeeping: Auto init modem (free: 160656 bytes)
I (2460) housekeeping: Auto init Pollers (free: 160656 bytes)
I (2460) cellular: Set modem driver to 'auto'
I (2470) housekeeping: Auto init vehicle (free: 160656 bytes)
I (2470) cellular: State: Enter PowerOffOn state
I (2480) v-none: Generic NONE vehicle module
I (2480) cellular-modem-auto: Power Cycle
I (2490) housekeeping: Auto init obd2ecu (free: 148856 bytes)
I (2490) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
I (2500) housekeeping: Auto init server v2 (free: 148856 bytes)
I (2510) housekeeping: Auto init server v3 (free: 148856 bytes)
I (2520) housekeeping: Auto init javascript (free: 148856 bytes)
I (2530) housekeeping: Auto init done (free: 148816 bytes)
I (2530) housekeeping: Starting USB console...
I (2540) uart: queue free spaces: 100
D (2550) events: Signal(egpio.output.1.low)
D (2550) events: Signal(power.cellular.on)
D (2550) events: Signal(system.modem.stop)
D (2560) events: Signal(vehicle.type.set)
D (2560) events: Signal(egpio.output.0.low)
D (2560) events: Signal(egpio.output.0.high)
D (2570) events: Signal(system.start)
I (2570) ovms-mdns: Starting MDNS
Welcome to the Open Vehicle Monitoring System (OVMS) - Async Console
I (2580) ovms-duktape: Duktape: Creating heap (size: 524288 bytes)
Firmware: 3.3.004-427-g0dfb100b/factory/edge
Hardware: OVMS WIFI BLE BT cores=2 rev=ESP32/3
OVMS> I (2720) ovms-duktape: Duktape: Initialising module system
I (2890) pluginstore: Loading enabled plugins (1)
OVMS> D (4190) events: Signal(vehicle.aux.12v.low)
OVMS> D (5010) events: Signal(egpio.output.0.low)
OVMS> I (7190) sdcard: SD CARD has been inserted
I (7230) sdcard: mount done
D (7230) events: Signal(sd.insert)
OVMS> D (9190) events: Signal(sd.mounted)
I (9210) command: OpenLogfile: now logging to file '/sd/logs/log'
OVMS> D (10010) events: Signal(egpio.output.0.high)
D (10210) events: Signal(egpio.output.0.low)
D (10210) cellular: State timeout PowerOffOn => PoweringOn
I (10210) cellular: State: Enter PoweringOn state
I (10210) cellular-modem-auto: Power Cycle
I (10210) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
D (10210) events: Signal(system.modem.poweringon)
D (10210) events: Signal(egpio.output.0.high)
OVMS> D (12710) events: Signal(egpio.output.0.low)
OVMS> D (17710) events: Signal(egpio.output.0.high)
D (17910) events: Signal(egpio.output.0.low)
D (17910) cellular: tx-cmd: AT
D (17910) cellular: tx-cmd: AT
D (17910) cellular: tx-cmd: AT
D (17910) cellular: tx-cmd: AT
OVMS> I (19940) cellular: State: Enter Identify state
OVMS> D (20190) cellular: tx-cmd: AT+CGMM
I (20200) cellular: Identified cellular modem: SIM7600/Experimental support for SIMCOM SIM7600
D (20200) cellular: Remove old 'auto' modem driver
I (20200) cellular: Set modem driver to 'SIM7600'
I (20200) cellular: State: Enter PoweredOn state
D (20200) events: Signal(system.modem.installed)
D (20200) events: Signal(system.modem.poweredon)
OVMS> D (30190) cellular: tx-cmd: AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (30220) cellular: mux-rx-line #0 (2/120): OK
D (30220) cellular: mux-rx-line #0 (124/0): AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (30220) cellular: mux-rx-line #0 (12/20): +CPIN: READY
D (30220) cellular: mux-rx-line #0 (10/6): +CSQ: 16,0
D (30220) cellular: Signal Quality is: 16 (-81 dBm)
D (30220) cellular: mux-rx-line #0 (2/0): OK
OVMS> D (32190) cellular: tx-cmd: AT+CGMR;+ICCID
D (32200) cellular: mux-rx-line #0 (26/37): +CGMR: LE20B03SIM7600M21-A
D (32200) cellular: mux-rx-line #0 (27/6): +ICCID: 8944500408175816389
D (32210) cellular: mux-rx-line #0 (2/0): OK
OVMS> D (40190) cellular: tx-cmd: AT+CMUX=0;+CATR=6
D (40200) cellular: mux-rx-line #0 (2/0): OK
I (40200) cellular: State: Enter MuxStart state
V (40200) cellular: Starting MUX
D (40200) events: Signal(system.modem.muxstart)
OVMS> D (41190) cellular: State transition MuxStart => NetWait
I (41190) cellular: State: Enter NetWait state
V (41190) cellular: Starting NMEA
D (41190) cellular: mux-tx #1: AT+CGPS=0
D (41190) events: Signal(system.modem.netwait)
OVMS> D (43190) cellular: mux-tx #1: AT+CGPSNMEA=258
D (43210) cellular: mux-tx #1: AT+CGPSINFOCFG=5,258
D (43230) cellular: mux-tx #1: AT+CGPS=1,1
D (43230) events: Signal(system.modem.gpsstart)
D (43230) cellular: mux-rx-line #1 (2/0): OK
D (43230) cellular: mux-rx-line #1 (2/0): OK
D (43230) cellular: mux-rx-line #1 (2/0): OK
D (43240) cellular: mux-rx-line #1 (2/0): OK
OVMS> D (50050) cellular: mux-rx-line #3 (10/0): +CSQ: 20,0
D (50050) cellular: Signal Quality is: 20 (-73 dBm)
OVMS> D (51190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (51210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
I (51210) cellular: Network Registration status: RegisteredRoaming
D (51210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (51210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,4
D (51210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,17:57:09+04"
D (51210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,0
D (51210) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (52050) cellular: mux-rx-line #3 (10/0): +CSQ: 20,7
D (52190) cellular: mux-tx #3: AT+CPSI?
D (52190) cellular: State transition NetWait => NetStart
I (52190) cellular: State: Enter NetStart state
D (52190) events: Signal(system.modem.netstart)
D (52200) cellular: mux-rx-line #3 (57/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-74,0,0-0
I (52210) cellular: Network Mode: GSM,Online
D (52210) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (53190) cellular: Netstart AT+CGDCONT=1,"IP","hologram";+CGDATA="PPP",1
D (53240) cellular: mux-rx-line #2 (14/0): CONNECT 115200
I (53240) cellular: PPP Connection is ready to start
OVMS> D (54050) cellular: mux-rx-line #3 (10/0): +CSQ: 20,4
D (54190) cellular: State transition NetStart => NetMode
I (54190) cellular: State: Enter NetMode state
V (54190) cellular: Launching PPP
V (54190) cellular: Starting PPP
I (54190) gsm-ppp: Initialising...
D (54190) events: Signal(system.modem.netmode)
W (54220) cellular: UART frame error
W (54260) cellular: UART frame error
W (54260) cellular: UART frame error
I (54320) gsm-ppp: StatusCallBack: None
I (54320) gsm-ppp: status_cb: Connected
I (54320) gsm-ppp: our_ipaddr = 10.170.195.13
I (54320) gsm-ppp: his_ipaddr = 10.64.64.64
I (54320) gsm-ppp: netmask = 255.255.255.255
I (54320) gsm-ppp: DNS#0 = 8.8.8.8
I (54320) gsm-ppp: DNS#1 = 8.8.4.4
I (54320) gsm-ppp: our6_ipaddr = ::
D (54320) events: Signal(network.interface.up)
D (54330) events: Signal(system.modem.gotip)
D (54330) netmanager: Saved DNS#0 8.8.8.8
D (54330) netmanager: Saved DNS#1 8.8.4.4
D (54330) netmanager: Saved DNS#2 0.0.0.0
I (54330) netmanager: Interface priority is pp1 (10.170.195.13/255.255.255.255 gateway 10.64.64.64)
I (54330) netmanager: Set DNS#2 0.0.0.0
I (54330) netmanager: MODEM up (with WIFI client down): starting network with MODEM
D (54330) events: Signal(network.modem.up)
D (54330) events: Signal(network.up)
D (54340) events: Signal(network.interface.change)
W (54340) cellular: UART frame error
D (54340) netmanager: MongooseTask starting
D (54360) events: Signal(network.mgr.init)
I (54380) ssh: Launching SSH Server
OVMS> D (59000) cellular: mux-rx-line #3 (9/0): +CGREG: 3
D (59060) cellular: mux-rx-line #3 (10/0): NO CARRIER
D (59060) cellular: mux-rx-line #3 (19/0): +PPPD: DISCONNECTED
I (59060) cellular: PPP Connection disconnected
W (59190) cellular: Lost network connection (+PPP disconnect in NetMode)
D (59190) cellular: State transition NetMode => NetLoss
I (59190) cellular: State: Enter NetLoss state
D (59190) cellular: mux-tx #3: AT+CGATT=0
V (59190) cellular: Stopping PPP
I (59190) gsm-ppp: Shutting down (hard)...
I (59190) gsm-ppp: PPP is shutdown
W (59190) cellular: UART frame error
D (59190) events: Signal(system.modem.netloss)
D (59200) events: Signal(system.modem.down)
I (59200) netmanager: MODEM down (with WIFI client down): network connectivity has been lost
D (59200) events: Signal(network.modem.down)
D (59200) events: Signal(network.down)
D (59200) events: Signal(network.interface.change)
D (59410) netmanager: MongooseTask stopping
D (59410) events: Signal(network.mgr.stop)
I (59410) ssh: Stopping SSH Server
OVMS> I (65040) gsm-ppp: StatusCallBack: User Interrupt
OVMS> D (69190) cellular: State timeout NetLoss => NetWait
I (69190) cellular: State: Enter NetWait state
D (69190) events: Signal(system.modem.netwait)
OVMS> D (73190) cellular: State transition NetWait => NetStart
I (73190) cellular: State: Enter NetStart state
D (73190) events: Signal(system.modem.netstart)
OVMS> D (74190) cellular: Netstart AT+CGDCONT=1,"IP","hologram";+CGDATA="PPP",1
D (74240) cellular: mux-rx-line #2 (14/0): CONNECT 115200
I (74240) cellular: PPP Connection is ready to start
OVMS> D (75190) cellular: State transition NetStart => NetMode
I (75190) cellular: State: Enter NetMode state
V (75190) cellular: Starting PPP
I (75190) gsm-ppp: Initialising...
D (75190) events: Signal(system.modem.netmode)
W (75230) cellular: UART frame error
W (75240) cellular: UART frame error
OVMS> W (76280) cellular: UART frame error
OVMS> D (88090) cellular: mux-rx-line #3 (11/0): +CSQ: 99,99
D (88090) cellular: Signal Quality is: 99 (0 dBm)
OVMS> D (103710) cellular: mux-rx-line #3 (11/0): +CSQ: 19,99
D (103710) cellular: Signal Quality is: 19 (-75 dBm)
D (103710) cellular: mux-rx-line #3 (8/13): +CREG: 2
I (103710) cellular: Network Registration status: Searching
D (103710) cellular: mux-rx-line #3 (9/0): +CGREG: 2
OVMS> W (104190) cellular: Lost network connection (NetworkRegistration in NetMode)
D (104190) cellular: State transition NetMode => NetLoss
I (104190) cellular: State: Enter NetLoss state
D (104190) cellular: mux-tx #3: AT+CGATT=0
V (104190) cellular: Stopping PPP
I (104190) gsm-ppp: Shutting down (hard)...
I (104190) gsm-ppp: PPP is shutdown
D (104190) events: Signal(system.modem.netloss)
D (104200) events: Signal(system.modem.down)
OVMS> D (114190) cellular: State timeout NetLoss => NetWait
I (114190) cellular: State: Enter NetWait state
D (114190) events: Signal(system.modem.netwait)
OVMS> I (116190) gsm-ppp: StatusCallBack: User Interrupt
OVMS> I (122200) housekeeping: System considered stable (RAM: 8b=102716-117708 32b=12128 SPI=3284180-3285320)
OVMS> D (124190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (124210) cellular: mux-rx-line #3 (10/84): +CREG: 1,2
D (124210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,2
D (124210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (124210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,17:58:22+04"
D (124210) cellular: mux-rx-line #3 (11/6): +CSQ: 99,99
D (124210) cellular: Signal Quality is: 99 (0 dBm)
D (124210) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (125190) cellular: mux-tx #3: AT+CPSI?
D (125200) cellular: mux-rx-line #3 (24/0): +CPSI: NO SERVICE,Online
D (125200) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (126190) cellular: mux-tx #3: AT+COPS?
D (126200) cellular: mux-rx-line #3 (8/6): +COPS: 0
D (126200) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (132510) cellular: mux-rx-line #3 (11/0): +CSQ: 19,99
D (132510) cellular: Signal Quality is: 19 (-75 dBm)
OVMS> D (134190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (134210) cellular: mux-rx-line #3 (10/84): +CREG: 1,2
D (134210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,2
D (134210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (134210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,17:58:32+04"
D (134210) cellular: mux-rx-line #3 (11/6): +CSQ: 19,99
D (134210) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (135190) cellular: mux-tx #3: AT+CPSI?
D (135200) cellular: mux-rx-line #3 (24/0): +CPSI: NO SERVICE,Online
D (135200) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (136190) cellular: mux-tx #3: AT+COPS?
D (136200) cellular: mux-rx-line #3 (8/6): +COPS: 0
D (136200) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (136520) cellular: mux-rx-line #3 (10/0): +CSQ: 19,0
D (136520) cellular: mux-rx-line #3 (8/0): +CREG: 5
I (136520) cellular: Network Registration status: RegisteredRoaming
OVMS> D (137190) cellular: State transition NetWait => NetStart
I (137190) cellular: State: Enter NetStart state
D (137190) events: Signal(system.modem.netstart)
OVMS> D (138190) cellular: Netstart AT+CGDCONT=1,"IP","hologram";+CGDATA="PPP",1
D (138250) cellular: mux-rx-line #2 (14/0): CONNECT 115200
I (138250) cellular: PPP Connection is ready to start
OVMS> D (139190) cellular: State transition NetStart => NetMode
I (139190) cellular: State: Enter NetMode state
V (139190) cellular: Starting PPP
I (139190) gsm-ppp: Initialising...
D (139190) events: Signal(system.modem.netmode)
D (139330) cellular: mux-rx-line #3 (11/0): +CSQ: 19,99
OVMS> D (141680) cellular: mux-rx-line #3 (10/0): +CSQ: 19,3
D (141680) cellular: mux-rx-line #3 (9/0): +CGREG: 5
OVMS> I (142270) gsm-ppp: StatusCallBack: None
I (142270) gsm-ppp: status_cb: Connected
I (142270) gsm-ppp: our_ipaddr = 10.170.195.13
I (142270) gsm-ppp: his_ipaddr = 10.64.64.64
I (142270) gsm-ppp: netmask = 255.255.255.255
I (142270) gsm-ppp: DNS#0 = 8.8.8.8
I (142270) gsm-ppp: DNS#1 = 8.8.4.4
I (142270) gsm-ppp: our6_ipaddr = ::
D (142270) events: Signal(network.interface.up)
D (142270) events: Signal(system.modem.gotip)
D (142270) netmanager: Saved DNS#0 8.8.8.8
D (142270) netmanager: Saved DNS#1 8.8.4.4
D (142270) netmanager: Saved DNS#2 0.0.0.0
I (142270) netmanager: Set DNS#2 0.0.0.0
I (142270) netmanager: MODEM up (with WIFI client down): starting network with MODEM
D (142280) events: Signal(network.modem.up)
D (142280) events: Signal(network.up)
D (142280) events: Signal(network.interface.change)
D (142290) netmanager: MongooseTask starting
D (142290) events: Signal(network.mgr.init)
I (142310) ssh: Launching SSH Server
OVMS> D (146130) cellular: mux-rx-line #3 (11/0): +CSQ: 19,99
OVMS> W (161720) cellular: UART frame error
W (161720) cellular: UART frame error
OVMS> D (164140) cellular: mux-rx-line #3 (10/0): +CSQ: 19,0
OVMS> D (167130) cellular: mux-rx-line #3 (11/0): +CSQ: 19,99
OVMS> D (169190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (169210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (169210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (169210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (169210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,17:59:07+04"
D (169210) cellular: mux-rx-line #3 (11/6): +CSQ: 19,99
D (169210) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (170190) cellular: mux-tx #3: AT+CPSI?
D (170210) cellular: mux-rx-line #3 (60/0): +CPSI: GSM,Online,262-02,0x011a,17601,3 EGSM 900,-74,0,33-33
D (170210) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (171190) cellular: mux-tx #3: AT+COPS?
D (171210) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
I (171210) cellular: Network Provider is: vodafone.de Hologram
D (171210) cellular: mux-rx-line #3 (2/0): OK
OVMS> enable
Password:
Secure mode
OVMS# module
check factory fault leaks memory reset sleep summary tasks trigger
OVMS# module tD (199190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (199210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (199210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (199210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (199210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,17:59:37+04"
D (199210) cellular: mux-rx-line #3 (11/6): +CSQ: 19,99
D (199220) cellular: mux-rx-line #3 (2/0): OK
OVMS# module trigger ?D (200190) cellular: mux-tx #3: AT+CPSI?
D (200210) cellular: mux-rx-line #3 (60/0): +CPSI: GSM,Online,262-02,0x011a,17601,3 EGSM 900,-76,0,31-31
D (200210) cellular: mux-rx-line #3 (2/0): OK
OVMS# module trigger ?
Usage: module trigger twdt
twdt Trigger task watchdog timeout
OVMS# D (201190) cellular: mux-tx #3: AT+COPS?
D (201210) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (201210) cellular: mux-rx-line #3 (2/0): OK
OVMS# module trigger ? ?
Usage: module check|factory|fault|leaks|memory|reset|sleep|summary|tasks|trigger
check Check heap integrity
factory MODULE FACTORY framework
fault Abort fault the module
leaks Show module memory changes
memory Show module memory usage
reset Reset module
sleep Enter sleep mode
summary Show module summary
tasks Show module task usage
trigger Trigger framework
OVMS# module ?´ fauD (229190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
OVMS# module ?fauD (229210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (229210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (229210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (229210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,18:00:07+04"
D (229210) cellular: mux-rx-line #3 (11/6): +CSQ: 19,99
D (229210) cellular: mux-rx-line #3 (2/0): OK
OVMS# module ?fauD (230190) cellular: mux-tx #3: AT+CPSI?
D (230200) cellular: mux-rx-line #3 (60/0): +CPSI: GSM,Online,262-02,0x011a,17601,3 EGSM 900,-79,0,28-28
D (230210) cellular: mux-rx-line #3 (2/0): OK
OVMS# module ?fau faD (231190) cellular: mux-tx #3: AT+COPS?
D (231200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (231200) cellular: mux-rx-line #3 (2/0): OK
OVMS# module fa
factory fault
OVMS# module fault location status
Currently at 0.000000,0.000000 (without GPS lock)
There is 1 location defined
No active locations
OVMS# D (259190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (259210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (259210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (259210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (259210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,18:00:37+04"
D (259210) cellular: mux-rx-line #3 (11/6): +CSQ: 19,99
D (259210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (260190) cellular: mux-tx #3: AT+CPSI?
D (260210) cellular: mux-rx-line #3 (60/0): +CPSI: GSM,Online,262-02,0x011a,17601,3 EGSM 900,-78,0,29-29
D (260210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (261190) cellular: mux-tx #3: AT+COPS?
D (261200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (261210) cellular: mux-rx-line #3 (2/0): OK
OVMS# cellular status
MODEM Status
Model: SIM7600
Network Registration: RegisteredRoaming
Provider: vodafone.de Hologram
Signal: -75 dBm
Mode: GSM,Online
State: NetMode
Mux: Status up
PPP: Connected on channel: #2
GPS: Connected on channel: #1
OVMS# D (289190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (289210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (289210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (289210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (289210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,18:01:07+04"
D (289210) cellular: mux-rx-line #3 (11/6): +CSQ: 19,99
D (289210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (290190) cellular: mux-tx #3: AT+CPSI?
D (290200) cellular: mux-rx-line #3 (60/0): +CPSI: GSM,Online,262-02,0x011a,17601,3 EGSM 900,-74,0,33-33
D (290210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (291190) cellular: mux-tx #3: AT+COPS?
D (291200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (291200) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsm-nmea
Logging level for gsm-nmea set to verbose
OVMS# I (302210) housekeeping: 2025-03-29 18:01:20 CET (RAM: 8b=101996-104604 32b=12128 SPI=3274060-3278676)
OVMS# D (305170) cellular: mux-rx-line #3 (11/0): +CSQ: 22,99
D (305170) cellular: Signal Quality is: 22 (-69 dBm)
OVMS# D (319190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (319210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (319210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (319210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (319210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,18:01:37+04"
D (319210) cellular: mux-rx-line #3 (11/6): +CSQ: 22,99
D (319210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (320190) cellular: mux-tx #3: AT+CPSI?
D (320210) cellular: mux-rx-line #3 (59/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-69,0,38-38
D (320210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (321190) cellular: mux-tx #3: AT+COPS?
D (321210) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (321210) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsm-nmeal con lis log
log (readable writeable)
file.enable: yes
file.keepdays: 7
file.maxsize: 1024
file.path: /sd/logs/log
level: info
level.canlog-monitor: verbose
level.cellular: verbose
level.esp32wifi: warn
level.events: debug
level.gsm-mux: warn
level.gsm-nmea: warn
level.gsm-ppp: info
level.location: verbose
level.netmanager: verbose
level.ovms-duktape: info
level.ovms-server-v2: info
level.pushover: warn
level.script: debug
level.simcom: warn
level.time: warn
level.v-vweup: debug
level.vehicle: debug
level.vehicle-isotp: info
level.vehicle-poll: verbose
level.webcommand: info
level.webserver: warn
level.websocket: warn
poller.timers: yes
OVMS# con lis loglog level verbose gsm-nmeacon lis log
OVMS# con set lD (349190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (349210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (349210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (349210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (349210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,18:02:07+04"
D (349210) cellular: mux-rx-line #3 (11/6): +CSQ: 22,99
D (349210) cellular: mux-rx-line #3 (2/0): OK
OVMS# con set log D (350190) cellular: mux-tx #3: AT+CPSI?
D (350200) cellular: mux-rx-line #3 (59/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-69,0,38-38
D (350210) cellular: mux-rx-line #3 (2/0): OK
OVMS# con set log le
level level.canlog-monitor level.cellular level.esp32wifi level.events level.gsm-mux level.gsm-nmea level.gsm-ppp level.location level.netmanager level.ovms-duktape level.ovms-server-v2 level.pushover level.script level.simcom level.time level.v-vweup level.vehicle level.vehicle-isotp level.vehicle-poll ...
OVMS# con set log levelD (351190) cellular: mux-tx #3: AT+COPS?
D (351200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (351210) cellular: mux-rx-line #3 (2/0): OK
OVMS# con set log level.gs
level.gsm-mux level.gsm-nmea level.gsm-ppp
OVMS# con set log level.gsm-
level.gsm-mux level.gsm-nmea level.gsm-ppp
OVMS# con set log level.gsm-nmea verbot se
Parameter has been set.
OVMS# D (358350) events: Signal(config.changed)
I (358370) command: CloseLogfile: file logging stopped
I (358380) command: OpenLogfile: now logging to file '/sd/logs/log'
OVMS#
OVMS# cellular status
MODEM Status
Model: SIM7600
Network Registration: RegisteredRoaming
Provider: vodafone.de Hologram
Signal: -69 dBm
Mode: GSM,Online
State: NetMode
Mux: Status up
PPP: Connected on channel: #2
GPS: Connected on channel: #1
OVMS# location D (379190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (379210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (379210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (379210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
OVMS# location D (379210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,18:02:37+04"
D (379210) cellular: mux-rx-line #3 (11/6): +CSQ: 22,99
D (379210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (380190) cellular: mux-tx #3: AT+CPSI?
D (380210) cellular: mux-rx-line #3 (59/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-68,0,39-39
D (380210) cellular: mux-rx-line #3 (2/0): OK
OVMS# me li D (381190) cellular: mux-tx #3: AT+COPS?
D (381200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (381210) cellular: mux-rx-line #3 (2/0): OK
OVMS# me li v.p.
v.p.acceleration
v.p.altitude
v.p.direction
v.p.gpshdop
v.p.gpslock
v.p.gpsmode
v.p.gpsspeed
v.p.gpssq
v.p.gpstime
v.p.latitude
v.p.location
v.p.longitude
v.p.odometer
v.p.satcount
v.p.speed
v.p.trip
v.p.valet.distance
v.p.valet.latitude
v.p.valet.longitude
OVMS#
OVMS# D (409190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (409210) cellular: mux-rx-line #3 (10/84): +CREG: 1,5
D (409210) cellular: mux-rx-line #3 (11/69): +CGREG: 1,5
D (409210) cellular: mux-rx-line #3 (11/54): +CEREG: 1,4
D (409210) cellular: mux-rx-line #3 (29/21): +CCLK: "25/03/29,18:03:07+04"
D (409210) cellular: mux-rx-line #3 (11/6): +CSQ: 22,99
D (409210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (410190) cellular: mux-tx #3: AT+CPSI?
D (410200) cellular: mux-rx-line #3 (59/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-68,0,39-39
D (410210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (411190) cellular: mux-tx #3: AT+COPS?
D (411200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
D (411200) cellular: mux-rx-line #3 (2/0): OK
OVMS# power cellular off
Power mode of cellular is now off
OVMS# D (423400) events: Signal(power.cellular.off)
I (423410) cellular: State: Enter PoweringOff state
V (423410) cellular: Stopping PPP
I (423410) gsm-ppp: Shutting down (hard)...
I (423410) gsm-ppp: StatusCallBack: User Interrupt
I (423410) gsm-ppp: PPP is shutdown
D (423410) events: Signal(system.modem.down)
V (423410) cellular: Stopping NMEA
D (423410) cellular: mux-tx #1: AT+CGPSNMEA=0
I (423410) netmanager: MODEM down (with WIFI client down): network connectivity has been lost
D (423420) events: Signal(network.modem.down)
D (423420) events: Signal(network.down)
D (423420) events: Signal(network.interface.change)
D (423430) cellular: mux-tx #1: AT+CGPSINFOCFG=0
D (423530) cellular: mux-tx #1: AT+CGPS=0
I (423530) gsm-nmea: Shutdown (direct)
D (423530) events: Signal(system.modem.gpsstop)
I (423530) Simcom: Power Off - 3000 ms
D (423530) events: Signal(system.modem.stop)
D (423530) events: Signal(egpio.output.3.low)
D (423540) events: Signal(egpio.output.0.high)
D (423560) netmanager: MongooseTask stopping
D (423560) events: Signal(network.mgr.stop)
I (423560) ssh: Stopping SSH Server
OVMS# D (426530) events: Signal(egpio.output.0.low)
OVMS# D (443190) cellular: State timeout PoweringOff => CheckPowerOff
I (443190) cellular: State: Enter CheckPowerOff state
OVMS# D (446190) cellular: tx-cmd: AT
OVMS# D (449190) cellular: tx-cmd: AT
OVMS# D (452190) cellular: tx-cmd: AT
OVMS# D (455190) cellular: tx-cmd: AT
OVMS# D (458190) cellular: tx-cmd: AT
D (458190) cellular: State timeout CheckPowerOff => PoweredOff
I (458190) cellular: State: Enter PoweredOff state
V (458190) cellular: Stopping MUX
D (458190) events: Signal(system.modem.poweredoff)
OVMS# con lis auto
auto (readable writeable)
dbc: no
egpio: no
ext12v: no
init: yes
modem: yes
obd2ecu:
ota: no
scripting: yes
server.v2: no
server.v3: no
vehicle.type: NONE
wifi.mode: off
wifi.ssid.ap: Test1
wifi.ssid.client:
OVMS# con lis auto cel mo
modem module
OVMS# con lis modem
modem (readable writeable)
apn: hologram
apn.password:
apn.user:
enable.gps: yes
enable.gpstime: yes
enable.net: yes
enable.sms: yes
pincode:
OVMS# con power ^c cellular l on
Power mode of cellular is now on
OVMS# D (523600) events: Signal(power.cellular.on)
I (523610) cellular: Set modem driver to 'auto'
I (523610) cellular: State: Enter PowerOffOn state
V (523610) cellular: Stopping PPP
I (523610) gsm-ppp: Shutting down (hard)...
I (523610) gsm-ppp: StatusCallBack: User Interrupt
I (523610) gsm-ppp: PPP is shutdown
D (523610) events: Signal(system.modem.down)
I (523610) cellular-modem-auto: Power Cycle
I (523610) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
D (523610) events: Signal(system.modem.stop)
D (523620) events: Signal(egpio.output.0.high)
OVMS# D (526110) events: Signal(egpio.output.0.low)
OVMS# D (531110) events: Signal(egpio.output.0.high)
D (531310) events: Signal(egpio.output.0.low)
D (531310) cellular: State timeout PowerOffOn => PoweringOn
I (531310) cellular: State: Enter PoweringOn state
I (531310) cellular-modem-auto: Power Cycle
I (531310) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
D (531310) events: Signal(system.modem.poweringon)
D (531310) events: Signal(egpio.output.0.high)
OVMS# D (533810) events: Signal(egpio.output.0.low)
OVMS# D (538810) events: Signal(egpio.output.0.high)
D (539010) events: Signal(egpio.output.0.low)
D (539010) cellular: tx-cmd: AT
D (539010) cellular: tx-cmd: AT
D (539010) cellular: tx-cmd: AT
D (539010) cellular: tx-cmd: AT
OVMS# I (540980) cellular: State: Enter Identify state
OVMS# D (541190) cellular: tx-cmd: AT+CGMM
I (541200) cellular: Identified cellular modem: SIM7600/Experimental support for SIMCOM SIM7600
D (541200) cellular: Remove old 'auto' modem driver
I (541200) cellular: Set modem driver to 'SIM7600'
I (541200) cellular: State: Enter PoweredOn state
D (541200) events: Signal(system.modem.installed)
D (541200) events: Signal(system.modem.poweredon)
OVMS# D (551190) cellular: tx-cmd: AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (551220) cellular: mux-rx-line #0 (2/120): OK
D (551220) cellular: mux-rx-line #0 (124/0): AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (551230) cellular: mux-rx-line #0 (12/20): +CPIN: READY
D (551230) cellular: mux-rx-line #0 (10/6): +CSQ: 22,0
D (551230) cellular: Signal Quality is: 22 (-69 dBm)
D (551230) cellular: mux-rx-line #0 (2/0): OK
OVMS# D (553190) cellular: tx-cmd: AT+CGMR;+ICCID
D (553200) cellular: mux-rx-line #0 (26/37): +CGMR: LE20B03SIM7600M21-A
D (553200) cellular: mux-rx-line #0 (27/6): +ICCID: 8944500408175816389
D (553200) cellular: mux-rx-line #0 (2/0): OK
OVMS# D (561190) cellular: tx-cmd: AT+CMUX=0;+CATR=6
D (561200) cellular: mux-rx-line #0 (2/0): OK
I (561200) cellular: State: Enter MuxStart state
V (561200) cellular: Starting MUX
D (561200) events: Signal(system.modem.muxstart)
OVMS# D (562190) cellular: State transition MuxStart => NetWait
I (562190) cellular: State: Enter NetWait state
V (562190) cellular: Starting NMEA
I (562190) gsm-nmea: Startup
D (562190) cellular: mux-tx #1: AT+CGPS=0
D (562190) events: Signal(system.modem.netwait)
OVMS# D (564190) cellular: mux-tx #1: AT+CGPSNMEA=258
D (564210) cellular: mux-tx #1: AT+CGPSINFOCFG=5,258
D (564230) cellular: mux-tx #1: AT+CGPS=1,1
D (564230) events: Signal(system.modem.gpsstart)
D (564230) cellular: mux-rx-line #1 (2/0): OK
D (564230) cellular: mux-rx-line #1 (2/0): OK
D (564230) cellular: mux-rx-line #1 (2/0): OK
D (564240) cellular: mux-rx-line #1 (2/0): OK
OVMS# D (572190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (572210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
I (572210) cellular: Network Registration status: RegisteredRoaming
D (572210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,2
D (572210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,4
D (572210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:05:50+04"
D (572210) cellular: mux-rx-line #3 (10/6): +CSQ: 22,0
D (572210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (573190) cellular: mux-tx #3: AT+CPSI?
D (573190) cellular: State transition NetWait => NetStart
I (573190) cellular: State: Enter NetStart state
D (573190) events: Signal(system.modem.netstart)
D (573200) cellular: mux-rx-line #3 (57/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-70,0,0-0
D (573210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (574190) cellular: Netstart AT+CGDCONT=1,"IP","hologram";+CGDATA="PPP",1
D (574250) cellular: mux-rx-line #2 (14/0): CONNECT 115200
I (574250) cellular: PPP Connection is ready to start
OVMS# D (575190) cellular: State transition NetStart => NetMode
I (575190) cellular: State: Enter NetMode state
V (575190) cellular: Starting PPP
I (575190) gsm-ppp: Initialising...
D (575190) events: Signal(system.modem.netmode)
OVMS# W (576290) cellular: UART frame error
OVMS# D (578110) cellular: mux-rx-line #3 (9/0): +CGREG: 5
OVMS# D (578430) cellular: mux-rx-line #3 (26/0): +CTZV: 4,25/03/29,17:05:57
I (578610) gsm-ppp: StatusCallBack: None
I (578610) gsm-ppp: status_cb: Connected
I (578610) gsm-ppp: our_ipaddr = 10.170.195.13
I (578620) gsm-ppp: his_ipaddr = 10.64.64.64
I (578620) gsm-ppp: netmask = 255.255.255.255
I (578620) gsm-ppp: DNS#0 = 8.8.8.8
I (578620) gsm-ppp: DNS#1 = 8.8.4.4
I (578620) gsm-ppp: our6_ipaddr = ::
D (578620) events: Signal(network.interface.up)
D (578620) events: Signal(system.modem.gotip)
D (578620) netmanager: Saved DNS#0 8.8.8.8
D (578620) netmanager: Saved DNS#1 8.8.4.4
D (578620) netmanager: Saved DNS#2 0.0.0.0
I (578620) netmanager: Set DNS#2 0.0.0.0
I (578620) netmanager: MODEM up (with WIFI client down): starting network with MODEM
D (578620) events: Signal(network.modem.up)
D (578630) events: Signal(network.up)
D (578630) events: Signal(network.interface.change)
D (578640) netmanager: MongooseTask starting
D (578640) events: Signal(network.mgr.init)
I (578660) ssh: Launching SSH Server
OVMS# D (580350) cellular: mux-rx-line #3 (10/0): +CSQ: 22,4
OVMS# D (583350) cellular: mux-rx-line #3 (11/0): +CSQ: 22,99
OVMS# D (586350) cellular: mux-rx-line #3 (11/0): +CSQ: 20,99
D (586350) cellular: Signal Quality is: 20 (-73 dBm)
D (586410) cellular: mux-rx-line #3 (10/0): +CSQ: 20,4
OVMS# D (588360) cellular: mux-rx-line #3 (10/0): +CSQ: 21,4
D (588360) cellular: Signal Quality is: 21 (-71 dBm)
OVMS# D (590360) cellular: mux-rx-line #3 (10/0): +CSQ: 21,0
OVMS# I (602210) housekeeping: 2025-03-29 18:06:20 CET (RAM: 8b=100888-103468 32b=12128 SPI=3274036-3278592)
OVMS# D (605190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (605210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (605210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (605210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,4
D (605210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:06:23+04"
D (605210) cellular: mux-rx-line #3 (10/6): +CSQ: 21,0
D (605210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (606190) cellular: mux-tx #3: AT+CPSI?
D (606200) cellular: mux-rx-line #3 (57/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-73,0,0-0
D (606210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (607190) cellular: mux-tx #3: AT+COPS?
D (607200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",0
I (607210) cellular: Network Provider is: vodafone.de Hologram
D (607210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (622380) cellular: mux-rx-line #3 (10/0): +CSQ: 21,7
D (622380) cellular: mux-rx-line #3 (10/0): +CSQ: 21,0
OVMS# D (626390) cellular: mux-rx-line #3 (10/0): +CSQ: 21,4
OVMS# D (631400) cellular: mux-rx-line #3 (10/0): +CSQ: 20,4
D (631400) cellular: Signal Quality is: 20 (-73 dBm)
OVMS# D (635190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (635210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (635210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (635210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (635210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:06:53+04"
D (635210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,4
D (635210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (636190) cellular: mux-tx #3: AT+CPSI?
D (636330) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-119,-1046,-739,11
I (636330) cellular: Network Mode: LTE,Online
D (636330) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (637190) cellular: mux-tx #3: AT+COPS?
D (637210) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (637210) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsm-D (665190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (665210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (665210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (665210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (665210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:07:23+04"
D (665210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,4
D (665210) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsm-muD (666190) cellular: mux-tx #3: AT+CPSI?
D (666210) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-128,-1040,-710,10
D (666210) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsm-muD (667190) cellular: mux-tx #3: AT+COPS?
D (667210) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (667210) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsm-mux
Logging level for gsm-mux set to verbose
OVMS# V (669230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (669230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (674230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (674230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (679230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (679230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (684230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (684230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (689230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (689230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (694230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (694230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# D (695190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
V (695210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=75, LEN=103)
D (695210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (695210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (695210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (695210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:07:53+04"
D (695210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,4
D (695210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (696190) cellular: mux-tx #3: AT+CPSI?
V (696210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=c2, LEN=94)
D (696210) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-122,-1041,-727,11
V (696210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=0f, LEN=12)
D (696210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (697190) cellular: mux-tx #3: AT+COPS?
V (697200) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=87, LEN=51)
D (697200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (697210) cellular: mux-rx-line #3 (2/0): OK
OVMS# V (699230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (699230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (704230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (704230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (709230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (709230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (714230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (714230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (719230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (719230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (724230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (724230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# D (725190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
V (725210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=75, LEN=103)
D (725210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (725210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (725210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (725210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:08:23+04"
D (725210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,4
D (725210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (726190) cellular: mux-tx #3: AT+CPSI?
V (726210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=c2, LEN=94)
D (726210) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-139,-1046,-710,10
V (726210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=0f, LEN=12)
D (726210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (727190) cellular: mux-tx #3: AT+COPS?
V (727200) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=87, LEN=51)
D (727200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (727210) cellular: mux-rx-line #3 (2/0): OK
OVMS# V (729230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (729230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (734230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (734230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (739230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (739230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (744230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (744230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (749230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (749230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (754230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (754230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# D (755190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
V (755210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=75, LEN=103)
D (755210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (755210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (755210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (755210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:08:53+04"
D (755210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,4
D (755210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (756190) cellular: mux-tx #3: AT+CPSI?
V (756210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=c2, LEN=94)
D (756210) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-114,-1044,-733,11
V (756210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=0f, LEN=12)
D (756210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (757190) cellular: mux-tx #3: AT+COPS?
V (757200) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=87, LEN=51)
D (757200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (757210) cellular: mux-rx-line #3 (2/0): OK
OVMS# V (759230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (759230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (764230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (764230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (769230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (769230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (774230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (774230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (779230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (779230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (784230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (784230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# D (785190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
V (785210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=75, LEN=103)
D (785210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (785210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (785210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (785210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:09:23+04"
D (785210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,4
D (785210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (786190) cellular: mux-tx #3: AT+CPSI?
V (786210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=c2, LEN=94)
D (786210) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-143,-1040,-697,11
V (786210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=0f, LEN=12)
D (786210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (787190) cellular: mux-tx #3: AT+COPS?
V (787200) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=87, LEN=51)
D (787200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (787210) cellular: mux-rx-line #3 (2/0): OK
OVMS# V (789230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (789230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (794230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (794230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (799230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (799230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (804230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (804230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (809230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (809230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (814230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (814230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# D (815190) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
V (815210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=75, LEN=103)
D (815210) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (815210) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (815210) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (815210) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:09:53+04"
D (815210) cellular: mux-rx-line #3 (10/6): +CSQ: 20,4
D (815210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (816190) cellular: mux-tx #3: AT+CPSI?
V (816210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=c2, LEN=94)
D (816210) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-117,-1048,-728,11
V (816210) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=0f, LEN=12)
D (816210) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (817190) cellular: mux-tx #3: AT+COPS?
V (817200) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=87, LEN=51)
D (817200) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (817210) cellular: mux-rx-line #3 (2/0): OK
OVMS# V (819230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (819230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
-------------- next part --------------
OVMS# V (829230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (829230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS#
OVMS# module V (834230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (834230) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# module fault
abort() was called at PC 0x401184a3 on core 1
ELF file SHA256: 75c71ac8d6058b7f
Backtrace: 0x4008ddae:0x3ffddf70 0x4008e049:0x3ffddf90 0x401184a3:0x3ffddfb0 0x4032e73f:0x3ffddfd0 0x40127862:0x3ffddff0 0x40127909:0x3ffde050 0x40127909:0x3ffde0b0 0x401279af:0x3ffde110 0x401138b7:0x3ffde130 0x40130427:0x3ffde150 0x401305de:0x3ffde1b0 0x401138e7:0x3ffde250 0x4032f79e:0x3ffde270 0x4012d559:0x3ffde290 0x40122885:0x3ffde2c0 0x40122a5d:0x3ffde2f0 0x4012d401:0x3ffde310 0x4012d410:0x3ffde330 0x4010c3eb:0x3ffde350
[OVMS] Current tasks: IDLE0|OVMS Console
Rebooting...
ets Jul 29 2019 12:21:46
rst:0xc (SW_CPU_RESET),boot:0x1b (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:5980
ho 0 tail 12 room 4
load:0x40078000,len:16028
load:0x40080400,len:3816
entry 0x40080600
I (1252) psram: This chip is ESP32-D0WD
I (1253) spiram: Found 64MBit SPI RAM device
I (1253) spiram: SPI RAM mode: flash 40m sram 40m
I (1256) spiram: PSRAM initialized, cache is in low/high (2-core) mode.
I (1263) cpu_start: Pro cpu up.
I (1267) cpu_start: Application information:
I (1272) cpu_start: Project name: ovms3
I (1277) cpu_start: App version: 3.3.004-427-g0dfb100b
I (1283) cpu_start: Compile time: Mar 29 2025 17:49:58
I (1289) cpu_start: ELF file SHA256: 75c71ac8d6058b7f...
I (1295) cpu_start: ESP-IDF: v3.3.4-851-gfa4f07fb3b
I (1302) cpu_start: Starting app cpu, entry point is 0x400818e0
I (1294) cpu_start: App cpu up.
I (2180) spiram: SPI SRAM memory test OK
I (2180) heap_init: Initializing. RAM available for dynamic allocation:
I (2180) heap_init: At 3FFAE6E0 len 00001920 (6 KiB): DRAM
I (2186) heap_init: At 3FFC1F80 len 0001E080 (120 KiB): DRAM
I (2193) heap_init: At 3FFE0440 len 00003AE0 (14 KiB): D/IRAM
I (2199) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM
I (2206) heap_init: At 4009CDD4 len 0000322C (12 KiB): IRAM
I (2212) cpu_start: Pro cpu start user code
I (2217) spiram: Adding pool of 4096K of external SPI memory to heap allocator
I (44) ovms_main: Set default logging level for * to INFO
I (44) ovms_main: WATCHDOG already initialized...
I (44) ovms-duktape: Initialising DUKTAPE Registry (1000)
I (51) command: Initialising COMMAND (1010)
I (57) command: Expanding DUKTAPE javascript engine
I (61) boot: Initialising BOOT (1100)
I (66) boot: Boot #2 reasons for CPU0=12 and CPU1=12
E (71) boot: Crash #1 detected
I (75) boot: Reset reason Exception/panic (4)
I (80) events: Initialising EVENTS (1200)
I (85) config: Initialising CONFIG (1400)
I (90) time: Initialising TIME (1500)
I (94) script: Initialising SCRIPTS (1600)
I (99) ovms-duk-http: Installing DUKTAPE HTTP (1710)
I (104) ovms-duk-util: Installing DUKTAPE Utilities (1710)
I (110) ovms-duk-vfs: Installing DUKTAPE VFS (1710)
I (116) metrics: Initialising METRICS (1810)
I (121) metrics: Expanding DUKTAPE javascript engine
I (126) metrics: Persistent metrics serial 3 using 820 bytes, 66/100 slots used
I (137) metrics: persist v.b.12v.voltage.ref = 12.6V
I (148) metrics: persist v.e.parktime = 972Sec
I (154) notify: Initialising NOTIFICATIONS (1820)
I (155) notify: Registered notification type info
I (156) notify: Registered notification type error
I (161) notify: Registered notification type alert
I (167) notify: Registered notification type data
I (172) notify: Registered notification type stream
I (177) notify: Expanding DUKTAPE javascript engine
I (183) location: Initialising LOCATIONS (1900)
I (192) location: Expanding DUKTAPE javascript engine
I (194) vehicle: Initialising VEHICLE Factory (2000)
I (205) tls: Initialising TLS (3000)
I (206) pcp: Initialising POWER (4000)
I (209) max7317: Initialising MAX7317 EGPIO (4200)
I (215) sdcard: Initialising SD CARD (4400)
I (219) ota: Initialising OTA (4400)
I (225) canformat: Initialising CAN Format Factory (4500)
I (229) canformat-cs11: Registering CAN Format: CS11 (4505)
I (235) canformat-crtd: Registering CAN Format: CRTD (4505)
I (241) canformat-gvret: Registering CAN Format: GVRET (4505)
I (248) canformat-lawicel: Registering CAN Format: LAWICEL (4505)
I (255) canformat-panda: Registering CAN Format: PANDA (4505)
I (261) canformat-pcap: Registering CAN Format: PCAP (4505)
I (267) canformat-raw: Registering CAN Format: RAW (4505)
I (273) can: Initialising CAN (4510)
I (285) dbc-app: Initialising DBC (4520)
I (288) canlog: Initialising CAN logging (4550)
I (289) canlog-monitor: Initialising CAN logging to MONITOR (4560)
I (295) canlog-tcpclient: Initialising CAN logging as TCP client (4560)
I (305) canlog-tcpserver: Initialising CAN logging as TCP server (4560)
I (312) canlog-udpclient: Initialising CAN logging as UDP client (4560)
I (318) canlog-udpserver: Initialising CAN logging as UDP server (4560)
I (327) canlog-vfs: Initialising CAN logging to VFS (4560)
I (331) canplay: Initialising CAN play framework (4570)
I (336) canplay-vfs: Initialising CAN playing from VFS (4580)
I (343) cellular: Initialising CELLULAR (4600)
I (350) cellular-modem-factory: Initialising CELLULAR MODEM Factory (4601)
I (355) cellular-modem-auto: Registering auto-detect modem driver (4650)
I (362) SIM5360: Registering SIM5360 modem driver (4650)
I (368) SIM7000: Registering SIM7000 modem driver (4650)
I (374) SIM7600: Registering SIM7600 modem driver (4650)
I (380) SIM7670: Registering Simcom A7670E modem driver (4660)
I (387) tpms: Initialising TPMS (4700)
I (392) test: Initialising TEST (5000)
I (397) module: Initialising MODULE (5100)
I (402) vfs: Initialising VFS (5200)
I (406) ovms-server: Initialising OVMS Server (6000)
I (410) ovms-server-v2: Initialising OVMS V2 Server (6100)
I (417) ovms-server-v3: Initialising OVMS V3 Server (6200)
I (423) vehicle-poll: Initialising Poller (7000)
I (431) obd2ecu: Initialising OBD2ECU (7000)
I (434) canopen: Initialising CANopen (7000)
I (442) pluginstore: Initialising PLUGINS (7100)
I (445) esp32wifi: Initialising ESP32WIFI (8000)
I (450) ovms-mdns: Initialising MDNS (8100)
I (453) webserver: Initialising WEBSERVER (8200)
I (461) ssh: Initialising SSH (8300)
I (463) powermgmt: Initialising POWERMGMT (8500)
I (469) re: Initialising RE Tools (8800)
I (475) pushover: Initialising Pushover client (8800)
I (480) netmanager: Initialising NETMANAGER (8999)
I (487) v-zombie-vcu: Registering Vehicle: ZombieVerter VCU (9000)
I (490) v-zeva: Registering Vehicle: ZEVA (9000)
I (496) v-vweup: Registering Vehicle: VW e-Up (9000)
I (501) v-voltampera: Registering Vehicle: Chevrolet Volt/Ampera (9000)
I (509) v-track: Registering Vehicle: TRACK (9000)
I (514) v-toyotarav4ev: Registering Vehicle: Toyota RAV4 EV (9000)
I (521) v-thinkcity: Registering Vehicle: THINK CITY (9000)
I (527) v-teslaroadster: Registering Vehicle: Tesla Roadster (9000)
I (534) v-teslamodels: Registering Vehicle: Tesla Model S (9000)
I (541) v-teslamodel3: Registering Vehicle: Tesla Model 3 (9000)
I (548) v-smarteq: Registering Vehicle: SMART EQ (9000)
I (554) v-smarted: Registering Vehicle: SMART ED (9000)
I (559) v-zoe-ph2-obd: Registering Vehicle: Renault Zoe Ph2 (OBD) (9000)
I (567) v-zoe: Registering Vehicle: Renault Zoe/Kangoo (9000)
I (573) v-twizy: Registering Vehicle: Renault Twizy (9000)
I (579) v-obdii: Registering Vehicle: OBDII (9000)
I (585) v-none: Registering Vehicle: NONE (9000)
I (590) v-nissanleaf: Registering Vehicle: Nissan Leaf (9000)
I (597) v-mitsubishi: Registering Vehicle: Mitsubishi iMiEV, Citroen C-Zero, Peugeot iOn (9000)
I (606) v-minise: Registering Vehicle: Mini Cooper SE (9000)
I (612) v-mgev4: Registering Vehicle: MG4 (9000)
I (618) v-mgev: Registering Vehicle: MG5 (9000)
I (623) v-mgev: Registering Vehicle: MG ZS EV (UK/EU) (9000)
I (629) v-mgev: Registering Vehicle: MG ZS EV (AU/TH) (9000)
I (635) v-mgev: Registering Vehicle: MG ZS EV (2023-)
I (641) v-mbb250e: Registering Vehicle: MERCEDESB250E (9000)
I (648) v-maxe6: Registering Vehicle: Maxus Euniq 6 (9000)
I (654) v-maxe56: Registering Vehicle: Maxus eDeliver3 (9000)
I (660) v-maxed3: Registering Vehicle: Maxus eDeliver3 (9000)
I (667) v-maple60s: Registering Vehicle: Maple 60S (9000)
I (673) v-kiasoulev: Registering Vehicle: Kia Soul EV (9000)
I (679) v-kianiroev: Registering Vehicle: Kia Niro / Hyundai Kona EV (9000)
I (687) v-jaguaripace: Registering Vehicle: Jaguar Ipace (9000)
I (693) v-hyundaivfl: Registering Vehicle: Hyundai Ioniq vFL (9000)
I (700) v-ioniq5: Registering Vehicle: Hyundai Ioniq 5 EV/KIA EV6 (9000)
I (708) v-fiat500e: Registering Vehicle: FIAT 500e (9000)
I (714) v-energica: Registering Vehicle: Energica (9000)
I (720) v-demo: Registering Vehicle: DEMO (9000)
I (725) v-dbc: Registering Vehicle: DBC based vehicle (9000)
I (731) v-chevroletc6corvette: Registering Vehicle: Chevrolet C6 Corvette (9000)
I (739) v-cadillacc2cts: Registering Vehicle: Cadillac 2nd gen CTS (9000)
I (747) v-atto3: Registering Vehicle: BYD Atto3 (9000)
I (753) v-boltev: Registering Vehicle: Bolt EV (9000)
I (758) v-bmwi3: Registering Vehicle: BMW i3 (9000)
I (764) version: Initialising Versioning (9900)
I (772) cpu_start: Starting scheduler on PRO CPU.
I (0) cpu_start: Starting scheduler on APP CPU.
I (30) ovms-duktape: Duktape: Scripting task is running
I (855) ovms_main: Executing on CPU core 0
I (855) ovms_main: Mounting CONFIG...
I (975) ovms_main: Configure logging...
W (985) command: OpenLogfile: cannot open '/sd/logs/log', will retry on SD mount
I (985) ovms_main: Registering default configs...
I (985) location: UpdateParkPosition: vehicle is parking @0.000000,0.000000 gpslock=0 satcount=0 hdop=0.0 sq=0 invalid=1
I (985) ovms_main: Starting HOUSEKEEPING...
I (1005) housekeeping: Initialising HOUSEKEEPING Framework...
I (1005) tls: Built trusted CA cache (5 entries, 8101 bytes)
I (2165) pluginstore: Loading enabled plugins (2)
I (2165) pluginstore: Load retools web page /plugins/retools
I (2165) pluginstore: Loading enabled plugins (3)
D (2175) events: Signal(housekeeping.init)
I (2175) housekeeping: Executing on CPU core 1
I (2175) housekeeping: reset_reason: cpu0=12, cpu1=12
I (2185) housekeeping: Starting PERIPHERALS...
I (2185) peripherals: Initialising OVMS Peripherals...
I (2195) peripherals: TCP/IP Adaptor
I (2195) peripherals: ESP32 system
I (2205) peripherals: SPI bus
I (2205) peripherals: MAX7317 I/O Expander
I (2215) peripherals: ESP32 CAN
I (2215) peripherals: ESP32 WIFI
I (2225) peripherals: ESP32 ADC
I (2225) peripherals: MCP2515 CAN 1/2
I (2225) mcp2515: can2: SetPowerMode off
I (2315) peripherals: MCP2515 CAN 2/2
I (2315) mcp2515: can3: SetPowerMode off
I (2395) peripherals: SD CARD
I (2395) peripherals: CELLULAR MODEM
I (2395) gpio: GPIO[13]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (2405) gpio: GPIO[4]| InputEn: 1| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
V (2415) cellular: Starting modem task
I (2415) uart: queue free spaces: 50
I (2415) ext12v: Powering off external 12V devices
I (2425) housekeeping: Auto init max7317 (free: 160656 bytes)
I (2435) housekeeping: Auto init ext12v (free: 160656 bytes)
I (2435) housekeeping: Auto init dbc (free: 160656 bytes)
I (2445) housekeeping: Auto init wifi (free: 160656 bytes)
I (2445) housekeeping: Auto init modem (free: 160656 bytes)
I (2455) housekeeping: Auto init Pollers (free: 160656 bytes)
I (2455) cellular: Set modem driver to 'auto'
I (2465) housekeeping: Auto init vehicle (free: 160656 bytes)
I (2465) cellular: State: Enter PowerOffOn state
I (2475) v-none: Generic NONE vehicle module
I (2475) cellular-modem-auto: Power Cycle
I (2485) housekeeping: Auto init obd2ecu (free: 148856 bytes)
I (2485) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
I (2495) housekeeping: Auto init server v2 (free: 148856 bytes)
I (2505) housekeeping: Auto init server v3 (free: 148856 bytes)
I (2515) housekeeping: Auto init javascript (free: 148856 bytes)
I (2525) housekeeping: Auto init done (free: 148816 bytes)
I (2525) housekeeping: Starting USB console...
I (2535) uart: queue free spaces: 100
D (2545) events: Signal(egpio.output.1.low)
D (2545) events: Signal(power.cellular.on)
D (2545) events: Signal(system.modem.stop)
D (2555) events: Signal(vehicle.type.set)
D (2555) events: Signal(egpio.output.0.low)
D (2555) events: Signal(egpio.output.0.high)
D (2565) events: Signal(system.start)
I (2565) ovms-mdns: Starting MDNS
Welcome to the Open Vehicle Monitoring System (OVMS) - Async Console
I (2575) ovms-duktape: Duktape: Creating heap (size: 524288 bytes)
Firmware: 3.3.004-427-g0dfb100b/factory/edge
Hardware: OVMS WIFI BLE BT cores=2 rev=ESP32/3
OVMS> I (2715) ovms-duktape: Duktape: Initialising module system
I (2885) pluginstore: Loading enabled plugins (1)
OVMS> D (4185) events: Signal(vehicle.aux.12v.low)
OVMS> D (5005) events: Signal(egpio.output.0.low)
OVMS> I (7185) sdcard: SD CARD has been inserted
I (7225) sdcard: mount done
D (7225) events: Signal(sd.insert)
OVMS> D (9185) events: Signal(sd.mounted)
I (9205) command: OpenLogfile: now logging to file '/sd/logs/log'
OVMS> D (10005) events: Signal(egpio.output.0.high)
D (10205) events: Signal(egpio.output.0.low)
D (10205) cellular: State timeout PowerOffOn => PoweringOn
I (10205) cellular: State: Enter PoweringOn state
I (10205) cellular-modem-auto: Power Cycle
I (10205) Simcom: Power Cycle - T_off 2500 ms - T_on 200 ms
D (10205) events: Signal(system.modem.poweringon)
D (10205) events: Signal(egpio.output.0.high)
OVMS> D (12705) events: Signal(egpio.output.0.low)
OVMS> D (17705) events: Signal(egpio.output.0.high)
D (17905) events: Signal(egpio.output.0.low)
I (18005) cellular: State: Enter Identify state
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18105) cellular: tx-cmd: AT+CGMM
D (18185) cellular: tx-cmd: AT+CGMM
OVMS> D (19185) cellular: tx-cmd: AT+CGMM
OVMS> D (20185) cellular: tx-cmd: AT+CGMM
OVMS> D (21185) cellular: tx-cmd: AT+CGMM
OVMS> D (22185) cellular: tx-cmd: AT+CGMM
OVMS> D (23185) cellular: tx-cmd: AT+CGMM
OVMS> D (24185) cellular: tx-cmd: AT+CGMM
OVMS> D (25185) cellular: tx-cmd: AT+CGMM
OVMS> D (26185) cellular: tx-cmd: AT+CGMM
OVMS> D (27185) cellular: tx-cmd: AT+CGMM
OVMS> D (28185) cellular: tx-cmd: AT+CGMM
OVMS> D (29185) cellular: tx-cmd: AT+CGMM
OVMS> D (30185) cellular: tx-cmd: AT+CGMM
OVMS> D (31185) cellular: tx-cmd: AT+CGMM
OVMS> D (32185) cellular: tx-cmd: AT+CGMM
OVMS> D (33185) cellular: tx-cmd: AT+CGMM
OVMS> D (34185) cellular: tx-cmd: AT+CGMM
OVMS> D (35185) cellular: tx-cmd: AT+CGMM
D (35185) cellular: State timeout Identify => PowerOffOn
I (35185) cellular: State: Enter PowerOffOn state
I (35185) cellular-modem-auto: Power Cycle
I (35185) Simcom: Power Cycle - T_off 2500 ms - T_on 1000 ms
D (35185) events: Signal(system.modem.stop)
D (35185) events: Signal(egpio.output.0.high)
OVMS> D (37685) events: Signal(egpio.output.0.low)
OVMS> D (42685) events: Signal(egpio.output.0.high)
OVMS> D (43685) events: Signal(egpio.output.0.low)
D (43685) cellular: State timeout PowerOffOn => PoweringOn
I (43685) cellular: State: Enter PoweringOn state
I (43685) cellular-modem-auto: Power Cycle
I (43685) Simcom: Power Cycle - T_off 2500 ms - T_on 1000 ms
D (43685) events: Signal(system.modem.poweringon)
D (43685) events: Signal(egpio.output.0.high)
OVMS> D (46185) events: Signal(egpio.output.0.low)
OVMS> D (51185) events: Signal(egpio.output.0.high)
OVMS> D (52185) cellular: tx-cmd: AT
D (52185) cellular: tx-cmd: AT
D (52185) cellular: tx-cmd: AT
D (52185) cellular: tx-cmd: AT
D (52185) events: Signal(egpio.output.0.low)
OVMS> I (52615) cellular: State: Enter Identify state
OVMS> D (53185) cellular: tx-cmd: AT+CGMM
I (53195) cellular: Identified cellular modem: SIM7600/Experimental support for SIMCOM SIM7600
D (53195) cellular: Remove old 'auto' modem driver
I (53195) cellular: Set modem driver to 'SIM7600'
I (53195) cellular: State: Enter PoweredOn state
D (53195) events: Signal(system.modem.installed)
D (53195) events: Signal(system.modem.poweredon)
OVMS> D (63185) cellular: tx-cmd: AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (63215) cellular: mux-rx-line #0 (2/120): OK
D (63215) cellular: mux-rx-line #0 (124/0): AT+CPIN?;+CREG=1;+CGREG=1;+CEREG=1;+CTZU=1;+CTZR=1;+CLIP=1;+CMGF=1;+CNMI=1,2,0,0,0;+CSDH=1;+CMEE=2;+CSQ;+AUTOCSQ=1,1;E0;S0=0
D (63215) cellular: mux-rx-line #0 (12/20): +CPIN: READY
D (63215) cellular: mux-rx-line #0 (10/6): +CSQ: 21,0
D (63215) cellular: Signal Quality is: 21 (-71 dBm)
D (63225) cellular: mux-rx-line #0 (2/0): OK
OVMS> D (65185) cellular: tx-cmd: AT+CGMR;+ICCID
D (65195) cellular: mux-rx-line #0 (26/37): +CGMR: LE20B03SIM7600M21-A
D (65195) cellular: mux-rx-line #0 (27/6): +ICCID: 8944500408175816389
D (65205) cellular: mux-rx-line #0 (2/0): OK
OVMS> D (73185) cellular: tx-cmd: AT+CMUX=0;+CATR=6
D (73195) cellular: mux-rx-line #0 (2/0): OK
I (73195) cellular: State: Enter MuxStart state
V (73195) cellular: Starting MUX
D (73195) events: Signal(system.modem.muxstart)
OVMS> D (74185) cellular: State transition MuxStart => NetWait
I (74185) cellular: State: Enter NetWait state
V (74185) cellular: Starting NMEA
I (74185) gsm-nmea: Startup
D (74185) cellular: mux-tx #1: AT+CGPS=0
D (74185) events: Signal(system.modem.netwait)
OVMS> D (76185) cellular: mux-tx #1: AT+CGPSNMEA=258
D (76205) cellular: mux-tx #1: AT+CGPSINFOCFG=5,258
D (76225) cellular: mux-tx #1: AT+CGPS=1,1
D (76225) events: Signal(system.modem.gpsstart)
D (76225) cellular: mux-rx-line #1 (2/0): OK
D (76225) cellular: mux-rx-line #1 (2/0): OK
D (76225) cellular: mux-rx-line #1 (2/0): OK
D (76235) cellular: mux-rx-line #1 (2/0): OK
OVMS> D (84185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (84205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
I (84205) cellular: Network Registration status: RegisteredRoaming
D (84205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (84205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,4
D (84205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:11:40+04"
D (84215) cellular: mux-rx-line #3 (10/6): +CSQ: 21,0
D (84215) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (85185) cellular: mux-tx #3: AT+CPSI?
D (85185) cellular: State transition NetWait => NetStart
I (85185) cellular: State: Enter NetStart state
D (85185) events: Signal(system.modem.netstart)
D (85195) cellular: mux-rx-line #3 (57/0): +CPSI: GSM,Online,262-02,0x011a,9302,2 EGSM 900,-72,0,0-0
I (85195) cellular: Network Mode: GSM,Online
D (85195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (86185) cellular: Netstart AT+CGDCONT=1,"IP","hologram";+CGDATA="PPP",1
D (86245) cellular: mux-rx-line #2 (14/0): CONNECT 115200
I (86245) cellular: PPP Connection is ready to start
OVMS> D (87185) cellular: State transition NetStart => NetMode
I (87185) cellular: State: Enter NetMode state
V (87185) cellular: Launching PPP
V (87185) cellular: Starting PPP
I (87185) gsm-ppp: Initialising...
D (87185) events: Signal(system.modem.netmode)
I (87315) gsm-ppp: StatusCallBack: None
I (87315) gsm-ppp: status_cb: Connected
I (87315) gsm-ppp: our_ipaddr = 10.170.195.13
I (87325) gsm-ppp: his_ipaddr = 10.64.64.64
I (87325) gsm-ppp: netmask = 255.255.255.255
I (87325) gsm-ppp: DNS#0 = 8.8.8.8
I (87325) gsm-ppp: DNS#1 = 8.8.4.4
I (87325) gsm-ppp: our6_ipaddr = ::
D (87325) events: Signal(network.interface.up)
D (87325) events: Signal(system.modem.gotip)
D (87325) netmanager: Saved DNS#0 8.8.8.8
D (87325) netmanager: Saved DNS#1 8.8.4.4
D (87325) netmanager: Saved DNS#2 0.0.0.0
I (87325) netmanager: Interface priority is pp1 (10.170.195.13/255.255.255.255 gateway 10.64.64.64)
I (87325) netmanager: Set DNS#2 0.0.0.0
I (87325) netmanager: MODEM up (with WIFI client down): starting network with MODEM
D (87325) events: Signal(network.modem.up)
D (87335) events: Signal(network.up)
D (87335) events: Signal(network.interface.change)
D (87345) netmanager: MongooseTask starting
D (87345) events: Signal(network.mgr.init)
I (87365) ssh: Launching SSH Server
OVMS> D (90755) cellular: mux-rx-line #3 (10/0): +CSQ: 21,4
OVMS> D (117185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (117205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (117205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (117205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (117205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:12:13+04"
D (117205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (117205) cellular: mux-rx-line #3 (2/0): OK
W (117255) cellular: UART frame error
W (117255) cellular: UART frame error
OVMS> D (118185) cellular: mux-tx #3: AT+CPSI?
D (118205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-129,-1040,-716,10
I (118205) cellular: Network Mode: LTE,Online
D (118205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (119185) cellular: mux-tx #3: AT+COPS?
D (119205) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
I (119205) cellular: Network Provider is: vodafone.de Hologram
D (119205) cellular: mux-rx-line #3 (2/0): OK
OVMS> I (122195) housekeeping: System considered stable (RAM: 8b=102344-105060 32b=12128 SPI=3274120-3278604)
OVMS> D (147185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (147205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (147205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (147205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (147205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:12:43+04"
D (147205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (147205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (148185) cellular: mux-tx #3: AT+CPSI?
D (148205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-110,-1041,-733,11
D (148205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (149185) cellular: mux-tx #3: AT+COPS?
D (149195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (149195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (177185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (177205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (177205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (177205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (177205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:13:13+04"
D (177205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (177205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (178185) cellular: mux-tx #3: AT+CPSI?
D (178205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-105,-1040,-740,12
D (178205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (179185) cellular: mux-tx #3: AT+COPS?
D (179205) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (179205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (207185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (207205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (207205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (207205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (207205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:13:43+04"
D (207205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (207205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (208185) cellular: mux-tx #3: AT+CPSI?
D (208205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-125,-1043,-720,11
D (208205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (209185) cellular: mux-tx #3: AT+COPS?
D (209195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (209195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (237185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (237205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (237205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (237205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (237205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:14:13+04"
D (237205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (237205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (238185) cellular: mux-tx #3: AT+CPSI?
D (238205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-114,-1041,-726,11
D (238205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (239185) cellular: mux-tx #3: AT+COPS?
D (239195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (239195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (267185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (267205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (267205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (267205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (267205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:14:43+04"
D (267205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (267205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (268185) cellular: mux-tx #3: AT+CPSI?
D (268205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-124,-1041,-720,11
D (268205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (269185) cellular: mux-tx #3: AT+COPS?
D (269195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (269195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (297185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (297205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (297205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (297205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (297205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:15:13+04"
D (297205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (297205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (298185) cellular: mux-tx #3: AT+CPSI?
D (298205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-123,-1041,-718,10
D (298205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (299185) cellular: mux-tx #3: AT+COPS?
D (299195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (299195) cellular: mux-rx-line #3 (2/0): OK
OVMS> I (302205) housekeeping: 2025-03-29 18:15:19 CET (RAM: 8b=102344-104996 32b=12128 SPI=3274120-3278672)
OVMS> D (327185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (327205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (327205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (327205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (327205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:15:43+04"
D (327205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (327205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (328185) cellular: mux-tx #3: AT+CPSI?
D (328205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-118,-1042,-737,11
D (328205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (329185) cellular: mux-tx #3: AT+COPS?
D (329195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (329195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (357185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (357205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (357205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (357205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (357205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:16:13+04"
D (357205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (357205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (358185) cellular: mux-tx #3: AT+CPSI?
D (358205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-125,-1038,-718,9
D (358205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (359185) cellular: mux-tx #3: AT+COPS?
D (359195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (359195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (387185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (387205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (387205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (387205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (387205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:16:43+04"
D (387205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (387205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (388185) cellular: mux-tx #3: AT+CPSI?
D (388205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-116,-1041,-723,10
D (388205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (389185) cellular: mux-tx #3: AT+COPS?
D (389195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (389195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (417185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (417205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (417205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (417205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (417205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:17:13+04"
D (417205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (417205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (418185) cellular: mux-tx #3: AT+CPSI?
D (418205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-133,-1040,-707,8
D (418205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (419185) cellular: mux-tx #3: AT+COPS?
D (419195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (419195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (447185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (447205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (447205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (447205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (447205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:17:43+04"
D (447205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (447205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (448185) cellular: mux-tx #3: AT+CPSI?
D (448205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-117,-1039,-723,11
D (448205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (449185) cellular: mux-tx #3: AT+COPS?
D (449195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (449195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (477185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (477205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (477205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (477205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (477205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:18:13+04"
D (477205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (477205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (478185) cellular: mux-tx #3: AT+CPSI?
D (478205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-111,-1042,-736,11
D (478205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (479185) cellular: mux-tx #3: AT+COPS?
D (479195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (479195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (507185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (507205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (507205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (507205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (507205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:18:43+04"
D (507205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (507205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (508185) cellular: mux-tx #3: AT+CPSI?
D (508205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-134,-1038,-702,8
D (508205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (509185) cellular: mux-tx #3: AT+COPS?
D (509195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (509195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (537185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (537205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (537205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (537205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (537205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:19:13+04"
D (537205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (537205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (538185) cellular: mux-tx #3: AT+CPSI?
D (538205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-124,-1041,-717,10
D (538205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (539185) cellular: mux-tx #3: AT+COPS?
D (539195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (539195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (567185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (567205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (567205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (567205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (567205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:19:43+04"
D (567205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (567205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (568185) cellular: mux-tx #3: AT+CPSI?
D (568205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-114,-1041,-732,11
D (568205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (569185) cellular: mux-tx #3: AT+COPS?
D (569195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (569195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (597185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (597205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (597205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (597205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (597205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:20:13+04"
D (597205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (597205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (598185) cellular: mux-tx #3: AT+CPSI?
D (598205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-121,-1041,-719,11
D (598205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (599185) cellular: mux-tx #3: AT+COPS?
D (599195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (599195) cellular: mux-rx-line #3 (2/0): OK
OVMS> I (602205) housekeeping: 2025-03-29 18:20:19 CET (RAM: 8b=102344-104996 32b=12128 SPI=3274120-3278640)
OVMS> D (627185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (627205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (627205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (627205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (627205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:20:43+04"
D (627205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (627205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (628185) cellular: mux-tx #3: AT+CPSI?
D (628205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-114,-1041,-730,11
D (628205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (629185) cellular: mux-tx #3: AT+COPS?
D (629195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (629195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (657185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (657205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (657205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (657205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (657205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:21:13+04"
D (657205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (657205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (658185) cellular: mux-tx #3: AT+CPSI?
D (658205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-106,-1040,-736,11
D (658205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (659185) cellular: mux-tx #3: AT+COPS?
D (659195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (659195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (687185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (687205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (687205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (687205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (687205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:21:43+04"
D (687205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (687205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (688185) cellular: mux-tx #3: AT+CPSI?
D (688205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-112,-1041,-731,11
D (688205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (689185) cellular: mux-tx #3: AT+COPS?
D (689195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (689195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (717185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (717205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (717205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (717205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (717205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:22:13+04"
D (717205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (717205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (718185) cellular: mux-tx #3: AT+CPSI?
D (718205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-126,-1043,-711,8
D (718205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (719185) cellular: mux-tx #3: AT+COPS?
D (719195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (719195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (747185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (747205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (747205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (747205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (747205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:22:43+04"
D (747205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (747205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (748185) cellular: mux-tx #3: AT+CPSI?
D (748205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-128,-1040,-711,8
D (748205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (749185) cellular: mux-tx #3: AT+COPS?
D (749195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (749195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (777185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (777205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (777205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (777205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (777205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:23:13+04"
D (777205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (777205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (778185) cellular: mux-tx #3: AT+CPSI?
D (778205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-143,-1040,-699,8
D (778205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (779185) cellular: mux-tx #3: AT+COPS?
D (779195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (779195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (807185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (807205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (807205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (807205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (807205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:23:43+04"
D (807205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (807205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (808185) cellular: mux-tx #3: AT+CPSI?
D (808205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-100,-1041,-742,11
D (808205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (809185) cellular: mux-tx #3: AT+COPS?
D (809195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (809195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (837185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (837205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (837205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (837205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (837205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:24:13+04"
D (837205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (837205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (838185) cellular: mux-tx #3: AT+CPSI?
D (838205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-131,-1042,-709,11
D (838205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (839185) cellular: mux-tx #3: AT+COPS?
D (839195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (839195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (867185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (867205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (867205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (867205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (867205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:24:43+04"
D (867205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (867205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (868185) cellular: mux-tx #3: AT+CPSI?
D (868205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-151,-1040,-687,11
D (868205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (869185) cellular: mux-tx #3: AT+COPS?
D (869195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (869195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (897185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (897205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (897205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (897205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (897205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:25:13+04"
D (897205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (897205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (898185) cellular: mux-tx #3: AT+CPSI?
D (898205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-121,-1044,-728,10
D (898205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (899185) cellular: mux-tx #3: AT+COPS?
D (899195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (899195) cellular: mux-rx-line #3 (2/0): OK
OVMS> I (902205) housekeeping: 2025-03-29 18:25:19 CET (RAM: 8b=102344-104996 32b=12128 SPI=3274120-3278672)
OVMS> D (927185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (927205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (927205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (927205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (927205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:25:43+04"
D (927205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (927205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (928185) cellular: mux-tx #3: AT+CPSI?
D (928205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-135,-1044,-706,9
D (928205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (929185) cellular: mux-tx #3: AT+COPS?
D (929195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (929195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (957185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (957205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (957205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (957205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (957205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:26:13+04"
D (957205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (957205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (958185) cellular: mux-tx #3: AT+CPSI?
D (958205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-114,-1045,-737,11
D (958205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (959185) cellular: mux-tx #3: AT+COPS?
D (959195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (959195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (987185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (987205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (987205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (987205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (987205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:26:43+04"
D (987205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (987205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (988185) cellular: mux-tx #3: AT+CPSI?
D (988205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-109,-1041,-731,11
D (988205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (989185) cellular: mux-tx #3: AT+COPS?
D (989195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (989195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1017185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1017205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1017205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1017205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1017205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:27:13+04"
D (1017205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1017205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1018185) cellular: mux-tx #3: AT+CPSI?
D (1018205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-135,-1056,-719,11
D (1018205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1019185) cellular: mux-tx #3: AT+COPS?
D (1019195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1019195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1047185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1047205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1047205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1047205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1047205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:27:43+04"
D (1047205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1047205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1048185) cellular: mux-tx #3: AT+CPSI?
D (1048205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-126,-1060,-734,8
D (1048205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1049185) cellular: mux-tx #3: AT+COPS?
D (1049195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1049195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1077185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1077205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1077205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1077205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1077205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:28:13+04"
D (1077205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1077205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1078185) cellular: mux-tx #3: AT+CPSI?
D (1078205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-108,-1055,-749,10
D (1078205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1079185) cellular: mux-tx #3: AT+COPS?
D (1079195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1079195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1105955) cellular: mux-rx-line #3 (10/0): +CSQ: 18,4
D (1105955) cellular: Signal Quality is: 18 (-77 dBm)
OVMS> D (1107185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1107205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1107205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1107205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1107205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:28:43+04"
D (1107205) cellular: mux-rx-line #3 (10/6): +CSQ: 18,4
D (1107205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1108185) cellular: mux-tx #3: AT+CPSI?
D (1108205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-122,-1064,-738,11
D (1108205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1109185) cellular: mux-tx #3: AT+COPS?
D (1109195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1109195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1120955) cellular: mux-rx-line #3 (10/0): +CSQ: 21,4
D (1120955) cellular: Signal Quality is: 21 (-71 dBm)
OVMS> D (1137185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1137205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1137205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1137205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1137205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:29:13+04"
D (1137205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1137205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1138185) cellular: mux-tx #3: AT+CPSI?
D (1138205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-120,-1053,-732,10
D (1138205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1139185) cellular: mux-tx #3: AT+COPS?
D (1139195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1139195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1167185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1167205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1167205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1167205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1167205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:29:43+04"
D (1167205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1167205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1168185) cellular: mux-tx #3: AT+CPSI?
D (1168205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-123,-1050,-721,8
D (1168205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1169185) cellular: mux-tx #3: AT+COPS?
D (1169195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1169195) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1197185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1197205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1197205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1197205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1197205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:30:13+04"
D (1197205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1197205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1198185) cellular: mux-tx #3: AT+CPSI?
D (1198205) cellular: mux-rx-line #3 (83/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-131,-1044,-712,8
D (1198205) cellular: mux-rx-line #3 (2/0): OK
OVMS> D (1199185) cellular: mux-tx #3: AT+COPS?
D (1199195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1199195) cellular: mux-rx-line #3 (2/0): OK
OVMS> I (1202205) housekeeping: 2025-03-29 18:30:19 CET (RAM: 8b=102344-104996 32b=12128 SPI=3274120-3278640)
OVMS> enable
Password:
Secure mode
OVMS# vehicle module VWUP D (1227185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1227205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1227205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1227205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1227205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:30:43+04"
D (1227205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1227205) cellular: mux-rx-line #3 (2/0): OK
OVMS# vehicle module VWUP D (1228185) cellular: mux-tx #3: AT+CPSI?
D (1228205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-123,-1050,-729,11
D (1228205) cellular: mux-rx-line #3 (2/0): OK
OVMS# vehicle module VWUP
Vehicle module 'VW e-Up' (code VWUP) loaded and running
OVMS# D (1228585) events: Signal(vehicle.type.cleared)
I (1228595) v-none: Shutdown NONE vehicle module
D (1228595) vehicle-poll: Pollers: Queue Command()
D (1228595) vehicle-poll: Pollers: Queue Command()
D (1228595) vehicle-poll: Pollers: Queue Command()
I (1228595) v-vweup: Start VW e-Up vehicle module
D (1228605) events: Signal(vehicle.charge.prepare)
D (1228605) v-vweup: VW e-Up reload configuration
D (1228605) v-vweup: ConfigChanged: chg_climit: 32, chg_climit_old: 0, cc_temp: 22, cc_temp_old: 0
I (1228605) v-vweup: Starting connection: OBDII
D (1228625) events: Signal(power.can1.on)
D (1228635) events: Signal(egpio.output.2.low)
D (1228635) vehicle-poll: PollSetPidList - Setting NULL List
D (1228635) vehicle-poll: Pollers: Queue Command()
D (1228635) vehicle-poll: Pollers: Queue Command()
I (1228635) v-vweup: PollSetState: OFF -> OFF
D (1228645) v-vweup: Poll vector: size=146 cap=168
D (1228645) vehicle-poll: PollSetPidList - Setting for bus=1 defbus=1
D (1228645) vehicle-poll: Poll List: Added Entry !v.standard
D (1228645) events: Signal(vehicle.charge.mode)
D (1228655) events: Signal(vehicle.type.set)
OVMS# D (1229185) cellular: mux-tx #3: AT+COPS?
D (1229205) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1229205) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (1229475) v-vweup: PollerStateTicker: [online] LVPwrState=0 HVChgMode=0 SOC=0.0% LVAutoChg=0 12V=0.0 DCDC_U=0.0 DCDC_I=0.0 ChgEff=0.0 BatI=0.0 BatIAge=1227 => PollState 0->1
I (1229475) v-vweup: PollerStateTicker: Setting car state to AWAKE
I (1229475) v-vweup: PollSetState: OFF -> AWAKE
D (1229475) vehicle-poll: Pollers: Queue SetState()
D (1229475) vehicle-poll: Pollers: PollState(1)
E (1229475) can: can1: intr=2 rxpkt=0 txpkt=0 errflags=0x8000a2 rxerr=10 txerr=0 rxinval=0 rxovr=0 txovr=0 txdelay=0 txfail=0 wdgreset=0 errreset=0 txqueue=0
E (1229475) can: can1: intr=17 rxpkt=0 txpkt=0 errflags=0x8040a2 rxerr=135 txerr=0 rxinval=0 rxovr=0 txovr=0 txdelay=0 txfail=0 wdgreset=0 errreset=0 txqueue=0
D (1229475) events: Signal(vehicle.aux.12v.on)
OVMS# D (1230185) events: Signal(vehicle.aux.12v.low)
OVMS# D (1230475) v-vweup: PollerStateTicker: [offline] LVPwrState=0 HVChgMode=0 SOC=0.0% LVAutoChg=0 12V=0.0 DCDC_U=0.0 DCDC_I=0.0 ChgEff=0.0 BatI=0.0 BatIAge=1228 => PollState 1->0
I (1230475) v-vweup: PollerStateTicker: Setting car state to OFF
I (1230475) v-vweup: PollSetState: AWAKE -> OFF
D (1230475) vehicle-poll: Pollers: Queue SetState()
D (1230475) vehicle-poll: Pollers: PollState(0)
D (1230475) events: Signal(vehicle.aux.12v.off)
OVMS# location status
Currently at 0.000000,0.000000 (without GPS lock)
There is 1 location defined
No active locations
OVMS# cellular status
MODEM Status
Model: SIM7600
Network Registration: RegisteredRoaming
Provider: vodafone.de Hologram
Signal: -71 dBm
Mode: LTE,Online
State: NetMode
Mux: Status up
PPP: Connected on channel: #2
GPS: Connected on channel: #1
OVMS# lofg l g level D (1257185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
D (1257205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1257205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1257205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1257205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:31:13+04"
D (1257205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1257205) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose D (1258185) cellular: mux-tx #3: AT+CPSI?
D (1258205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-125,-1048,-721,11
D (1258205) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsmD (1259185) cellular: mux-tx #3: AT+COPS?
D (1259195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1259195) cellular: mux-rx-line #3 (2/0): OK
OVMS# log level verbose gsm-nmea
Logging level for gsm-nmea set to verbose
OVMS# log level verbose gsm-nmea mux
Logging level for gsm-mux set to verbose
OVMS# V (1266225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (1266225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (1271225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (1271225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (1276225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (1276225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (1281225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (1281225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (1286225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (1286225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# D (1287185) cellular: mux-tx #3: AT+CREG?;+CGREG?;+CEREG?;+CCLK?;+CSQ
V (1287205) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=75, LEN=103)
D (1287205) cellular: mux-rx-line #3 (10/83): +CREG: 1,5
D (1287205) cellular: mux-rx-line #3 (11/68): +CGREG: 1,5
D (1287205) cellular: mux-rx-line #3 (11/53): +CEREG: 1,5
D (1287205) cellular: mux-rx-line #3 (29/20): +CCLK: "25/03/29,18:31:43+04"
D (1287205) cellular: mux-rx-line #3 (10/6): +CSQ: 21,4
D (1287205) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (1288185) cellular: mux-tx #3: AT+CPSI?
V (1288205) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=c2, LEN=94)
D (1288205) cellular: mux-rx-line #3 (84/0): +CPSI: LTE,Online,262-02,0xB092,13250581,155,EUTRAN-BAND1,100,5,5,-122,-1045,-723,11
V (1288205) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=0f, LEN=12)
D (1288205) cellular: mux-rx-line #3 (2/0): OK
OVMS# D (1289185) cellular: mux-tx #3: AT+COPS?
V (1289195) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=87, LEN=51)
D (1289195) cellular: mux-rx-line #3 (35/6): +COPS: 0,0,"vodafone.de Hologram",7
D (1289205) cellular: mux-rx-line #3 (2/0): OK
OVMS# V (1291225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (1291225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS# V (1296225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=fa, LEN=78)
V (1296225) gsm-mux: ProcessFrame(CHAN=3, ADDR=0d, CTRL=ff, FCS=f4, LEN=82)
OVMS#
-------------- 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/20250329/9d959787/attachment-0001.sig>
More information about the OvmsDev
mailing list