Skip to content

Commit a2a06f5

Browse files
Randall Bohn (Huckle)Peter Van Hoyweghen
Randall Bohn (Huckle)
authored and
Peter Van Hoyweghen
committed
Be more specific about datatypes in the parameter struct.
1 parent ce595ce commit a2a06f5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build/shared/examples/11.ArduinoISP/ArduinoISP/ArduinoISP.ino

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ typedef struct param {
9191
uint8_t selftimed;
9292
uint8_t lockbytes;
9393
uint8_t fusebytes;
94-
int flashpoll;
95-
int eeprompoll;
96-
int pagesize;
97-
int eepromsize;
98-
int flashsize;
99-
}
94+
uint8_t flashpoll;
95+
uint16_t eeprompoll;
96+
uint16_t pagesize;
97+
uint16_t eepromsize;
98+
uint32_t flashsize;
99+
}
100100
parameter;
101101

102102
parameter param;

0 commit comments

Comments
 (0)