diff --git a/samples/bluetooth/central/Makefile b/samples/bluetooth/central/Makefile new file mode 100644 index 00000000000..9b09d321ebc --- /dev/null +++ b/samples/bluetooth/central/Makefile @@ -0,0 +1,47 @@ +# Makefile - Bluetooth LE central sample makefile + +# +# Copyright (c) 2015 Intel Corporation +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1) Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# 2) Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# 3) Neither the name of Intel Corporation nor the names of its contributors +# may be used to endorse or promote products derived from this software without +# specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +# DESCRIPTION +# Makefile for the Bluetooth LE central role sample + +include $(subst \,/,${VXMICRO_BASE})/make/env/defs.base + +# default BSP +BSP ?= generic_pc + +PRJ_CONF = prj_${vARCH}.conf +VPFILE = prj.vpf + +# UART for Bluetooth +QEMU_EXTRA_FLAGS += -serial unix:/tmp/bt-server-bredr + +include ${vMAKE}/target/make.ukernel diff --git a/samples/bluetooth/central/prj.vpf b/samples/bluetooth/central/prj.vpf new file mode 100644 index 00000000000..822c2ac5813 --- /dev/null +++ b/samples/bluetooth/central/prj.vpf @@ -0,0 +1,5 @@ +% Application : Bluetooth peripheral sample + +% TASK NAME PRIO ENTRY STACK GROUPS +% =================================================== + TASK MAIN 7 mainloop 2048 [EXE] diff --git a/samples/bluetooth/central/prj_x86.conf b/samples/bluetooth/central/prj_x86.conf new file mode 100644 index 00000000000..ad5bd0bdfb5 --- /dev/null +++ b/samples/bluetooth/central/prj_x86.conf @@ -0,0 +1,5 @@ +CONFIG_TEST_RANDOM_GENERATOR=y +CONFIG_BLUETOOTH=y +CONFIG_BLUETOOTH_UART=y +CONFIG_BLUETOOTH_DEBUG=y +CONFIG_BLUETOOTH_DEBUG_HCI_CORE=y diff --git a/samples/bluetooth/central/src/main.c b/samples/bluetooth/central/src/main.c new file mode 100644 index 00000000000..f8ee8f210d3 --- /dev/null +++ b/samples/bluetooth/central/src/main.c @@ -0,0 +1,80 @@ +/* main.c - Application main entry point */ + +/* + * Copyright (c) 2015 Intel Corporation + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1) Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2) Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * 3) Neither the name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include + +#include +#include + +#define SLEEPTIME 5000 +#define SLEEPTICKS (SLEEPTIME * sys_clock_ticks_per_sec / 1000) + + +#ifdef CONFIG_MICROKERNEL +void mainloop(void) +#else +void main(void) +#endif +{ + int err; + err = bt_init(); + + if (err) { + printk("Bluetooth init failed (err %d)\n", err); + return; + } + + printk("Bluetooth initialized\n"); + + err = bt_start_scanning(BT_LE_SCAN_ENABLE, + BT_LE_SCAN_FILTER_DUP_DISABLE); + + if (err) { + printk("Scanning failed to start (err %d)\n", err); + return; + } + + printk("Scanning successfully started\n"); + task_sleep(SLEEPTICKS); + + err = bt_stop_scanning(); + + if (err) { + printk("Stopping scanning failed (err %d)\n", err); + return; + } + printk("Scanning successfully stopped\n"); +} +