mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-28 06:55:27 +00:00
Get rid of the Usage file.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@51 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
11
avr.h
11
avr.h
@@ -37,7 +37,8 @@
|
||||
/*
|
||||
* AVR memory designations; the order of these is important, these are
|
||||
* used as indexes into statically initialized data, don't change them
|
||||
* around.
|
||||
* around. Specifically, avr_read_byte() and avr_write_byte() rely on
|
||||
* the order.
|
||||
*/
|
||||
typedef enum {
|
||||
AVR_EEPROM,
|
||||
@@ -48,7 +49,6 @@ typedef enum {
|
||||
|
||||
#if 0
|
||||
struct avrmem {
|
||||
AVRMEM memtype;
|
||||
int startaddr;
|
||||
int size;
|
||||
unsigned char * buf;
|
||||
@@ -67,11 +67,18 @@ struct avrpart {
|
||||
int min_write_delay; /* microseconds */
|
||||
int max_write_delay; /* microseconds */
|
||||
int chip_erase_delay; /* microseconds */
|
||||
#if 1
|
||||
unsigned char * mem[AVR_MAXMEMTYPES]; /* pointers to avr memory
|
||||
buffers, indexed by
|
||||
AVR_EEPROM or AVR_FLASH */
|
||||
#else
|
||||
struct avrmem * mem[AVR_MAXMEMTYPES]; /* pointers to avr memory
|
||||
buffers, indexed by
|
||||
AVR_EEPROM or AVR_FLASH */
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
extern struct avrpart parts[];
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user