diff options
| author | Glenn Ruben Bakke <glennbakke@gmail.com> | 2017-04-09 15:36:34 +0200 |
|---|---|---|
| committer | Glenn Ruben Bakke <glennbakke@gmail.com> | 2017-04-09 15:36:34 +0200 |
| commit | b92b55bdd0ff12fa5c83f7157ff8a10ec8ea582d (patch) | |
| tree | dab950270a6f5a6f9f0033f0f7d1d4999cf1e376 | |
| parent | a4173c467fd8106df30ae03361fb663021c9c244 (diff) | |
nrf5/bluetooth: Updating Eddystone URL to point to https://goo.gl/x46FES which hosts the MicroPython WebBluetooth application which will be able to connect to the Bluetooth LE UART service of the device and create the REPL.
| -rw-r--r-- | nrf5/bluetooth/ble_uart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nrf5/bluetooth/ble_uart.c b/nrf5/bluetooth/ble_uart.c index f5614849a..4b53268af 100644 --- a/nrf5/bluetooth/ble_uart.c +++ b/nrf5/bluetooth/ble_uart.c @@ -214,9 +214,9 @@ void ble_uart_init0(void) { m_adv_data_uart_service.connectable = true; #if BLUETOOTH_WEBBLUETOOTH_REPL - static uint8_t eddystone_url_data[26] = {0x2, 0x1, 0x6, + static uint8_t eddystone_url_data[27] = {0x2, 0x1, 0x6, 0x3, 0x3, 0xaa, 0xfe, - 18, 0x16, 0xaa, 0xfe, 0x10, 0xee, 0x0, 'm', 'i', 'c', 'r', 'o', 'p', 'y', 't', 'h', 'o', 'n', 0x1}; + 19, 0x16, 0xaa, 0xfe, 0x10, 0xee, 0x3, 'g', 'o', 'o', '.', 'g', 'l', '/', 'x', '4', '6', 'F', 'E', 'S'}; // eddystone url adv data m_adv_data_eddystone_url.p_data = eddystone_url_data; m_adv_data_eddystone_url.data_len = sizeof(eddystone_url_data); |
