From b92b55bdd0ff12fa5c83f7157ff8a10ec8ea582d Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Sun, 9 Apr 2017 15:36:34 +0200 Subject: 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. --- nrf5/bluetooth/ble_uart.c | 4 ++-- 1 file 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); -- cgit v1.2.3