Skip to content
Vehicle properties
Diagnostics & OBD2

WATCHDOG_ALIVE

What it is

Defines an event that car watchdog updates to tell it's alive.

Car watchdog sets this property to system uptime in milliseconds at every 3 second. During the boot, the update may take longer time.

How the ID is built

A property ID is a 32-bit value packing four fields. Reading 0x11500f31 apart:

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x01000000GLOBAL
Type0x00ff00000x00500000INT64
Ordinal0x0000ffff0x00000f310xf31

Reading it from an app

CarPropertyManager mgr = (CarPropertyManager)
        car.getCarManager(Car.PROPERTY_SERVICE);

mgr.setProperty(Long.class,
        VehiclePropertyIds.WATCHDOG_ALIVE, 0, value);

This property is write-only — it cannot be read back. It fires a callback whenever the value changes.