Skip to content

FIELD_RAW_SALVAGED

Generated from the code registries by scripts/gen_code_pages.py — do not hand-edit.

Field bytes undecodable as declared type; raw bytes kept.

Provenance — a record of something chiptime did to your data (dropped, repaired, synthesized, reinterpreted, ignored). Appears in provenance[] with an action, a scope, and machine data — the never-lose-data-silently contract in practice.

Proven by corpus cases

This code's behavior is pinned by committed conformance cases: protocol/accumulator-rollover · protocol/compressed-speed-distance · protocol/invalid-base-type · sensors/hr-event-timestamp-12 · temporal/timestamp16-rollover

Handling it

import chiptime

result = chiptime.parse("activity.fit")
for d in [*result.errors, *result.warnings, *result.provenance]:
    if d.code == "FIELD_RAW_SALVAGED":
        print(d.code, "-", d.detail)

All codes are stable machine contract — grep logs for the string FIELD_RAW_SALVAGED, branch on it in pipelines, and see the codes registry for the full list.