xc16 settings in flowcode v7. ?

For Flowcode users to discuss projects, flowcharts, and any other issues related to Flowcode 7.

Moderator: Benj

Post Reply
astro1234
Posts: 50
Joined: Mon Apr 10, 2017 12:53 pm
Has thanked: 39 times
Been thanked: 13 times
Contact:

xc16 settings in flowcode v7. ?

Post by astro1234 »

I use the XC16 compiler for some of my projects, so can i use xc16 in Flowcode v7 standard,
is so what settings do i need to set up in the compiler setup.
thanks for looking.
Regards astro1234.

crispin12
Posts: 51
Joined: Fri Apr 07, 2017 5:51 pm
Has thanked: 6 times
Been thanked: 11 times
Contact:

Re: xc16 settings in flowcode v7. ?

Post by crispin12 »

Make sure you change the Microchip compiler version number in the paths denoted below to whatever the compiler versions are on your system. Also copy pic16_C30_comp.bat file from the Flowcode installation directory to the Microchip directory using the install path shown below as a pointer on where to place it.

Microchip Pro xc8
compiler
C:\Program Files (x86)\Microchip\xc8\v1.41\bin\xc8.exe
--chip=$(chip) "$(target).c" --MSGDISABLE=359,1273,1388

linker
$(appdir)tools\DoNothing\DoNothing.exe
--------------------------------------------
Microchip Pro xc16
compiler
C:\Program Files (x86)\Microchip\xc16\v1.31\bin\pic16_C30_comp.bat
"$(target)" "$(outdir)" "$(chip:u)"

linker
$(appdir)compilers\pic16\batchfiles\pic16_C30_link.bat
"$(outdir)$(target)" $(chip:u) $(family)
-------------------------------------------
Microchip Pro xc32
compiler
C:\Program Files (x86)\Microchip\xc32\v1.42\bin\xc32-gcc.exe
-mprocessor=$(chip) -O1 -o "$(srcdir)$(target).out" "$(srcdir)$(target).c"

linker
$(appdir)compilers\pic32\bin\xc32-bin2hex.exe
"$(srcdir)$(target).out"
-------------------------------------------

astro1234
Posts: 50
Joined: Mon Apr 10, 2017 12:53 pm
Has thanked: 39 times
Been thanked: 13 times
Contact:

Re: xc16 settings in flowcode v7. ?

Post by astro1234 »

Thank you for the info, :D
will give it ago .
Regards astro1234

Post Reply