summaryrefslogtreecommitdiffstats
path: root/sw/programmer/avr/fileinfo.h
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2017-08-07 19:27:05 +0200
committerNao Pross <naopross@thearcway.org>2017-08-07 19:27:05 +0200
commitd0801b36b47d8f3da610597160fde92059fd7e62 (patch)
treef9f0e348145c3548433e60adbf459e784b909f96 /sw/programmer/avr/fileinfo.h
parentfilesystem structure intro and docs (diff)
downloadz80uPC-d0801b36b47d8f3da610597160fde92059fd7e62.tar.gz
z80uPC-d0801b36b47d8f3da610597160fde92059fd7e62.zip
implementation for avr programmer
the programmer will receive the binary in blocks of defined size by a program under sw/programmer/linux (moved from sw/linux).
Diffstat (limited to 'sw/programmer/avr/fileinfo.h')
-rw-r--r--sw/programmer/avr/fileinfo.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/sw/programmer/avr/fileinfo.h b/sw/programmer/avr/fileinfo.h
new file mode 100644
index 0000000..6c831ed
--- /dev/null
+++ b/sw/programmer/avr/fileinfo.h
@@ -0,0 +1,13 @@
+#ifndef __FILEINFO_H__
+#define __FILEINFO_H__
+
+#include <stdio.h>
+
+struct file_info
+{
+ size_t size;
+ size_t blklen;
+ uint16_t start_addr;
+};
+
+#endif