diff options
Diffstat (limited to 'params.h')
-rw-r--r-- | params.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -20,9 +20,13 @@ #ifndef PARAMS_H #define PARAMS_H -#include "halfkay.h" +struct flashparams { + size_t memsz; + size_t blksz; + size_t cmdsz; + size_t addrshft; +}; -void listparams(void); -int getparams(struct flashparams *fp, const char *mcufile); +bool getparams(struct flashparams *fp, const char *name); #endif /* PARAMS_H */ |