]> cloudbase.mooo.com Git - z180-stamp.git/blame_incremental - include/print-utils.h
Version 0.6.8.3
[z180-stamp.git] / include / print-utils.h
... / ...
CommitLineData
1/*
2 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef PRINT_UTILS_H
8#define PRINT_UTILS_H
9
10#include "common.h"
11#include <avr/eeprom.h>
12
13void print_blanks(uint_fast8_t count);
14int dump_mem(uint32_t address, uint32_t offset, uint32_t len,
15 int (*readfkt)(uint8_t *, uint32_t, uint8_t), char *title);
16
17void dump_eep(uint32_t addr, unsigned int len, char *title);
18void dump_ram(uint8_t *addr, size_t offset, unsigned int len, char *title);
19
20int eeprom_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
21int ram_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
22int flash_read_buf(uint8_t *buf, uint32_t addr, uint8_t count);
23
24#endif /* PRINT_UTILS_H */