mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
Battery time estimation works now. This commit also changes the mksquashfs path to FUNKEY_SDK_PATH. Change-Id: Ic0aa4c40011b0716f1c36c014377eaccb486e841
64 lines
1.9 KiB
C
64 lines
1.9 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
*
|
|
* Copyright (C) 2025 Hairo R. Carela
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
#include "system.h"
|
|
#include "power-rgnano.h"
|
|
#include "power.h"
|
|
#include "panic.h"
|
|
#include "sysfs.h"
|
|
|
|
const char * const sysfs_bat_voltage =
|
|
"/sys/class/power_supply/axp20x-battery/voltage_now";
|
|
|
|
const char * const sysfs_bat_current =
|
|
"/sys/class/power_supply/axp20x-battery/current_now";
|
|
|
|
const char * const sysfs_bat_level =
|
|
"/sys/class/power_supply/axp20x-battery/capacity";
|
|
|
|
unsigned int rgnano_power_get_battery_voltage(void)
|
|
{
|
|
int battery_voltage;
|
|
sysfs_get_int(sysfs_bat_voltage, &battery_voltage);
|
|
|
|
return battery_voltage;
|
|
}
|
|
|
|
unsigned int rgnano_power_get_battery_current(void)
|
|
{
|
|
int battery_current;
|
|
sysfs_get_int(sysfs_bat_current, &battery_current);
|
|
|
|
/* Current is in microamps */
|
|
return (battery_current / 1000);
|
|
}
|
|
|
|
unsigned int rgnano_power_get_battery_capacity(void)
|
|
{
|
|
int battery_level;
|
|
sysfs_get_int(sysfs_bat_level, &battery_level);
|
|
|
|
return battery_level;
|
|
}
|