Refactor fwu library into a Zephyr module

This commit is contained in:
2025-07-02 21:30:15 +02:00
parent 140d2baa24
commit c3df6565b7
7 changed files with 20 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
#ifndef FWU_H
#define FWU_H
#include <stdint.h>
void fwu_init(void);
void fwu_handler(uint16_t addr, uint16_t reg);
uint16_t fwu_get_last_chunk_crc(void);
#endif // FWU_H