]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
rn42: Add rn42_getc and rn42_gets
authortmk <hasu@tmk-kbd.com>
Sat, 10 Jan 2015 17:39:32 +0000 (02:39 +0900)
committertmk <hasu@tmk-kbd.com>
Thu, 15 Jan 2015 08:08:49 +0000 (17:08 +0900)
keyboard/hhkb_rn42/rn42/rn42.c
keyboard/hhkb_rn42/rn42/rn42.h

index 1565b4cf1417a582dd87816a525c2ccfc5f5def0..aa6015cbf23f3880c0190fe5f9553d3c8ebbefe0 100644 (file)
@@ -4,6 +4,7 @@
 #include "serial.h"
 #include "rn42.h"
 #include "print.h"
+#include "timer.h"
 #include "wait.h"
 
 
@@ -47,11 +48,39 @@ void rn42_init(void)
     serial_init();
 }
 
+int16_t rn42_getc(void)
+{
+    return serial_recv2();
+}
+
+char *rn42_gets(uint16_t timeout)
+{
+    static char s[16];
+    uint16_t t = timer_read();
+    uint8_t i = 0;
+    int16_t c;
+    while (i < 15 && timer_elapsed(t) < timeout) {
+               if ((c = rn42_getc()) != -1) {
+            if ((char)c == '\r') continue;
+            if ((char)c == '\n') break;
+            s[i++] = c;
+        }
+    }
+    s[i] = '\0';
+    return s;
+}
+
 void rn42_putc(uint8_t c)
 {
     serial_send(c);
 }
 
+void rn42_puts(char *s)
+{
+    while (*s)
+       serial_send(*s++);
+}
+
 bool rn42_autoconnecting(void)
 {
     // GPIO6 for control connection(high: auto connect, low: disconnect)
index 5283a3648c256c72a5b1911bbf6eb91722f1d482..86090be7c53f01c4fc9458d59d97b2beb768fa79 100644 (file)
@@ -7,7 +7,10 @@ host_driver_t rn42_driver;
 host_driver_t rn42_config_driver;
 
 void rn42_init(void);
+int16_t rn42_getc(void);
+char *rn42_gets(uint16_t timeout);
 void rn42_putc(uint8_t c);
+void rn42_puts(char *s);
 bool rn42_autoconnecting(void);
 void rn42_autoconnect(void);
 void rn42_disconnect(void);