Pickit3 programming problem in Flowcode V7

An area to discuss 8-bit PIC specific problems and examples

Moderator: Benj

Post Reply
Ocaltekaustralia
Posts: 2
Joined: Mon May 14, 2018 12:08 pm
Contact:

Pickit3 programming problem in Flowcode V7

Post by Ocaltekaustralia »

using 30 Day trial of Flowcode V7. loaded pickit3 programmer , cant get it to accept chip name . what am I doing wrong?

C:\Program Files (x86)\Flowcode 7\compilers\pic\bin\xc8.exe -P12F1840 -FLEDblink.hex -E -M -Y
: : (902) no chip name specified; use "PICC --CHIPINFO" to see available chip names (error)

Ocaltekaustralia
Posts: 2
Joined: Mon May 14, 2018 12:08 pm
Contact:

Re: Pickit3 programming problem in Flowcode V7

Post by Ocaltekaustralia »

The compiler parameters are correct and the window has all the details , it just isn't picking it up

User avatar
Benj
Matrix Staff
Posts: 15312
Joined: Mon Oct 16, 2006 10:48 am
Location: Matrix TS Ltd
Has thanked: 4803 times
Been thanked: 4314 times
Contact:

Re: Pickit3 programming problem in Flowcode V7

Post by Benj »

Hello,

It looks like you may have put the programmer parameters into the compiler settings.

There are three option tabs in the compiler options window, compile, link, program. It's the program tab that you need to override for the PICkit to function.

C:\Program Files (x86)\Flowcode 7\compilers\pic\bin\xc8.exe -P12F1840 -FLEDblink.hex -E -M -Y
This should look like this.
C:\Program Files (x86)\Flowcode 7\compilers\pic\bin\xc8.exe --chip=12F1840 "LEDblink.c" --MSGDISABLE=359,1273,1388

Post Reply