为 SAMD21 DAC 使用外部 Vref
Using External Vref for SAMD21 DAC
我用的是SAMD21 Xplained板。我 运行 Atmel Studio 提供的 DAC 示例:DAC_QUICKSTART1
在示例 (dac_feature.h
) 附带的头文件中,我有以下枚举:
enum dac_reference {
/** 1V from the internal band-gap reference*/
DAC_REFERENCE_INT1V = DAC_CTRLB_REFSEL(0),
/** Analog V<SUB>CC</SUB> as reference */
DAC_REFERENCE_AVCC = DAC_CTRLB_REFSEL(1),
/** External reference on AREF */
DAC_REFERENCE_AREF = DAC_CTRLB_REFSEL(2),
};
原来参考电压是内部1V电压。我想使用外部参考,这样 DAC 输出可以在 0V 到 5V 左右变化。
我的问题是:我实际上如何设置这些设置?
在同一个文件 - dac_feature.h
中,有以下结构:
struct dac_config {
/** Reference voltage */
enum dac_reference reference;
/** Select DAC output */
enum dac_output output;
/** Left adjusted data */
bool left_adjust;
/** GCLK generator used to clock the peripheral */
enum gclk_generator clock_source;
#ifdef FEATURE_DAC_DATABUF_WRITE_PROTECTION
/** Bypass DATABUF write protection */
bool databuf_protection_bypass;
#endif
/** Voltage pump disable */
bool voltage_pump_disable;
/**
* The DAC behaves as in normal mode when the chip enters STANDBY sleep
* mode
*/
bool run_in_standby;
#if (SAMC21)
/** Dither mode enable data */
bool dither_mode;
#endif
};
此处创建了 dac_reference
的实例,称为引用。我假设这是完成的地方,但我仍然不确定如何。
感谢任何帮助。
DAC 的配置可以在 struct dac_config
中定义,然后用作 dac_init()
的参数。 enum dac_reference
定义了可以设置 dac_config.reference
的可能值。
// DAC abstraction struct
struct dac_module dac_instance;
// DAC parameter struct
struct dac_config config_dac;
// initialize to defaults
dac_get_config_defaults(&config_dac);
// set DAC reference to AREF
config_dac.reference = DAC_REFERENCE_AREF;
// use parameters set above to initialize DAC hardware
dac_init(&dac_instance, DAC, &config_dac);
以上几行 - 以及更多详细信息 - 可以在第 9.1 章的 application note AT03244 中找到。
我用的是SAMD21 Xplained板。我 运行 Atmel Studio 提供的 DAC 示例:DAC_QUICKSTART1
在示例 (dac_feature.h
) 附带的头文件中,我有以下枚举:
enum dac_reference {
/** 1V from the internal band-gap reference*/
DAC_REFERENCE_INT1V = DAC_CTRLB_REFSEL(0),
/** Analog V<SUB>CC</SUB> as reference */
DAC_REFERENCE_AVCC = DAC_CTRLB_REFSEL(1),
/** External reference on AREF */
DAC_REFERENCE_AREF = DAC_CTRLB_REFSEL(2),
};
原来参考电压是内部1V电压。我想使用外部参考,这样 DAC 输出可以在 0V 到 5V 左右变化。
我的问题是:我实际上如何设置这些设置?
在同一个文件 - dac_feature.h
中,有以下结构:
struct dac_config {
/** Reference voltage */
enum dac_reference reference;
/** Select DAC output */
enum dac_output output;
/** Left adjusted data */
bool left_adjust;
/** GCLK generator used to clock the peripheral */
enum gclk_generator clock_source;
#ifdef FEATURE_DAC_DATABUF_WRITE_PROTECTION
/** Bypass DATABUF write protection */
bool databuf_protection_bypass;
#endif
/** Voltage pump disable */
bool voltage_pump_disable;
/**
* The DAC behaves as in normal mode when the chip enters STANDBY sleep
* mode
*/
bool run_in_standby;
#if (SAMC21)
/** Dither mode enable data */
bool dither_mode;
#endif
};
此处创建了 dac_reference
的实例,称为引用。我假设这是完成的地方,但我仍然不确定如何。
感谢任何帮助。
DAC 的配置可以在 struct dac_config
中定义,然后用作 dac_init()
的参数。 enum dac_reference
定义了可以设置 dac_config.reference
的可能值。
// DAC abstraction struct
struct dac_module dac_instance;
// DAC parameter struct
struct dac_config config_dac;
// initialize to defaults
dac_get_config_defaults(&config_dac);
// set DAC reference to AREF
config_dac.reference = DAC_REFERENCE_AREF;
// use parameters set above to initialize DAC hardware
dac_init(&dac_instance, DAC, &config_dac);
以上几行 - 以及更多详细信息 - 可以在第 9.1 章的 application note AT03244 中找到。