mirror of
https://github.com/apache/nuttx.git
synced 2026-06-08 10:32:47 +08:00
LPC17xx ADC: Configure all ADC pins in the set, not just one. From MKannan
This commit is contained in:
@@ -174,31 +174,31 @@ static void adc_reset(FAR struct adc_dev_s *dev)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p0);
|
||||
}
|
||||
else if ((priv->mask & 0x02) != 0)
|
||||
if ((priv->mask & 0x02) != 0)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p1);
|
||||
}
|
||||
else if ((priv->mask & 0x04) != 0)
|
||||
if ((priv->mask & 0x04) != 0)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p2);
|
||||
}
|
||||
else if ((priv->mask & 0x08) != 0)
|
||||
if ((priv->mask & 0x08) != 0)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p3);
|
||||
}
|
||||
else if ((priv->mask & 0x10) != 0)
|
||||
if ((priv->mask & 0x10) != 0)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p4);
|
||||
}
|
||||
else if ((priv->mask & 0x20) != 0)
|
||||
if ((priv->mask & 0x20) != 0)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p5);
|
||||
}
|
||||
else if ((priv->mask & 0x40) != 0)
|
||||
if ((priv->mask & 0x40) != 0)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p6);
|
||||
}
|
||||
else if ((priv->mask & 0x80) != 0)
|
||||
if ((priv->mask & 0x80) != 0)
|
||||
{
|
||||
lpc17_configgpio(GPIO_AD0p7);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user