diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-11-08 14:37:02 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-11-08 14:37:02 -0500 |
| commit | 8f0fc9ba2a8efe870f3584af2c439b2c2fd899e5 (patch) | |
| tree | bc4c9c96e18bc816db39ce6ca75ff18accc684ee | |
| parent | d7fb6037e427aafc33b981bba2ae7d29e77d9ff0 (diff) | |
| download | can-gauge-interface-8f0fc9ba2a8efe870f3584af2c439b2c2fd899e5.zip | |
update table.h comment
| -rw-r--r-- | fw/table.h | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -1,15 +1,7 @@ /* Table datastructure for storing calibrations in the EEPROM. * * A table has a fixed number of rows that define a key/value mapping. - * Keys and values are 32-bit and 16-bit respectively. - * - * Keys may be signed or unsigned; whether they are interpreted as - * signed or unsigned when they are read depends on the context. They - * must be monotonically increasing down the table. - * - * Values are unsigned 16-bit integers. - * - * Numbers are stored big-endian. + * Keys are I32, values are U16. They are stored big-endian. * * See also: `doc/datafmt.pdf' * |