busk/firmware.h
2023-05-18 09:20:54 +00:00

11 lines
180 B
C

#include "stdint.h"
struct fw_header {
uint32_t size;
uint32_t crc;
uint8_t data[];
};
typedef void nopar();
unsigned int crc32 (const unsigned char *buf, int len);