Skip to content

Commit

Permalink
Add battery monitor and LED control
Browse files Browse the repository at this point in the history
  • Loading branch information
yashikno committed Jul 30, 2014
1 parent 21e68fb commit ae28b16
Showing 1 changed file with 45 additions and 1 deletion.
46 changes: 45 additions & 1 deletion keyboard/hhkb_rn42/rn42/rn42_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@
static bool config_mode = false;
static bool force_usb = false;

static void status_led(bool on)
{
if (on) {
DDRE |= (1<<6);
PORTE &= ~(1<<6);
} else {
DDRE |= (1<<6);
PORTE |= (1<<6);
}
}

static void battery_adc_init(void)
{
ADMUX = (1<<REFS1) | (1<<REFS0); // Ref:2.56V band-gap, Input:ADC0(PF0)
Expand Down Expand Up @@ -43,10 +54,35 @@ static uint16_t battery_adc(void)
return bat;
}

static void battery_led(bool on)
{
if (on) {
DDRF |= (1<<5);
PORTF &= ~(1<<5);
} else {
DDRF &= ~(1<<5);
PORTF |= (1<<5);
}
}

static bool battery_charging(void)
{
// MCP73831:STAT
// Hi-Z: Shutdown/No Battery
// Low: Charging
// Hi: Charged
DDRF &= ~(1<<5);
PORTF |= (1<<5);
return PINF&(1<<5) ? false : true;
}

void rn42_task_init(void)
{
battery_adc_init();

// battery charging(input with pull-up)
DDRF &= ~(1<<5);
PORTF |= (1<<5);
}

void rn42_task(void)
Expand Down Expand Up @@ -108,6 +144,8 @@ void rn42_task(void)
******************************************************************************/
bool command_extra(uint8_t code)
{
uint32_t t;
uint16_t b;
static host_driver_t *prev_driver = &rn42_driver;
switch (code) {
case KC_H:
Expand Down Expand Up @@ -166,10 +204,16 @@ bool command_extra(uint8_t code)
xprintf("rn42_rts(): %X\n", rn42_rts());
xprintf("config_mode: %X\n", config_mode);
xprintf("VBUS: %X\n", USBSTA&(1<<VBUS));
xprintf("battery_charging: %X\n", battery_charging());
return true;
case KC_B:
// battery monitor
xprintf("BAT: %04X(%08lX)\n", battery_adc(), timer_read32());
t = timer_read32()/1000;
b = battery_adc();
xprintf("BAT: %umV(%04X)\t", (b-16)*5, b);
xprintf("%02u:", t/3600);
xprintf("%02u:", t%3600/60);
xprintf("%02u\n", t%60);
return true;
default:
if (config_mode)
Expand Down

0 comments on commit ae28b16

Please sign in to comment.