we are doing a project using solar power to judge how many hours of sunlight there are a day. everything has been put together but when we go to burn the program onto the pic16f876 we are unsure where to find which fuses should be used and which should not any help out there???

unsure of fuses for an lcd display
Started by ●April 12, 2006
Reply by ●April 12, 20062006-04-12
Hi, davkel@gmail.com wrote:> everything has been put together but when we > go to burn the program onto the pic16f876 we are unsure where to find > which fuses should be used and which should not any help out there???Look in the datasheet for "configuration fuses". These are stored at address 2007(hex) in the hex file HTH Wolfgang -- From-address is Spam trap Use: wolfgang (dot) mahringer (at) sbg (dot) at
Reply by ●April 12, 20062006-04-12
"Wolfgang Mahringer" <yeti201@gmx.at> wrote in message news:R18%f.5$Wu.436378@news.salzburg-online.at...> Hi, > > davkel@gmail.com wrote: >> everything has been put together but when we >> go to burn the program onto the pic16f876 we are unsure where to find >> which fuses should be used and which should not any help out there??? > > Look in the datasheet for "configuration fuses". > > These are stored at address 2007(hex) in the hex file >Try here - http://ww1.microchip.com/downloads/en/DeviceDoc/39582b.pdf Page 144 should reveal all.
Reply by ●April 12, 20062006-04-12
<davkel@gmail.com>> we are doing a project using solar power to judge how many hours of > sunlight there are a day. everything has been put together but when we > go to burn the program onto the pic16f876 we are unsure where to find > which fuses should be used and which should not any help out there???You need to provide more details about your circuit, but this should get you started: __CONFIG _CP_OFF & _DEBUG_OFF & _WRT_OFF & _CPD_OFF & _LVP_OFF & _PWRTE_ON & _BODEN_OFF & _WDT_OFF & _XT_OSC You should be able to place this in the source file and the information will be included in the HEX file. Any decent PIC programmer should be able to take it from there. Replace the _XT_OSC with _HS_OSC, _LP_OSC or _RC_OSC as required.
