add dump functions

This commit is contained in:
david
2009-06-25 11:11:56 +02:00
parent e4e4beac3a
commit 0b12206f1d
9 changed files with 121 additions and 46 deletions

12
avr/usbload/dump.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef DUMP_H
#define DUMP_H
#include <stdlib.h>
#include <stdint.h>
#include <stdarg.h>
void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet);
void dump_memoryt(uint32_t bottom_addr, uint32_t top_addr);
#endif