Fetching camera data...
Error codes are bitmask flags. A camera may report multiple flags combined into a single number.
| Flag | Value | Meaning |
|---|---|---|
| Bit 0 | 1 | Normal operation |
| Bit 2 | 4 | Upload flag |
| Bit 9 | 512 | Settings sync |
| Bit 12 | 4096 | Configuration update |
| Bit 13 | 8192 | System event |
| Bit 14 | 16384 | Network event |
| Bit 16 | 65536 | Storage event |
Common combined codes:
| Code | Flags | Description |
|---|---|---|
| 1 | Normal | Normal operation — no issues |
| 513 | 1 + 512 | Normal + settings sync |
| 517 | 1 + 4 + 512 | Normal + upload + settings sync |
| 4097 | 1 + 4096 | Normal + configuration update |
| 8193 | 1 + 8192 | Normal + system event |
| 8705 | 1 + 512 + 8192 | Normal + settings sync + system event |
| 16897 | 1 + 512 + 16384 | Normal + settings sync + network event |
| 65537 | 1 + 65536 | Normal + storage event |
| 66049 | 1 + 512 + 65536 | Normal + settings sync + storage event |