Fixed ADC offset problem

pull/73/head
Toyomasa Watarai 2013-09-19 16:16:05 +09:00
parent a693ad6d06
commit 399acd1d6f
2 changed files with 5 additions and 4 deletions

View File

@ -37,7 +37,8 @@ typedef enum {
ADC0_3,
ADC0_4,
ADC0_5,
ADC0_6
ADC0_6,
ADC0_7
} ADCName;
typedef enum {

View File

@ -32,9 +32,9 @@ static const PinMap PinMap_ADC[] = {
{P1_0 , ADC0_1, 2},
{P1_1 , ADC0_2, 2},
{P1_2 , ADC0_3, 2},
{P1_4 , ADC0_4, 1},
{P1_10, ADC0_5, 1},
{P1_11, ADC0_6, 1},
{P1_4 , ADC0_5, 1},
{P1_10, ADC0_6, 1},
{P1_11, ADC0_7, 1},
{NC , NC , 0}
};