Fix userrow size and page_size for ATtiny3216 and ATtiny3217

This commit is contained in:
Stefan Rueger 2022-11-26 17:37:51 +00:00
parent baa52e3a02
commit ba9d24fdd2
No known key found for this signature in database
GPG Key ID: B0B4F1FD86B1EC55
1 changed files with 10 additions and 16 deletions

View File

@ -14491,32 +14491,26 @@ part parent ".avr8x_tiny"
offset = 0x8000;
readsize = 256;
;
memory "userrow"
size = 64;
page_size = 64;
;
memory "usersig"
alias "userrow";
;
;
#------------------------------------------------------------
# ATtiny3217
#------------------------------------------------------------
part parent ".avr8x_tiny"
part parent "t3216"
desc = "ATtiny3217";
id = "t3217";
mcuid = 315;
n_interrupts = 31;
signature = 0x1e 0x95 0x22;
memory "eeprom"
size = 256;
page_size = 64;
offset = 0x1400;
readsize = 256;
;
memory "flash"
size = 0x8000;
page_size = 128;
offset = 0x8000;
readsize = 256;
;
;
#------------------------------------------------------------