Jump to content

Selecting Compiler Options (AVR): Difference between revisions

From Flowcode Help
ReeceL (talk | contribs)
No edit summary
No edit summary
 
(25 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<sidebar>Sidebar: Managing Compiler Options</sidebar>
Allows users to set the Compiler options.
Allows users to set the Compiler options.


Line 4: Line 5:
'''Options list'''
'''Options list'''


See the [[Managing Compiler Options]] topic for more information on using this feature.


See the [[Managing compiler options|Managing Compiler Settings]] topic for more information on using this feature.


'''Substitute variables used by Flowcode'''
[[Managing_Compiler_Options#Compiler_variables|Substitute variables used by Flowcode]] are the same for all platforms.
 
__NOTOC__
==Compiler==
[[File:Gen_Compiler_Options_Compiler_AVR.png|right|524x400px]]
'''Compiler location'''
 
Sets the location of the file controlling compilation
 
Default:
 
<code>'''$(compileravr)batchfiles\avra.bat'''</code>
 
 
'''Compiler parameters'''
 
Adds command line parameters when called from flowcode
 
Default:
 
<code>'''$(chip:l) "$(outdir)$(target).elf" "$(outdir)$(target).c" "$(outdir)$(target).lst"'''</code>


%T      Target name as written e.g. atmega32


(generally used by the compiler)


%t        Target name forced to lower-case


%p      Target name forced to upper-case




%a      Alternative target name as written e.g. m32


(generally used by the programmer)


%A      Alternative target name forced to upper-case




%f        Long file name without extension e.g. C:\Development\Flowcode\TestProgram.fcf becomes:
            TestProgram
%F      Short filename without extension e.g. C:\Development\Flowcode\TestProgram.fcf becomes:
            TestPr~1


%d      Long file path for the Flowcode file e.g. C:\Development\Flowcode\TestProgram.fcf becomes:
            C:\Development\Flowcode
%D      Short file path for the Flowcode file C:\Development\Flowcode\TestProgram.fcf becomes:
            C:\Develo~1\Flowcode


%c0      Configuration byte count
%c1      Configuration byte #1
%c2      Configuration byte #2
%c3      Configuration byte #3


Compiler location
Sets the location of the file controlling compilation
Default:
C:\Program Files\Matrix Multimedia\Flowcode_AVR\Tools\MX_bats\avra.bat


Compiler parameters
==Linker/Assembler==
Adds command line parameters when called from flowcode
[[File:Gen_Compiler_Options_Linker_Assembler_AVR.png|right|524x400px]]
Default:
'''Linker/Assembler location'''
%t "%D\%f.elf" "%D\%f.c" "%D\%f.lst"


Linker/Assembler location
Sets the location of the file controlling linking and assembly
Sets the location of the file controlling linking and assembly
Default:
Default:
C:\Program Files\Matrix Multimedia\Flowcode_AVR\Tools\MX_bats\avrb.bat


Linker/Assembler parameters
<code>'''$(compileravr)batchfiles\avrb.bat'''</code>
 
 
'''Linker/Assembler parameters'''
 
Adds command line parameters when called from flowcode
Adds command line parameters when called from flowcode
Default:
Default:
"%D\%f.elf" "%D\%f.hex"


Programmer location
<code>'''<empty>'''</code>
 
There are no default parameters
 
 
 
 
 
 
 
 
 
 
 
 
 
 
==Programmer==
[[File:Gen_Compiler_Options_Programmer_AVR.png|right|524x400px]]
'''Programmer location'''
 
Sets the location of the file controlling the programming of the target device
Sets the location of the file controlling the programming of the target device
Default:
C:\Program Files\Matrix Multimedia\Flowcode_AVR\Tools\MX_bats\avrc.bat


Programmer parameters
Default HP3006 AVR Programmer:
 
<code>'''$(compileravr)batchfiles\avrc_usbtiny.bat'''</code>
 
 
AVRISPmkII AVR Programmer:
 
<code>'''$(compileravr)batchfiles\avrc.bat'''</code>
 
 
 
'''Programmer parameters'''
 
Adds command line parameters when called from flowcode
Adds command line parameters when called from flowcode
Default:
Default:
%a avrispmkii usb "%f.hex" %cfg %c0 %c1 %c2 %c3


Use programmer to set configuration options
<code>'''AVRDUDE $(chipalt) $(chip:l) "$(outdir)$(target).hex" "$(target).hex" 0 $(cfg0) $(cfg1) $(cfg2) $(cfg3)'''</code>
 
 
'''Use programmer to set configuration options'''
 
This box should be left unchecked
This box should be left unchecked


Configuration parameters
This box should be left empty. Configuration parameters are set and downloaded from the Build->Configure menu.


Note: The above parameters assume you are using the AVRDUDE programming application and AVRISPmkII programmer. If you are using an alternative programming application or programmer you will need to consult the relevant documentation for the required parameters and settings.
'''Configuration parameters'''
 
This box should be left empty. Configuration parameters are set and downloaded from the Build > Configure menu.


File Viewer location
Sets the File viewer location for viewing C and Assembly files.
The default is empty, this activates the use of the internal C code viewer.
Default:
<empty>


File Viewer parameters
[[Supporting_Third_Party_Programming_Tools|Click here for details on using a third party programming e.g. AVRISP]]
Adds command line parameters for the File viewer program
Default:
Blank. NO PARAMETERS.

Latest revision as of 10:39, 14 November 2018

<sidebar>Sidebar: Managing Compiler Options</sidebar> Allows users to set the Compiler options.


Options list

See the Managing Compiler Options topic for more information on using this feature.


Substitute variables used by Flowcode are the same for all platforms.


Compiler

Compiler location

Sets the location of the file controlling compilation

Default:

$(compileravr)batchfiles\avra.bat


Compiler parameters

Adds command line parameters when called from flowcode

Default:

$(chip:l) "$(outdir)$(target).elf" "$(outdir)$(target).c" "$(outdir)$(target).lst"








Linker/Assembler

Linker/Assembler location

Sets the location of the file controlling linking and assembly

Default:

$(compileravr)batchfiles\avrb.bat


Linker/Assembler parameters

Adds command line parameters when called from flowcode

Default:

<empty>

There are no default parameters








Programmer

Programmer location

Sets the location of the file controlling the programming of the target device

Default HP3006 AVR Programmer:

$(compileravr)batchfiles\avrc_usbtiny.bat


AVRISPmkII AVR Programmer:

$(compileravr)batchfiles\avrc.bat


Programmer parameters

Adds command line parameters when called from flowcode

Default:

AVRDUDE $(chipalt) $(chip:l) "$(outdir)$(target).hex" "$(target).hex" 0 $(cfg0) $(cfg1) $(cfg2) $(cfg3)


Use programmer to set configuration options

This box should be left unchecked


Configuration parameters

This box should be left empty. Configuration parameters are set and downloaded from the Build > Configure menu.


Click here for details on using a third party programming e.g. AVRISP