1 / 47

A/D and Analog Comprator

A/D and Analog Comprator. برنامه ای به زبان C با میکرو 16 Atmega بنویسید که با استفاده از وقفه سیگنال آنالوگ ورودی ADC0 را به صورت Single Conversion تبدیل به دیجیتال نماید و در پورت D قرار دهد. /***************************************************** Chip type : ATmega16

zeroun
Download Presentation

A/D and Analog Comprator

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. A/D and Analog Comprator

  2. برنامه ای به زبان C با میکرو16 Atmega بنویسید که با استفاده از وقفه سیگنال آنالوگ ورودی ADC0 را به صورت Single Conversion تبدیل به دیجیتال نماید و در پورت D قرار دهد.

  3. /***************************************************** 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

  4. 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 }; }

  5. /***************************************************** 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

  6. 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 }; }

More Related