Answered step by step
Verified Expert Solution
Question
1 Approved Answer
this is the MSP430 1) With the ADC12_A as configured below, for each analog input list the specific values of the following given that the
this is the MSP430
1) With the ADC12_A as configured below, for each analog input list the specific values of the following given that the external reference voltage Veref+= 3.0V (15 pts) i. Full-scale range, ii. Resolution, iii. Dynamic Range iv. Input Channel v. Memory output register unsigned int value1, value2, value3; REFCTLO &= REFMSTR; ADC12CTLO = ADC12SHTO_10 + ADC12SHT1_10 + ADC12REFON + ADC12ON + ADC12MSC; ADC12CTL1 = ADC12CSTARTADD_7 + ADC12SHP; POSEL | = BIT6; P7SEL = BIT1; ADC12MCTL7 = ADC12SREF_O + ADC12INCH_6; ADC12MCTL8 = ADC12SREF_2 + ADC12INCH_13; ADC12MCTL9 = ADC12SREF_1 + ADC12INCH_8 + ADC12EOS; ADC12CTLO I = (ADC12SCADC12ENC); while (ADC12CTL1 & ADC12BUSY) _no_operation(); value1 = ADC12 MEM7 & OXOFFF; value2 = ADC12MEM8 & OXOFFF; value3 = ADC12MEM9 & OXOFFF; 1) With the ADC12_A as configured below, for each analog input list the specific values of the following given that the external reference voltage Veref+= 3.0V (15 pts) i. Full-scale range, ii. Resolution, iii. Dynamic Range iv. Input Channel v. Memory output register unsigned int value1, value2, value3; REFCTLO &= REFMSTR; ADC12CTLO = ADC12SHTO_10 + ADC12SHT1_10 + ADC12REFON + ADC12ON + ADC12MSC; ADC12CTL1 = ADC12CSTARTADD_7 + ADC12SHP; POSEL | = BIT6; P7SEL = BIT1; ADC12MCTL7 = ADC12SREF_O + ADC12INCH_6; ADC12MCTL8 = ADC12SREF_2 + ADC12INCH_13; ADC12MCTL9 = ADC12SREF_1 + ADC12INCH_8 + ADC12EOS; ADC12CTLO I = (ADC12SCADC12ENC); while (ADC12CTL1 & ADC12BUSY) _no_operation(); value1 = ADC12 MEM7 & OXOFFF; value2 = ADC12MEM8 & OXOFFF; value3 = ADC12MEM9 & OXOFFF Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started