View previous topic :: View next topic |
Author |
Message |
Boyce
Joined: 07 Feb 2010 Posts: 39
|
PIC Wizard output question |
Posted: Sat Feb 13, 2010 9:08 pm |
|
|
This is the PIC Wizard output with // added...
#include "G:\MICROCHIP-ALL\DEVELOPMENT PROGRAMS\main-3.h"
Code: |
//PCW 4.104
//This is the output of PIC Wizard FOR PIC16F690.
//Is this PIC Wizard output complete?
//PIC Wizard does not show #FUSE information.
//How do I get the fuse information shown on main.c?
void main()
{
setup_adc_ports (NO_ANALOGS|VSS_VDD) ;
setup_adc (ADC_CLOCK_DIV_2) ;
setup_spi (SPI_SS_DISABLED) ;
setup_timer_0 (RTCC_INTERNAL|RTCC_DIV_1) ;
setup_timer_1 (T1_DISABLED) ;
setup_timer_2 (T2_DISABLED, 0, 1) ;
setup_comparator (NC_NC_NC_NC); // This device COMP currently not supported by the PICWizard
//Setup_Oscillator parameter not selected from Intr Oscillator Config tab
// TODO: USER CODE!!
}
//end main
|
Thanks,
Boyce _________________ [email protected] |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Sun Feb 14, 2010 12:52 am |
|
|
I don't have the IDE version of the compiler, but it's my understanding
that it creates a .h file, and the #fuses are in there. |
|
|
Boyce
Joined: 07 Feb 2010 Posts: 39
|
PIC Wizard output question |
Posted: Sun Feb 14, 2010 1:26 am |
|
|
PCM programmer wrote: | I don't have the IDE version of the compiler, but it's my understanding
that it creates a .h file, and the #fuses are in there. |
You are right. Thanks.
Boyce _________________ [email protected] |
|
|
|