zwischenstand

This commit is contained in:
2026-03-21 13:49:05 +01:00
parent b863b04505
commit 01448223ad
30 changed files with 1446 additions and 295 deletions

View File

@@ -24,7 +24,9 @@ export const FRAME = {
export const DATA = {
PROTO_INFO: 0x01,
DEVICE_INFO: 0x02,
FS_INFO: 0x03,
FW_INFO: 0x04,
FILE_GET: 0x20,
FILE_PUT: 0x21,
@@ -56,4 +58,11 @@ export const ZEPHYR_ERRORS: Record<number, ZephyrError> = {
36: { text: "Dateiname oder Pfad zu lang", zephyr: "ENAMETOOLONG" },
88: { text: "Funktion im Buzzer nicht implementiert", zephyr: "ENOSYS" },
134: { text: "Operation nicht unterstützt", zephyr: "ENOTSUP" }
};
};
export const FW_STATUS = {
CONFIRMED: 0x00,
PENDING: 0x01,
TESTING: 0x02,
UNKNOWN: 0xFF,
}