Fixed misspelled parameter of gpio_clearPin
This commit is contained in:
parent
af6c78542a
commit
d69c237255
|
|
@ -106,7 +106,7 @@ void platform_terminate()
|
||||||
adc0_terminate();
|
adc0_terminate();
|
||||||
|
|
||||||
/* Finally, remove power supply */
|
/* Finally, remove power supply */
|
||||||
gpio_clearPin(PWR_SW, OUTPUT);
|
gpio_clearPin(PWR_SW);
|
||||||
}
|
}
|
||||||
|
|
||||||
float platform_getVbat()
|
float platform_getVbat()
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ void platform_terminate()
|
||||||
adc0_terminate();
|
adc0_terminate();
|
||||||
|
|
||||||
/* Finally, remove power supply */
|
/* Finally, remove power supply */
|
||||||
gpio_clearPin(PWR_SW, OUTPUT);
|
gpio_clearPin(PWR_SW);
|
||||||
}
|
}
|
||||||
|
|
||||||
float platform_getVbat()
|
float platform_getVbat()
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,7 @@ void platform_terminate()
|
||||||
rtc_terminate();
|
rtc_terminate();
|
||||||
|
|
||||||
/* Finally, remove power supply */
|
/* Finally, remove power supply */
|
||||||
gpio_clearPin(PWR_SW, OUTPUT);
|
gpio_clearPin(PWR_SW);
|
||||||
}
|
}
|
||||||
|
|
||||||
float platform_getVbat()
|
float platform_getVbat()
|
||||||
|
|
|
||||||
|
|
@ -132,7 +132,7 @@ void platform_terminate()
|
||||||
rtc_terminate();
|
rtc_terminate();
|
||||||
|
|
||||||
/* Finally, remove power supply */
|
/* Finally, remove power supply */
|
||||||
gpio_clearPin(PWR_SW, OUTPUT);
|
gpio_clearPin(PWR_SW);
|
||||||
}
|
}
|
||||||
|
|
||||||
float platform_getVbat()
|
float platform_getVbat()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue