]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - include/print-utils.h
Adaptions for fatfs R0.13b
[z180-stamp.git] / include / print-utils.h
index 238cf4074282911184fa818c745db8e5e4cc5303..ffff039944b6c294557cb82f27ed67f8b6385bbe 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
 #ifndef PRINT_UTILS_H
 #define PRINT_UTILS_H
 
 
 void print_blanks(uint_fast8_t count);
 int dump_mem(uint32_t address, uint32_t offset, uint32_t len,
-               void (*readfkt)(uint8_t *, uint32_t, uint8_t), char *title);
+               int (*readfkt)(uint8_t *, uint32_t, uint8_t), char *title);
 
 void dump_eep(uint32_t addr, unsigned int len, char *title);
-void dump_ram(uint32_t addr, uint32_t offset, unsigned int len, char *title);
+void dump_ram(uint8_t *addr, size_t offset, unsigned int len, char *title);
 
-void eeprom_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
-void ram_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
+int eeprom_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
+int ram_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
+int flash_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
 
 #endif /* PRINT_UTILS_H */