avra icon indicating copy to clipboard operation
avra copied to clipboard

Suport for ATmega8535

Open OzPineapple opened this issue 2 years ago • 1 comments

.define m8535def.inc There's the file for the ATmega8535 but there's no support fot it at listing devices:

$ avra --devices | grep ATmega85
ATmega8515   |       8192 |    0x0060 |      512 |         512 |          133

It's ironic. The only ATmega is the one not avliable.

$ avra file.asm
AVRA: advanced AVR macro assembler (version 1.4.2)
Pass 1...
/usr/include/avr/m8535def.inc(47) : Error   : Unknown device: ATmega8535
Warning : No .DEVICE definition found. Cannot make useful address range check !
Warning : No .DEVICE definition found. Cannot make useful address range check !
Warning : No .DEVICE definition found. Cannot make useful address range check !

will be there support on the future for this?

OzPineapple avatar Jun 10 '22 00:06 OzPineapple

It isn't the best solution but temporary it's work. You could comment line 47:

46 ; ***** SPECIFY DEVICE ***************************************************
47 ; .device ATmega8535 ; this should be commented
48 #pragma AVRPART ADMIN PART_NAME ATmega8535

Luk9091 avatar Mar 29 '23 23:03 Luk9091