Good day!
Thanks for the great prgrammator. He's much sews PIC & AVR, but ran into a problem.
Can not sew atmega1284p, wrote "Code size exceeds limits".
What is the problem. help please.
Thanks in advance. With respect VUK.
PS: Sorry for the curve English - http://translate.google.ru/)))
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You're right; there is a code limit of 0x10000 and the device size is 0x20000. I never tried the device so I couldn't find this bug.
Anyways, you can fix function WriteATmega in progAVR.c:
in place of
if(dim>0x10000||dim<0){ ....
write
if(dim>0x20000||dim<0){ ....
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Good day!
Thanks for the great prgrammator. He's much sews PIC & AVR, but ran into a problem.
Can not sew atmega1284p, wrote "Code size exceeds limits".
What is the problem. help please.
Thanks in advance. With respect VUK.
PS: Sorry for the curve English - http://translate.google.ru/)))
You're right; there is a code limit of 0x10000 and the device size is 0x20000. I never tried the device so I couldn't find this bug.
Anyways, you can fix function WriteATmega in progAVR.c:
in place of
if(dim>0x10000||dim<0){ ....
write
if(dim>0x20000||dim<0){ ....
Thank you!
all turned out)))