480 likes | 590 Views
A/D and Analog Comprator. برنامه ای به زبان C با میکرو 16 Atmega بنویسید که با استفاده از وقفه سیگنال آنالوگ ورودی ADC0 را به صورت Single Conversion تبدیل به دیجیتال نماید و در پورت D قرار دهد. /***************************************************** Chip type : ATmega16
E N D
برنامه ای به زبان C با میکرو16 Atmega بنویسید که با استفاده از وقفه سیگنال آنالوگ ورودی ADC0 را به صورت Single Conversion تبدیل به دیجیتال نماید و در پورت D قرار دهد.
/***************************************************** Chip type : ATmega16 Program type : Application Clock frequency : 1.000000 MHz *****************************************************/ //A Section #include <mega16.h> //(1) #define ADC_VREF_TYPE 0x60 //(2) //*************************************************** //B Section // ADC interrupt service routine interrupt [ADC_INT] void adc_isr(void) { unsigned char adc_data; // Read the 8 most significant bits // of the AD conversion result adc_data=ADCH; // Place your code here PORTD=ADCH; //(3)result to portd ADCSRA.6=1; //(4)start conversion } //************************************************** // Declare your global variables here
void main(void) { // Declare your local variables here // Input/Output Ports initialization // Port D initialization, as output // Func7=Out Func6=Out Func5=Out Func4=Out Func3=Out // Func2=Out Func1=Out Func0=Out // State7=0 State6=0 State5=0 State4=0 State3=0 // State2=0 State1=0 State0=0 PORTD=0x00; //(5) DDRD=0xFF; //(6) // ADC initialization // ADC Clock frequency: 125.000 kHz // ADC Voltage Reference: AVCC pin // ADC High Speed Mode: Off // ADC Auto Trigger Source: None // Only the 8 most significant bits of // the AD conversion result are used ADMUX=ADC_VREF_TYPE; //(7) ADCSRA=0x8B; //(8) SFIOR&=0xEF; //(9) //start first conversion ADCSRA.6=1; //(10) // Global enable interrupts #asm("sei") //(11) while (1) //(12) { // Place your code here }; }
/***************************************************** A section Chip type : ATmega8 Program type : Application Clock frequency : 1.000000 MHz *****************************************************/ //B section #include <mega8.h> //(1) #include <delay.h> //(2) unsigned char value1; //(3) // ADC interrupt service routine interrupt [ADC_INT] void adc_isr(void) { // Read the AD conversion result // Place your code here PORTD=ADCL/2; //(4) delay_ms(30); //(5)Delay for stable output value1=ADCH; //(6)for ending conversion } //************************************************* //C section // Declare your global variables here
void main(void) { // Declare your local variables here // Input/Output Ports initialization // Port D initialization // Func7=Out Func6=Out Func5=Out Func4=Out Func3=Out //Func2=Out Func1=Out Func0=Out // State7=0 State6=0 State5=0 State4=0 State3=0 // State2=0 State1=0 State0=0 PORTD=0x00; //(7) DDRD=0xFF; //(8) // ADC initialization // ADC Clock frequency: 125.000 kHz // ADC Voltage Reference: AVCC pin // ADC High Speed Mode: Off ADMUX=0x40; //(9) ADCSRA=0xEB; //(10) SFIOR&=0xEF; //(11) // Global enable interrupts #asm("sei") //(12) while (1) //(13) { // Place your code here }; }