pga_ex1_dac_adc_ext_loopback.c历程中PGA配置
void initPGA(void)
{
//
// Set a gain of 3 to PGA2
//
PGA_setGain(PGA2_BASE, PGA_GAIN_3);
//
// No filter resistor for output
//
PGA_setFilterResistor(PGA2_BASE, PGA_LOW_PASS_FILTER_DISABLED);
//
// Enable PGA2
//
PGA_enable(PGA2_BASE);
}
实际应用PGA有PGA_OF,和PGA_IN两种情况。历程中没有体现这种区别,怎么配置PGA是OUT还是IN