Hi
I am having difficulty with a project i was given. My task is to write C code for the PIC16F877 micro-controller to store 10 A/D readings in an array. Can anyone direct me in the right direction with this code?
//#define TEST
#define ADC
//#define ADCON0 register Address
#define ADCON0_ADD 0x1f
#define ADRESH_ADD 0x1e
//#define ADC Clock Frequency
#define ADC_frequency_mask 0b00111111
fosc_2 0b00000000
fosc_8 0b01000000
fosc_16 0b10000000
fosc_32 0b11000000
//define ADC_CHANNEL
#define ADC_CHANNEL_MASK 0b11000111
#define ADC_CHANNEL_0 0b11000111
#define ADC_CHANNEL_1 0b11000111
#define ADC_CHANNEL_2 0b11000111
#define ADC_CHANNEL_3 0b11000111
#define ADC_CHANNEL_4 0b11000111
#define ADC_CHANNEL_5 0b11000111
//#define ADCON bit
#define ADON 0b00000001
#define ADGO 0b00000100
//function like preprocessor macros
#define MASK_ADC_FREQ(x) x&=ADC_frequency_mask
#define SET_ADC_CLOCK_FREQUECY(x,b) x|=b
#define MASK_ADC_CHANNEL(x) x&=ADC_CHANNEL_MASK
#define SET_ADC_CHANNEL(x,b) x|=b
#define TURN_ON_ADC(x) x|=ADON
#define START_ADC(x) x|=ADGO
void main()
{
byte *pADCON0=ADCON_ADD;
byte *pADRESH=ADRESH_ADD;
byte results[10];
float average=0;
byte i;
////////////////////////////////////////////////////
#ifdef TEST1
////////////////////////////////////////////////////
while(1)
set_tris_c(0x00);
while(1)
for(i=1; i<8; i++)
{
*ptr_port_c = 0x01;
for(i=1; i<8; i++)
{
*ptr_port_c <<=1;
delay_ms(50);
}
*ptr_port_c = 0x80;
for(i=1; i<8; ++i)
{
*ptr_port_c >>=1;
delay_ms(50);
}
}
#endif
}
////////////////////////////////////////////////////
#ifdef ADC
////////////////////////////////////////////////////
while(1)
{
MASK_ADC_FREQ(*pADCON0);
SET_ADC_CLOCK_FREQUENCY(*pADCON0,fosc_8);
MASK_ADC_CHANNEL(*pADCON0);
SET_ADC_CHANNEL(*pADCON0,ADC_CHANNEL_0);
TURN_ON_ADC(*PADCON0);
average=0;
for(i=0;i<10;i++)
{
START_ADC(*pADCON0);
do
}
//wait for ADC to complete conversion
}
while(*pADCON0 & ADGO);
results=*pADRESH;
average += results;
}
average /=10;
}
#endif
////////////////////////////////////////////////////
}
Dont mind the bit masking for now, i still have to get the data sheets. The project requires the use of pointers. Do i have to set up a .HEX file or can i just compile it like so?
Any help much appreciated!!!!!!!!!!!!!!

I am having difficulty with a project i was given. My task is to write C code for the PIC16F877 micro-controller to store 10 A/D readings in an array. Can anyone direct me in the right direction with this code?
//#define TEST
#define ADC
//#define ADCON0 register Address
#define ADCON0_ADD 0x1f
#define ADRESH_ADD 0x1e
//#define ADC Clock Frequency
#define ADC_frequency_mask 0b00111111
fosc_2 0b00000000
fosc_8 0b01000000
fosc_16 0b10000000
fosc_32 0b11000000
//define ADC_CHANNEL
#define ADC_CHANNEL_MASK 0b11000111
#define ADC_CHANNEL_0 0b11000111
#define ADC_CHANNEL_1 0b11000111
#define ADC_CHANNEL_2 0b11000111
#define ADC_CHANNEL_3 0b11000111
#define ADC_CHANNEL_4 0b11000111
#define ADC_CHANNEL_5 0b11000111
//#define ADCON bit
#define ADON 0b00000001
#define ADGO 0b00000100
//function like preprocessor macros
#define MASK_ADC_FREQ(x) x&=ADC_frequency_mask
#define SET_ADC_CLOCK_FREQUECY(x,b) x|=b
#define MASK_ADC_CHANNEL(x) x&=ADC_CHANNEL_MASK
#define SET_ADC_CHANNEL(x,b) x|=b
#define TURN_ON_ADC(x) x|=ADON
#define START_ADC(x) x|=ADGO
void main()
{
byte *pADCON0=ADCON_ADD;
byte *pADRESH=ADRESH_ADD;
byte results[10];
float average=0;
byte i;
////////////////////////////////////////////////////
#ifdef TEST1
////////////////////////////////////////////////////
while(1)
set_tris_c(0x00);
while(1)
for(i=1; i<8; i++)
{
*ptr_port_c = 0x01;
for(i=1; i<8; i++)
{
*ptr_port_c <<=1;
delay_ms(50);
}
*ptr_port_c = 0x80;
for(i=1; i<8; ++i)
{
*ptr_port_c >>=1;
delay_ms(50);
}
}
#endif
}
////////////////////////////////////////////////////
#ifdef ADC
////////////////////////////////////////////////////
while(1)
{
MASK_ADC_FREQ(*pADCON0);
SET_ADC_CLOCK_FREQUENCY(*pADCON0,fosc_8);
MASK_ADC_CHANNEL(*pADCON0);
SET_ADC_CHANNEL(*pADCON0,ADC_CHANNEL_0);
TURN_ON_ADC(*PADCON0);
average=0;
for(i=0;i<10;i++)
{
START_ADC(*pADCON0);
do
}
//wait for ADC to complete conversion
}
while(*pADCON0 & ADGO);
results=*pADRESH;
average += results;
}
average /=10;
}
#endif
////////////////////////////////////////////////////
}
Dont mind the bit masking for now, i still have to get the data sheets. The project requires the use of pointers. Do i have to set up a .HEX file or can i just compile it like so?
Any help much appreciated!!!!!!!!!!!!!!