forked from CTCaer/hekate
regulator 5V: fix battery/usb source swap
This commit is contained in:
parent
e8f73a42b8
commit
9dbf745649
@ -81,7 +81,13 @@ bool regulator_5v_get_dev_enabled(u8 dev)
|
|||||||
void regulator_5v_batt_src_enable(bool enable)
|
void regulator_5v_batt_src_enable(bool enable)
|
||||||
{
|
{
|
||||||
if (enable && !batt_src)
|
if (enable && !batt_src)
|
||||||
|
{
|
||||||
gpio_write(GPIO_PORT_A, GPIO_PIN_5, GPIO_HIGH);
|
gpio_write(GPIO_PORT_A, GPIO_PIN_5, GPIO_HIGH);
|
||||||
|
batt_src = true;
|
||||||
|
}
|
||||||
else if (!enable && batt_src)
|
else if (!enable && batt_src)
|
||||||
|
{
|
||||||
gpio_write(GPIO_PORT_A, GPIO_PIN_5, GPIO_LOW);
|
gpio_write(GPIO_PORT_A, GPIO_PIN_5, GPIO_LOW);
|
||||||
|
batt_src = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user