Change unsigned short eecr; to unsigned char eecr; in libavrdude's AVRPART

This commit is contained in:
Stefan Rueger
2022-08-09 13:19:40 +01:00
parent 7c8d336e27
commit 8a717987ec
2 changed files with 2 additions and 2 deletions

View File

@@ -270,7 +270,7 @@ typedef struct avrpart {
unsigned char idr; /* JTAG ICE mkII XML file parameter */
unsigned char rampz; /* JTAG ICE mkII XML file parameter */
unsigned char spmcr; /* JTAG ICE mkII XML file parameter */
unsigned short eecr; /* JTAC ICE mkII XML file parameter */
unsigned char eecr; /* JTAC ICE mkII XML file parameter */
unsigned int mcu_base; /* Base address of MCU control block in ATxmega devices */
unsigned int nvm_base; /* Base address of NVM controller in ATxmega devices */
unsigned int ocd_base; /* Base address of OCD module in AVR8X/UPDI devices */