hello,
I am using AVR FlowCode v4.
I have written a Flowcode program for de ATmega1280 and compilation in C and hex is succesfull but there is no assembler ASM file shown in de output listings.
When i am using de "show asm" in de chip tab there is also no asm listing shown.
Do i have a wrong configuration of FlowCode and how can i correct this issue ?
Kind regards
Huib
No ASM file output shown in AVR FlowCode V4
-
- Posts: 63
- Joined: Fri Oct 12, 2007 5:13 pm
- Location: Netherlands
- Been thanked: 1 time
-
- Valued Contributor
- Posts: 548
- Joined: Tue Jun 26, 2007 11:23 am
- Has thanked: 6 times
- Been thanked: 44 times
Re: No ASM file output shown in AVR FlowCode V4
Hello Huib,
The asm file (extension .lst) is created by the first set of compiler instructions.
The parameter string for Compiler - Parameters (in the Chip -> Compiler Options menu) should be:
%t "%D\%f.elf" "%D\%f.c" "%D\%f.lst"
The following line in the compiler batch file being used (avra.bat or avrafp.bat) in the MX_bats folder causes the .lst file to be created:
"%~dp0..\bin\avr-objdump.exe" -S %2 > %4
The asm file (extension .lst) is created by the first set of compiler instructions.
The parameter string for Compiler - Parameters (in the Chip -> Compiler Options menu) should be:
%t "%D\%f.elf" "%D\%f.c" "%D\%f.lst"
The following line in the compiler batch file being used (avra.bat or avrafp.bat) in the MX_bats folder causes the .lst file to be created:
"%~dp0..\bin\avr-objdump.exe" -S %2 > %4
-
- Posts: 63
- Joined: Fri Oct 12, 2007 5:13 pm
- Location: Netherlands
- Been thanked: 1 time
Re: No ASM file output shown in AVR FlowCode V4
Sean,
Thanks for your reply, i used in Notepad++ also the asm filter so don't recogniced the .lst file.
Kind regards
Huib
Thanks for your reply, i used in Notepad++ also the asm filter so don't recogniced the .lst file.
Kind regards
Huib