1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/stk3600: fix DAC configuration

This commit is contained in:
Gunar Schorcht 2023-08-21 18:12:23 +02:00
parent 059bcafd74
commit 5796abd4ae

View File

@ -84,6 +84,7 @@ static const adc_chan_conf_t adc_channel_config[] = {
static const dac_conf_t dac_config[] = {
{
.dev = DAC0,
.ref = dacRefVDD,
.cmu = cmuClock_DAC0,
}
};
@ -92,7 +93,6 @@ static const dac_chan_conf_t dac_channel_config[] = {
{
.dev = 0,
.index = 1,
.ref = dacRefVDD,
}
};