Still having issues, I think that I am going to be better off by setting them in the programmer. At least I can get it to work. Thanks for every one who has tried to help
Still having issues, I think that I am going to be better off by setting them in the programmer. At least I can get it to work. Thanks for every one who has tried to help
Setting them in the programmer works. but if you ever want to just program a chip from a saved hex file, your going to get bit in the behind if you don't remember what settings you used in the programmer. its really a two step operation. PBP is the basic compiler, it creates an assembler file. then either pm or msasm compiler assembles that into your hex file that gets programmed into the chip. the fuse names/settings are written into your basic program but are dependant upon which assembler you use. The assembler is what uses these config commands. PBP passes these to the assembler with the @. so your line would be eitherorCode:@_config MCLR OFFdepending on if pm or msasm is used.Code:@_config MCLRE OFF
thats actuallyorCode:@_config _MCLR_OFFthe hs osc you were trying should beCode:@_config MCLRE_OFForCode:@_config _HS_OSCsomeone please check my writing, i can't see the _'s during preview on here. (not at home and using my phone lol)Code:@_config HS_OSC
Bookmarks