2018-03-27 00:04:16 +01:00
|
|
|
/*
|
2018-08-05 12:40:32 +01:00
|
|
|
* Copyright (c) 2018 naehrwert
|
|
|
|
* Copyright (C) 2018 CTCaer
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-03-27 00:04:16 +01:00
|
|
|
|
2018-03-14 23:26:19 +00:00
|
|
|
#include "btn.h"
|
2018-08-13 09:58:24 +01:00
|
|
|
#include "../soc/i2c.h"
|
|
|
|
#include "../soc/gpio.h"
|
|
|
|
#include "../soc/t210.h"
|
2018-06-13 00:34:32 +01:00
|
|
|
#include "util.h"
|
2018-09-18 21:38:54 +01:00
|
|
|
#include "../power/max77620.h"
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2019-03-07 22:22:15 +00:00
|
|
|
u8 btn_read()
|
2018-03-14 23:26:19 +00:00
|
|
|
{
|
2019-03-07 22:22:15 +00:00
|
|
|
u8 res = 0;
|
2018-05-01 06:15:48 +01:00
|
|
|
if (!gpio_read(GPIO_PORT_X, GPIO_PIN_7))
|
2018-03-14 23:26:19 +00:00
|
|
|
res |= BTN_VOL_DOWN;
|
2018-05-01 06:15:48 +01:00
|
|
|
if (!gpio_read(GPIO_PORT_X, GPIO_PIN_6))
|
2018-03-14 23:26:19 +00:00
|
|
|
res |= BTN_VOL_UP;
|
2018-09-18 21:38:54 +01:00
|
|
|
if (i2c_recv_byte(4, MAX77620_I2C_ADDR, 0x15) & 0x4)
|
2018-03-14 23:26:19 +00:00
|
|
|
res |= BTN_POWER;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2019-03-07 22:22:15 +00:00
|
|
|
u8 btn_wait()
|
2018-03-14 23:26:19 +00:00
|
|
|
{
|
2019-03-07 22:22:15 +00:00
|
|
|
u8 res = 0, btn = btn_read();
|
2018-08-13 10:12:53 +01:00
|
|
|
bool pwr = false;
|
2018-05-24 22:37:30 +01:00
|
|
|
|
2018-06-15 12:28:27 +01:00
|
|
|
//Power button down, raise a filter.
|
2018-05-24 22:37:30 +01:00
|
|
|
if (btn & BTN_POWER)
|
|
|
|
{
|
2018-08-13 10:12:53 +01:00
|
|
|
pwr = true;
|
2018-06-15 12:28:27 +01:00
|
|
|
btn &= ~BTN_POWER;
|
2018-05-24 22:37:30 +01:00
|
|
|
}
|
|
|
|
|
2018-03-14 23:26:19 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
res = btn_read();
|
2018-06-15 12:28:27 +01:00
|
|
|
//Power button up, remove filter.
|
2018-05-24 22:37:30 +01:00
|
|
|
if (!(res & BTN_POWER) && pwr)
|
2018-08-13 10:12:53 +01:00
|
|
|
pwr = false;
|
2018-06-15 12:28:27 +01:00
|
|
|
else if (pwr) //Power button still down.
|
|
|
|
res &= ~BTN_POWER;
|
2018-03-14 23:26:19 +00:00
|
|
|
} while (btn == res);
|
2018-06-13 00:34:32 +01:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2019-03-07 22:22:15 +00:00
|
|
|
u8 btn_wait_timeout(u32 time_ms, u8 mask)
|
2018-06-13 00:34:32 +01:00
|
|
|
{
|
2018-07-04 16:39:26 +01:00
|
|
|
u32 timeout = get_tmr_ms() + time_ms;
|
2019-03-07 22:22:15 +00:00
|
|
|
u8 res = btn_read() & mask;
|
2018-06-13 00:34:32 +01:00
|
|
|
|
2019-03-08 20:18:54 +00:00
|
|
|
while (get_tmr_ms() < timeout)
|
2018-06-13 00:34:32 +01:00
|
|
|
{
|
2019-03-07 22:22:15 +00:00
|
|
|
if (res == mask)
|
|
|
|
break;
|
|
|
|
else
|
2018-06-18 07:04:13 +01:00
|
|
|
res = btn_read() & mask;
|
2019-03-08 20:18:54 +00:00
|
|
|
};
|
2018-06-13 00:34:32 +01:00
|
|
|
|
2018-03-14 23:26:19 +00:00
|
|
|
return res;
|
|
|
|
}
|