altos/rn4678: Add BLE support
authorKeith Packard <keithp@keithp.com>
Tue, 20 Jun 2017 18:19:40 +0000 (11:19 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 20 Jun 2017 18:19:40 +0000 (11:19 -0700)
This just means ignoring the BLE connect status message.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/drivers/ao_rn4678.c

index ba25e70dda34e27214f937a150b594ca83f6beb0..98dc35b55eee33c8b7cd8ba069912423eaf23674 100644 (file)
@@ -100,6 +100,7 @@ static const char *status_strings[] = {
        "RFCOMM_CLOSE",
        "RFCOMM_OPEN",
        "CONNECT",
+       "LCONNECT",
        "DISCONN",
        "BONDED",
 };
@@ -560,8 +561,22 @@ ao_rn_factory(void)
        ao_gpio_set(AO_RN_RST_N_PORT, AO_RN_RST_N_PIN, foo, 1);
 }
 
+#if AO_RN_DEBUG
+static void
+ao_rn_send(void)
+{
+       int     c;
+
+       while ((c = getchar()) != '~')
+               ao_rn_putchar(c);
+}
+#endif
+
 static const struct ao_cmds rn_cmds[] = {
        { ao_rn_factory, "F\0Factory reset rn4678" },
+#if AO_RN_DEBUG
+       { ao_rn_send, "B\0Send data to rn4678. End with ~" },
+#endif
        { 0 },
 };