This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello all,
I'am trying to implement a pulse oximeter design using MSP430FR2355 Launchpad. I've been following the reference design document SLAA274 & SLAA458. I came across one more TI Document SLAA897 in which the design is much efficient and required few external components.. As per the design of SLAA897 shown below
The Nellcor Compatible SPO2 Probe Pin diagram , PIN 2 is IRLED, PIN 3 IS RED LED, PIN 6 & 7 ARE GND.
Pin 9 is the output of photodiode cathode, & Pin 5 is the transimpedance offset pin.
Where to connect the Pin 5 As per the design in SLAA897?
Also should I connect the OA0 output to the OA2 inverting input externally or there is a way to connect it internally through Software?
Also is there any schematic and reference code of the design shown in document SLAA897?
Hi, Mourya,
MSP430FR2355 has built-in DAC to generate the bias offset for built-in OPA (DAC and OPA are all a part of the SAC in MSP430FR2355). So there is no need to connect the pin 5 of transimpedance offset pin to MSP430FR2355.
There is no need to connect the OA0 output to OA2 inverting input externally. You can do the connection internally by setting SAC2PGA.MSEL=11b and SAC2OA.NSEL=01b.
In MSP430FR2353/2355, the SAC0 is internally connected with SAC2, and the SAC1 is internally connected with SAC3. And the SAC outputs are also internally connected to the built-in comparator and bult-in ADC12bit.
Please refer to the figure 11 in the application report of "How to Use the Smart Analog Combo in MSP430™ MCUs" (slaa833) for detailed information/setting of cascading SACs. You can also refer to figure 6-1 (eCOMP0, SAC0, SAC2 Interconnection) in the MSP430FR2355/2353 datasheet. Both documents have the detailed information for SACs internal connection with other peripherals.
Regarding the schematic for SLAA897, we didn't build the board. But we do have some internal schematic to internal test purpose. If you are interested, please contact TI sales and check with MSP430 BU team.
Thanks,
Lixin
Hi Lixen,
Thank you very much for your reply and helping me clear my doubts. One thing I noticed is that in the SLAA897 document (Section 2.2) it is written that to configure SAC2 as Inverting PGA Mode the settings should be (PSEL=01, NSEL=01, MSEL=00). But I think it is when we are externally connecting the OA0 Output to OA2 Negative I/P. But as you said for internal connection , I have to use PSEL=01, NSEL=01, MSEL=11 for SAC2.
For Pulse oximeter design I Need to sample the output of both the Amplifier stages(OA0O & OA2O), but only SAC0 & SAC1 Outputs are connected internally to the ADC Inputs. For SAC2 I have to configure the output pin for SAC2 and connect it externally to ADC input pin.
Based on the above understanding I have configured SAC,ADC & TIMER as shown below.
// Configure reference module PMMCTL0_H = PMMPW_H; // Unlock the PMM registers PMMCTL2 = INTREFEN | REFVSEL_2; // Enable internal 2.5V reference while(!(PMMCTL2 & REFGENRDY)); // Poll till internal reference settles /*******************SAC0 configurations as TIA******************/ P1SEL0 |= BIT2 ; // Select P1.2 OA0- PIN function P1SEL1 |= BIT2 ; // Select P1.2 OA0- PIN function SAC0DAC = DACSREF_1; // Select 2.5V int Vref as DAC reference SAC0DAT = 0x0FFF; // Set SAC DAC data to 2.5V SAC0DAC |= DACEN; // Enable DAC SAC0OA = NMUXEN + PMUXEN + PSEL_1 + NSEL_0; //Select positive INPUT AS DAC and negative pin input AS PHOTODIODE SAC0PGA |= MSEL_0; // INVERTING PGA MODE SAC0OA &= ~OAPM; // Select HIGH speed and HIGH power mode SAC0OA |= SACEN + OAEN; // Enable SAC and OA /****************SAC2 configurations AS INVERTING PGA************/ P3SEL0 |= BIT1 ; // Select P3.1 OA2 OUTPUT function P3SEL1 |= BIT1 ; // Select P3.1 OA2 OUTPUT function SAC2DAC = DACSREF_1; // Select 2.5V int Vref as DAC reference SAC2DAT = 0x0FFF; // Set SAC DAC data to 2.5V SAC2DAC |= DACEN; // Enable DAC SAC2OA = NMUXEN + PMUXEN + PSEL_1 + NSEL_1;//Select positive INPUT AS DAC and negative pin input AS O/P of OA0 SAC2PGA |= GAIN0 + GAIN2 + MSEL_3; // Set inverting PGA mode with Gain=16 SAC2OA &= ~OAPM; // Select HIGH speed and HIGH power mode SAC2OA |= SACEN | OAEN; // Enable SAC and OA /******************SAC3 configurations AS DAC OUTPUT********************/ P3SEL0 |= BIT5 ; // Select P3.5 OA3O function P3SEL1 |= BIT5 ; // OA is used as buffer for DAC SAC3DAC = DACSREF_1; // Select 2.5V int Vref as DAC reference SAC3DAT = 3340; // Set SAC DAC data to INITIAL VALUE SAC3DAC |= DACEN; // Enable DAC SAC3OA = NMUXEN + PMUXEN + PSEL_1 + NSEL_0;//Select DAC MODE SAC3PGA |= MSEL_1; // Set OA AS BUFFER MODE SAC3OA &= ~OAPM; // Select HIGH speed and HIGH power mode SAC3OA |= SACEN | OAEN; // Enable SAC and OA /*******************SAC1 configurationsAS DAC OUTPUT**********************/ P1SEL0 |= BIT5 ; // Select P1.5 OA1O function P1SEL1 |= BIT5 ; // OA is used as buffer for DAC SAC1DAC = DACSREF_1; // Select 2.5V int Vref as DAC reference SAC1DAT = 3340; // Set SAC DAC data to INTIAL VALUE SAC1DAC |= DACEN; // Enable DAC SAC1OA = NMUXEN + PMUXEN + PSEL_1 + NSEL_0;//Select DAC MODE SAC1PGA |= MSEL_1; // Set OA AS BUFFER MODE SAC1OA &= ~OAPM; // Select HIGH speed and HIGH power mode SAC1OA |= SACEN | OAEN; // Enable SAC and OA /***********ADC CONFIGURATION***********/ ADCCTL0 &= ~ADCENC; // Disable ADC ADCCTL0 |= ADCSHT_4 | ADCMSC | ADCON; //0000010010010010; 64 ADCLK CYCLES, MSC BIT HIGH, ADC ON ADCCTL1 |= ADCSHP | ADCSHS_1 | ADCCONSEQ_1; //0000010010010010; ADCCTL2 &= ~ADCRES; //CLEAR RESOLUTION ADCCTL2 |= ADCRES_2; //12 BIT RESOLUTION ADCMCTL0 |= ADCSREF_1|ADCINCH_1|ADCINCH_3; // OA0 OUTPUT AS A1 ADC INPUT ,VR+= VREF+, ALSO OA2 OUPUT EXTERNALLY CONNECTED TO A3 ADC INPUT ADCIE |= ADCIE0; // ENABLE CONVERSION COMPLETE INTERRUPT ADCCTL0 |= ADCENC|ADCSC; // ENABLE CONVERSION & START CONVERSION /******************** Configure Timer ******************/ TB0CTL = TBSSEL__ACLK + TBCLR; //ACLK & Reset timer TB0CCTL1 = OUTMOD_2; // TOGGLE & RESET TB0CCTL0 = CCIE; //INTERRUPT ENABLE TB0CCR0 = 31; //SAMPLING RATE 512 SPS TB0CCR1 = 10; //Allow plenty of time for the signal to become stable before sampling TB0CTL |= MC_1; // UP MODE // Timer B0 interrupt service routine #pragma vector=TIMER0_B0_VECTOR __interrupt void Timer0_B0_ISR(void) { int i; if((SAC3OA & SACEN)) // CHECK IF VSLED IS ON { SAC3DAC |= DACEN; SAC3DAT = vs_LED_level; SAC0DAT = vs_dc_offset; is_IR = 0; // IR LED OFF ir_sample = ADCMEM0; // Read the IR LED results i = ADCMEM0; // Enable the next conversion sequence. // The sequence is started by TA1 ADCCTL0 &= ~ADCENC; ADCCTL0 |= ADCENC; .................
, As per the reference code of Slaa458,In the Timer ISR It first checks whether the DAC Output is connected to IR LED or not. If it is connected it turns IR OFF and turn VS LED ON, vice versa in the else statement.
In the new design both LED's have their own DAC Output so , Should I need to check ON/OFF status OF the SAC3 & SAC1 alternately to switch both LED'S one at a time? I mean I can Write code like below line
if((SAC3OA & SACEN)) // CHECK IF IR LED IS ON instead of if ((DAC12_0CTL & DAC12OPS)) as used in slaa458?
I hope my code is in the right direction.
Hi, Mourya,
Sorry for late reply.
Sumit Mourya said:One thing I noticed is that in the SLAA897 document (Section 2.2) it is written that to configure SAC2 as Inverting PGA Mode the settings should be (PSEL=01, NSEL=01, MSEL=00). But I think it is when we are externally connecting the OA0 Output to OA2 Negative I/P. But as you said for internal connection , I have to use PSEL=01, NSEL=01, MSEL=11 for SAC2.
Since the OA2O is not internally connected to ADC12, and OA0O is, I suggest using the OA2 as photodiode current to voltage amplifier, and using OA0 as the 2nd stage negative input amplifier. Then you don't need to externally connect the OA output pin to ADC input pin. Both SAC0 and SAC2 has its respective DAC. So you can configure the SAC0's DAC output reference voltage to SAC0 positive pin, and configure SAC2's DAC output reference voltage to DAC2 to SAC2 positive pin. I had the configuration code for SAC2, and SAC0 as following for your reference.
//******* Configure SAC2 pins as TIA (I-V conversion)
P3SEL0 |= BIT1 + BIT2 + BIT3;
P3SEL1 |= BIT1 + BIT2 + BIT3;
SAC2DAC = DACSREF_1; // Select internal Vref (1.5V, 2.0V, 2.5V) as SAC2 DAC reference
SAC2DAT = DACDATA100; // Set SAC2 DAC output = 0.1v
SAC2DAC |= DACEN; // Enable SAC2 DAC
SAC2OA = NMUXEN + PMUXEN + PSEL_1 + NSEL_0; //Select positive and negative input: positive-DAC, negative-P3.2
//SAC2OA |= OAPM; // Select low speed and low power mode - for test
SAC2OA |= SACEN + OAEN; // Enable SAC2 and OA2
//******* Configure SAC0 pins as PGA inverting amplifier mode
P1SEL0 |= BIT1 + BIT2 + BIT3;
P1SEL1 |= BIT1 + BIT2 + BIT3;
SAC0DAC = DACSREF_1; // Select internal Vref (1.5V, 2.0V, 2.5V) as SAC3 DAC reference
SAC0DAT = DACDATA850; // Set SAC0 DAC output = 0.85V
SAC0DAC |= DACEN; // Enable SAC0 DAC
SAC0OA = NMUXEN + PMUXEN + PSEL_1 + NSEL_1; //Select positive and negative input: positive-DAC, negative-paired OA output
SAC0PGA = MSEL_3; // Set negative input as paired OA output - SAC2
//SAC0PGA |= GAIN0 + GAIN1; // set PGA gain to 4
SAC0PGA |= GAIN1; // set PGA gain to 2
// SAC0OA |= OAPM; // Select low speed and low power mode - for test
SAC0OA |= SACEN + OAEN; // Enable SAC1 and OA1
Sumit Mourya said:For Pulse oximeter design I Need to sample the output of both the Amplifier stages(OA0O & OA2O), but only SAC0 & SAC1 Outputs are connected internally to the ADC Inputs. For SAC2 I have to configure the output pin for SAC2 and connect it externally to ADC input pin.
If you need to sample both output for OA0O and OA2O, you have to externally connect OA2O pin to ADC input pin.
Sumit Mourya said:In the new design both LED's have their own DAC Output so , Should I need to check ON/OFF status OF the SAC3 & SAC1 alternately to switch both LED'S one at a time? I mean I can Write code like below line
if((SAC3OA & SACEN)) // CHECK IF IR LED IS ON instead of if ((DAC12_0CTL & DAC12OPS)) as used in slaa458?
Agree. You don't need to check the ON/OFF status of SAC3 & SAC1. Only to check if the SAC is enabled or not. Your thought is correct.
Thanks,
Lixin
Hi, Lixen,
One more thing I wanted to ask is that the SAC0 +ve input is connected to its DAC & not the SPO2 sensor DB9 Connector.
What value should I keep for SAC0DAT ? Since DAC value of other SAC's are changing according to the SPO2 Signal But for SAC0 the DAC value needs to be fixed?
Hi, Sumit,
If you are following the slaa897 for the connection: SAC0 connected to photodiode and SAC2 as second amplifier, and the photodiode sensing signal dynamic range is stable, the SAC0_DAC can be fixed value. The SAC2_DAC can be dynamic to track the DC component of the photodiode signal.
Thanks,
Lixin
**Attention** This is a public forum