Files
iot_skeleton/esp32/main/fw_command.h
2026-04-22 20:11:55 +03:00

9 lines
165 B
C

#pragma once
typedef struct {
bool is_fw;
char url[256];
char sha256[65]; // 64 + \0
} fw_cmd_t;
bool parse_fw_command(const char *msg, fw_cmd_t *out);