zephyr/tests/bluetooth/tester
Anas Nashif 5363d14a9e boards: rename Quark SE Devboard to Quark SE C1000
This board now has an official name and will be available soon:

http://www.intel.com/content/www/us/en/embedded/products/quark/mcu/se-soc/overview.html

Jira: ZEP-758
Change-Id: Ia16d33722308cf81471321c3063bdc75055a4d50
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-09-16 03:10:31 +00:00
..
src Bluetooth: tester: Add L2CAP init method 2016-09-07 09:08:47 +00:00
Makefile Bluetooth: Update Intel copyright for files modified in 2016 2016-06-10 12:10:53 +03:00
README
btp_spec.txt Bluetooth: btp: Extend BTP specification to cover L2CAP tests 2016-09-07 08:17:26 +03:00
prj.conf Bluetooth: tester: Add L2CAP init method 2016-09-07 09:08:47 +00:00
prj.mdef Bluetooth: Remove unnecessary #ifdef for micro/nano main function 2016-05-17 12:30:41 +03:00
prj_nble.conf Bluetooth: tester: Increase prepare write buffers pool for qemu and nble 2016-07-01 14:57:02 +02:00
prj_nimble.conf Bluetooth: tester: Add L2CAP init method 2016-09-07 09:08:47 +00:00
testcase.ini boards: rename Quark SE Devboard to Quark SE C1000 2016-09-16 03:10:31 +00:00

README

Title: Bluetooth tester application

Description:

Tester application uses binary protocol to control Zephyr stack and is aimed at
automated testing. It requires two serial ports to operate.
The first serial is used by Bluetooth Testing Protocol (BTP) to drive Bluetooth
stack. BTP commands and events are received and buffered for further processing
over the same serial.

--------------------------------------------------------------------------------

Supported Profiles:

GAP, GATT, SM
--------------------------------------------------------------------------------

Building and running on QEMU:

QEMU should have connection with the external host Bluetooth hardware.
The btproxy tool from BlueZ can be used to give access to a Bluetooth controller
attached to the Linux host OS:

$ sudo tools/btproxy -u
Listening on /tmp/bt-server-bredr

/tmp/bt-server-bredr option is already set in Makefile through QEMU_EXTRA_FLAGS.

To build tester application for QEMU:

$ make pristine && make qemu

'bt-stack-tester' UNIX socket (previously set in Makefile) can be used for now
to control tester application.
--------------------------------------------------------------------------------

Building and running on Arduino 101:

Arduino 101 is equipped with Nordic nRF51 Bluetooth LE chip, thus nble
driver has to be build.
For building tester application for Arduino 101 board with Nordic Bluetooth Low
Energy stack (NBLE) use prj_nble.conf:

$ make pristine && make CONF_FILE=prj_nble.conf BOARD=arduino_101 flash

While running tester application on Arduino 101, serial converter, typically
UART <-> USB is required by BTP to operate. Connect Arduino 101 Tx and Rx lines
(0 and 1 ports on Arduino 101 board) through the UART converter to the host
USB port.

Use serial client, e.g. PUTTY to communicate over the serial port
(typically /dev/ttyUSBx) with the tester using BTP.