Skip to content

Commit

Permalink
hhkb: Move functions which communicate with RN42
Browse files Browse the repository at this point in the history
  • Loading branch information
tmk committed Dec 26, 2016
1 parent f4a2030 commit 2e46473
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 35 deletions.
28 changes: 28 additions & 0 deletions keyboard/hhkb/rn42/rn42.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,34 @@ static uint8_t leds = 0;
static uint8_t keyboard_leds(void) { return leds; }
void rn42_set_leds(uint8_t l) { leds = l; }


void rn42_send_str(const char *str)
{
uint8_t c;
while ((c = pgm_read_byte(str++)))
rn42_putc(c);
}

const char *rn42_send_command(const char *cmd)
{
static const char *s;
rn42_send_str(cmd);
wait_ms(500);
s = rn42_gets(100);
xprintf("%s\r\n", s);
rn42_print_response();
return s;
}

void rn42_print_response(void)
{
int16_t c;
while ((c = rn42_getc()) != -1) {
xprintf("%c", c);
}
}


static void send_keyboard(report_keyboard_t *report)
{
// wake from deep sleep
Expand Down
7 changes: 7 additions & 0 deletions keyboard/hhkb/rn42/rn42.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define RN42_H

#include <stdbool.h>
#include "host_driver.h"

host_driver_t rn42_driver;
host_driver_t rn42_config_driver;
Expand All @@ -20,4 +21,10 @@ void rn42_cts_lo(void);
bool rn42_linked(void);
void rn42_set_leds(uint8_t l);

const char *rn42_send_command(const char *cmd);
void rn42_send_str(const char *str);
void rn42_print_response(void);
#define SEND_STR(str) rn42_send_str(PSTR(str))
#define SEND_COMMAND(cmd) rn42_send_command(PSTR(cmd))

#endif
36 changes: 1 addition & 35 deletions keyboard/hhkb/rn42/rn42_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,40 +125,6 @@ void rn42_task(void)
******************************************************************************/
static host_driver_t *prev_driver = &rn42_driver;

static void print_rn42(void)
{
int16_t c;
while ((c = rn42_getc()) != -1) {
xprintf("%c", c);
}
}

static void clear_rn42(void)
{
while (rn42_getc() != -1) ;
}

#define SEND_STR(str) send_str(PSTR(str))
#define SEND_COMMAND(cmd) send_command(PSTR(cmd))

static void send_str(const char *str)
{
uint8_t c;
while ((c = pgm_read_byte(str++)))
rn42_putc(c);
}

static const char *send_command(const char *cmd)
{
static const char *s;
send_str(cmd);
wait_ms(500);
s = rn42_gets(100);
xprintf("%s\r\n", s);
print_rn42();
return s;
}

static void enter_command_mode(void)
{
prev_driver = host_get_driver();
Expand All @@ -171,7 +137,7 @@ static void enter_command_mode(void)
wait_ms(1100); // need 1 sec
SEND_COMMAND("$$$");
wait_ms(600); // need 1 sec
print_rn42();
rn42_print_response();
const char *s = SEND_COMMAND("v\r\n");
if (strncmp("v", s, 1) != 0) SEND_COMMAND("+\r\n"); // local echo on
}
Expand Down

0 comments on commit 2e46473

Please sign in to comment.