Ejemplo de STM32F para el modo de seguidor opamp

0

¿Alguien tiene un ejemplo STM32F para el modo de seguidor opamp (idealmente, el descubrimiento STM32F3)? Puedo hacer que el PGA funcione, pero no puedo descubrir cómo conectarlo en el modo simple seguidor.

    
pregunta Dirk Bruere

1 respuesta

0

Lo tengo (estoy usando OPAMP3):

    //OPAMP_NonInvertingInput_IO4 < IO4 (PA1 for OPAMP1, PA7 for OPAMP2, PB0 for OPAMP3, PB13 for OPAMP4)
    //OPAMP3 config 

OPAMP_DeInit( OPAMP_Selection_OPAMP3 );
OPAMP_InitStructure.OPAMP_NonInvertingInput = OPAMP_NonInvertingInput_IO4;
OPAMP_InitStructure.OPAMP_InvertingInput = OPAMP_InvertingInput_Vout;
OPAMP_Init( OPAMP_Selection_OPAMP3, &OPAMP_InitStructure );
    
respondido por el Dirk Bruere

Lea otras preguntas en las etiquetas