fix: max_geo_range correctly identified as ADC Scale factor number.
This commit is contained in:
@@ -4,6 +4,8 @@ Ground-up Python replacement for **Blastware**, Instantel's Windows-only softwar
|
|||||||
managing MiniMate Plus seismographs. Connects over direct RS-232 or cellular modem
|
managing MiniMate Plus seismographs. Connects over direct RS-232 or cellular modem
|
||||||
(Sierra Wireless RV50 / RV55). Current version: **v0.12.1**.
|
(Sierra Wireless RV50 / RV55). Current version: **v0.12.1**.
|
||||||
|
|
||||||
|
When new information about the protocol is discovered, please update the instantel_protocol_reference.md with the findings in addition to this document
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Project layout
|
## Project layout
|
||||||
@@ -362,7 +364,8 @@ Do NOT use fixed absolute offsets for sample_rate or record_time.
|
|||||||
| record_time | float32 BE at anchor + 10 |
|
| record_time | float32 BE at anchor + 10 |
|
||||||
| trigger_level_geo | float32 BE, located in channel block |
|
| trigger_level_geo | float32 BE, located in channel block |
|
||||||
| alarm_level_geo | float32 BE, adjacent to trigger_level_geo |
|
| alarm_level_geo | float32 BE, adjacent to trigger_level_geo |
|
||||||
| max_range_geo | float32 BE, adjacent to alarm_level_geo — **⚠ value and units UNKNOWN** (reads 6.206053 but doesn't match either UI range option; may not be the ADC full-scale — see GitHub issue) |
|
| geo_hardware_constant (adc_scale_factor) | float32 BE at channel_label+28 — reads **6.206053** on BOTH tested units (BE11529 and BE18189); identical across all geo channels (Tran/Vert/Long) and all captures. **Confirmed 2026-04-17 from Interface Handbook §4.5**: this is the **ADC-to-velocity scale factor** = 1/sensitivity = (in/s per V). Firmware uses it as: `PPV (in/s) = ADC_voltage × 6.206053`. Cross-check: `1.61133 V (ADC full-scale) × 6.206053 = 10.000 in/s` (Normal range ✅). Stored field name: `max_range_geo`. Do NOT write this field — it is a hardware/firmware constant for the Instantel standard geophone. |
|
||||||
|
| max_range_geo | **uint8 at channel_label+20** — reads `0x01` on all tested captures (both units, all geo channels). Hypothesis: `0x01` = Normal 10.000 in/s, `0x00` = Sensitive 1.25 in/s. Unconfirmed — need a capture with 1.25 in/s range to verify. |
|
||||||
| setup_name | ASCII, null-padded, in cfg body |
|
| setup_name | ASCII, null-padded, in cfg body |
|
||||||
| project / client / operator / sensor_location | ASCII, label-value pairs |
|
| project / client / operator / sensor_location | ASCII, label-value pairs |
|
||||||
|
|
||||||
@@ -710,7 +713,7 @@ offsets in the raw 1A/E5 payload. Only fields with `✅` have confirmed offsets
|
|||||||
- Geophone Type: Standard Triaxial / 4.5 Hz (bool/enum)
|
- Geophone Type: Standard Triaxial / 4.5 Hz (bool/enum)
|
||||||
- Geophone Channels: Enable all geophones (bool), Trigger Source (bool)
|
- Geophone Channels: Enable all geophones (bool), Trigger Source (bool)
|
||||||
- Chan 1-3 Trigger Level (float, in/s) ✅ (`trigger_level_geo`)
|
- Chan 1-3 Trigger Level (float, in/s) ✅ (`trigger_level_geo`)
|
||||||
- Chan 1-3 Maximum Range: Normal 10.000 / 1.25 in/s (enum) ❓ (`max_range_geo` — offset found, reads 6.206053 which matches neither UI value; units and meaning unknown — do NOT use as ADC full-scale)
|
- Chan 1-3 Maximum Range: Normal 10.000 / 1.25 in/s (enum) ❓ (`uint8` at `channel_label+20`; reads `0x01` on both tested units, both set to Normal 10.000 in/s; hypothesis: `0x01` = Normal (Gain=1, 10 in/s), `0x00` = Sensitive (Gain=8, 1.25 in/s) — UNCONFIRMED, need 1.25 in/s capture to verify). **Note: the float32 at `channel_label+28` (= 6.206053) is NOT this field** — it is the ADC-to-velocity scale factor (1/sensitivity, (in/s)/V); confirmed 2026-04-17 via Interface Handbook §4.5: 1.61133 V × 6.206053 = 10.000 in/s.
|
||||||
- Microphone Channels: Enable all microphones (bool), Trigger Source (bool)
|
- Microphone Channels: Enable all microphones (bool), Trigger Source (bool)
|
||||||
- Chan 4 Trigger Level (dB or psi depending on units)
|
- Chan 4 Trigger Level (dB or psi depending on units)
|
||||||
|
|
||||||
@@ -943,4 +946,4 @@ call-home.
|
|||||||
- Locate "Sensor Check" byte in compliance config (need capture with Disabled vs Before-monitoring)
|
- Locate "Sensor Check" byte in compliance config (need capture with Disabled vs Before-monitoring)
|
||||||
- Modem manager — push RV50/RV55 configs via Sierra Wireless API
|
- Modem manager — push RV50/RV55 configs via Sierra Wireless API
|
||||||
- RV55 DCD/DTR issue — newer RV55 firmware doesn't assert DCD by default; units don't
|
- RV55 DCD/DTR issue — newer RV55 firmware doesn't assert DCD by default; units don't
|
||||||
resume monitoring after call-home disconnect (`--restart-monitoring` flag deferred)
|
resume monitoring after call-home disconnect (`--restart-monitoring` flag deferred) | ||||||