1bcf00d8fSMatthias Ringwald /* 2bcf00d8fSMatthias Ringwald * Copyright (C) 2014 BlueKitchen GmbH 3bcf00d8fSMatthias Ringwald * 4bcf00d8fSMatthias Ringwald * Redistribution and use in source and binary forms, with or without 5bcf00d8fSMatthias Ringwald * modification, are permitted provided that the following conditions 6bcf00d8fSMatthias Ringwald * are met: 7bcf00d8fSMatthias Ringwald * 8bcf00d8fSMatthias Ringwald * 1. Redistributions of source code must retain the above copyright 9bcf00d8fSMatthias Ringwald * notice, this list of conditions and the following disclaimer. 10bcf00d8fSMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright 11bcf00d8fSMatthias Ringwald * notice, this list of conditions and the following disclaimer in the 12bcf00d8fSMatthias Ringwald * documentation and/or other materials provided with the distribution. 13bcf00d8fSMatthias Ringwald * 3. Neither the name of the copyright holders nor the names of 14bcf00d8fSMatthias Ringwald * contributors may be used to endorse or promote products derived 15bcf00d8fSMatthias Ringwald * from this software without specific prior written permission. 16bcf00d8fSMatthias Ringwald * 4. Any redistribution, use, or modification is done solely for 17bcf00d8fSMatthias Ringwald * personal benefit and not for any commercial purpose or for 18bcf00d8fSMatthias Ringwald * monetary gain. 19bcf00d8fSMatthias Ringwald * 20bcf00d8fSMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 21bcf00d8fSMatthias Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22bcf00d8fSMatthias Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 23bcf00d8fSMatthias Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 24bcf00d8fSMatthias Ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 25bcf00d8fSMatthias Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 26bcf00d8fSMatthias Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 27bcf00d8fSMatthias Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 28bcf00d8fSMatthias Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 29bcf00d8fSMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 30bcf00d8fSMatthias Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31bcf00d8fSMatthias Ringwald * SUCH DAMAGE. 32bcf00d8fSMatthias Ringwald * 33bcf00d8fSMatthias Ringwald * Please inquire about commercial licensing options at 34bcf00d8fSMatthias Ringwald * [email protected] 35bcf00d8fSMatthias Ringwald * 36bcf00d8fSMatthias Ringwald */ 37bcf00d8fSMatthias Ringwald 38bcf00d8fSMatthias Ringwald // ***************************************************************************** 39bcf00d8fSMatthias Ringwald // 40bcf00d8fSMatthias Ringwald // minimal setup for SDP client over USB or UART 41bcf00d8fSMatthias Ringwald // 42bcf00d8fSMatthias Ringwald // ***************************************************************************** 43bcf00d8fSMatthias Ringwald 44bcf00d8fSMatthias Ringwald #include "btstack_config.h" 45bcf00d8fSMatthias Ringwald 46bcf00d8fSMatthias Ringwald #include <stdint.h> 47bcf00d8fSMatthias Ringwald #include <stdio.h> 48bcf00d8fSMatthias Ringwald #include <stdlib.h> 49bcf00d8fSMatthias Ringwald #include <string.h> 50bcf00d8fSMatthias Ringwald 51bcf00d8fSMatthias Ringwald 52bcf00d8fSMatthias Ringwald #include "hci_cmd.h" 53bcf00d8fSMatthias Ringwald #include "btstack_run_loop.h" 54bcf00d8fSMatthias Ringwald 55bcf00d8fSMatthias Ringwald #include "hci.h" 56bcf00d8fSMatthias Ringwald #include "btstack_memory.h" 57bcf00d8fSMatthias Ringwald #include "hci_dump.h" 58bcf00d8fSMatthias Ringwald #include "l2cap.h" 59efda0b48SMatthias Ringwald #include "classic/sdp_client_rfcomm.h" 60bcf00d8fSMatthias Ringwald #include "classic/rfcomm.h" 61bcf00d8fSMatthias Ringwald #include "btstack_event.h" 62bcf00d8fSMatthias Ringwald 63bcf00d8fSMatthias Ringwald #define NUM_ROWS 25 64bcf00d8fSMatthias Ringwald #define NUM_COLS 40 65bcf00d8fSMatthias Ringwald 66bcf00d8fSMatthias Ringwald typedef enum { 67bcf00d8fSMatthias Ringwald W4_SDP_RESULT, 68bcf00d8fSMatthias Ringwald W4_SDP_COMPLETE, 69bcf00d8fSMatthias Ringwald W4_RFCOMM_CHANNEL, 701193857eSMatthias Ringwald SENDING, 71bcf00d8fSMatthias Ringwald DONE 72bcf00d8fSMatthias Ringwald } state_t; 73bcf00d8fSMatthias Ringwald 74bcf00d8fSMatthias Ringwald static void handle_query_rfcomm_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size); 75bcf00d8fSMatthias Ringwald 76369c1a52SMatthias Ringwald #define DATA_VOLUME (10 * 1000 * 1000) 77bcf00d8fSMatthias Ringwald 78bcf00d8fSMatthias Ringwald // configuration area { 79bcf00d8fSMatthias Ringwald static bd_addr_t remote = {0x84, 0x38, 0x35, 0x65, 0xD1, 0x15}; // address of remote device 80bcf00d8fSMatthias Ringwald static const char * spp_service_name_prefix = "Bluetooth-Incoming"; // default on OS X 81bcf00d8fSMatthias Ringwald // configuration area } 82bcf00d8fSMatthias Ringwald 83bcf00d8fSMatthias Ringwald static uint8_t test_data[NUM_ROWS * NUM_COLS]; 84bcf00d8fSMatthias Ringwald static uint16_t test_data_len = sizeof(test_data); 85bcf00d8fSMatthias Ringwald static uint8_t channel_nr = 0; 86bcf00d8fSMatthias Ringwald static uint16_t mtu; 87bcf00d8fSMatthias Ringwald static uint16_t rfcomm_cid = 0; 88bcf00d8fSMatthias Ringwald static uint32_t data_to_send = DATA_VOLUME; 89bcf00d8fSMatthias Ringwald static state_t state = W4_SDP_RESULT; 90bcf00d8fSMatthias Ringwald static btstack_packet_callback_registration_t hci_event_callback_registration; 91bcf00d8fSMatthias Ringwald 92369c1a52SMatthias Ringwald /* 93369c1a52SMatthias Ringwald * @section Track throughput 94369c1a52SMatthias Ringwald * @text We calculate the throughput by setting a start time and measuring the amount of 95369c1a52SMatthias Ringwald * data sent. After a configurable REPORT_INTERVAL_MS, we print the throughput in kB/s 96369c1a52SMatthias Ringwald * and reset the counter and start time. 97369c1a52SMatthias Ringwald */ 98369c1a52SMatthias Ringwald 99369c1a52SMatthias Ringwald /* LISTING_START(tracking): Tracking throughput */ 100369c1a52SMatthias Ringwald #define REPORT_INTERVAL_MS 3000 101369c1a52SMatthias Ringwald static uint32_t test_data_sent; 102369c1a52SMatthias Ringwald static uint32_t test_data_start; 103369c1a52SMatthias Ringwald 104369c1a52SMatthias Ringwald static void test_reset(void){ 105369c1a52SMatthias Ringwald test_data_start = btstack_run_loop_get_time_ms(); 106369c1a52SMatthias Ringwald test_data_sent = 0; 107369c1a52SMatthias Ringwald } 108369c1a52SMatthias Ringwald 109369c1a52SMatthias Ringwald static void test_track_sent(int bytes_sent){ 110369c1a52SMatthias Ringwald test_data_sent += test_data_len; 111369c1a52SMatthias Ringwald // evaluate 112369c1a52SMatthias Ringwald uint32_t now = btstack_run_loop_get_time_ms(); 113369c1a52SMatthias Ringwald uint32_t time_passed = now - test_data_start; 114369c1a52SMatthias Ringwald if (time_passed < REPORT_INTERVAL_MS) return; 115369c1a52SMatthias Ringwald // print speed 116369c1a52SMatthias Ringwald int bytes_per_second = test_data_sent * 1000 / time_passed; 1173c64bdf9SMatthias Ringwald printf("%u bytes sent-> %u.%03u kB/s\n", (int) test_data_sent, (int) bytes_per_second / 1000, bytes_per_second % 1000); 118369c1a52SMatthias Ringwald 119369c1a52SMatthias Ringwald // restart 120369c1a52SMatthias Ringwald test_data_start = now; 121369c1a52SMatthias Ringwald test_data_sent = 0; 122369c1a52SMatthias Ringwald } 123369c1a52SMatthias Ringwald /* LISTING_END(tracking): Tracking throughput */ 124369c1a52SMatthias Ringwald 125369c1a52SMatthias Ringwald 126bcf00d8fSMatthias Ringwald static void create_test_data(void){ 127bcf00d8fSMatthias Ringwald int x,y; 128bcf00d8fSMatthias Ringwald for (y=0;y<NUM_ROWS;y++){ 129bcf00d8fSMatthias Ringwald for (x=0;x<NUM_COLS-2;x++){ 130bcf00d8fSMatthias Ringwald test_data[y*NUM_COLS+x] = '0' + (x % 10); 131bcf00d8fSMatthias Ringwald } 132bcf00d8fSMatthias Ringwald test_data[y*NUM_COLS+NUM_COLS-2] = '\n'; 133bcf00d8fSMatthias Ringwald test_data[y*NUM_COLS+NUM_COLS-1] = '\r'; 134bcf00d8fSMatthias Ringwald } 135bcf00d8fSMatthias Ringwald } 136bcf00d8fSMatthias Ringwald 1375f27b1a1SMatthias Ringwald static void send_packet(void){ 1386dcd2e77SMatthias Ringwald rfcomm_send(rfcomm_cid, (uint8_t*) test_data, test_data_len); 1396dcd2e77SMatthias Ringwald 140369c1a52SMatthias Ringwald test_track_sent(test_data_len); 1416dcd2e77SMatthias Ringwald if (data_to_send <= test_data_len){ 1421193857eSMatthias Ringwald state = DONE; 1436dcd2e77SMatthias Ringwald printf("SPP Streamer: enough data send, closing channel\n"); 144bcf00d8fSMatthias Ringwald rfcomm_disconnect(rfcomm_cid); 145bcf00d8fSMatthias Ringwald rfcomm_cid = 0; 146bcf00d8fSMatthias Ringwald return; 147bcf00d8fSMatthias Ringwald } 148bcf00d8fSMatthias Ringwald data_to_send -= test_data_len; 1495f27b1a1SMatthias Ringwald rfcomm_request_can_send_now_event(rfcomm_cid); 150369c1a52SMatthias Ringwald } 151bcf00d8fSMatthias Ringwald 152bcf00d8fSMatthias Ringwald static void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 153bcf00d8fSMatthias Ringwald if (packet_type != HCI_EVENT_PACKET) return; 1540e2df43fSMatthias Ringwald uint8_t event = hci_event_packet_get_type(packet); 155bcf00d8fSMatthias Ringwald switch (event) { 156bcf00d8fSMatthias Ringwald case BTSTACK_EVENT_STATE: 157bcf00d8fSMatthias Ringwald // bt stack activated, get started 158*fb42b6e5SMilanka Ringwald if (btstack_event_state_get_state(packet) == HCI_STATE_WORKING){ 1596dcd2e77SMatthias Ringwald printf("SDP Query for RFCOMM services on %s started\n", bd_addr_to_str(remote)); 1607fbb5f59SMatthias Ringwald sdp_client_query_rfcomm_channel_and_name_for_uuid(&handle_query_rfcomm_event, remote, SDP_PublicBrowseGroup); 161bcf00d8fSMatthias Ringwald } 162bcf00d8fSMatthias Ringwald break; 163f8f6a918SMatthias Ringwald case RFCOMM_EVENT_CHANNEL_OPENED: 164bcf00d8fSMatthias Ringwald // data: event(8), len(8), status (8), address (48), handle(16), server channel(8), rfcomm_cid(16), max frame size(16) 165bcf00d8fSMatthias Ringwald if (packet[2]) { 1661193857eSMatthias Ringwald state = DONE; 167bcf00d8fSMatthias Ringwald printf("RFCOMM channel open failed, status %u\n", packet[2]); 168bcf00d8fSMatthias Ringwald } else { 169bcf00d8fSMatthias Ringwald // data: event(8), len(8), status (8), address (48), handle (16), server channel(8), rfcomm_cid(16), max frame size(16) 1701193857eSMatthias Ringwald state = SENDING; 171bcf00d8fSMatthias Ringwald rfcomm_cid = little_endian_read_16(packet, 12); 172bcf00d8fSMatthias Ringwald mtu = little_endian_read_16(packet, 14); 173bcf00d8fSMatthias Ringwald printf("RFCOMM channel open succeeded. New RFCOMM Channel ID %u, max frame size %u\n", rfcomm_cid, mtu); 174bcf00d8fSMatthias Ringwald if ((test_data_len > mtu)) { 175bcf00d8fSMatthias Ringwald test_data_len = mtu; 176bcf00d8fSMatthias Ringwald } 177369c1a52SMatthias Ringwald test_reset(); 1785f27b1a1SMatthias Ringwald rfcomm_request_can_send_now_event(rfcomm_cid); 179bcf00d8fSMatthias Ringwald break; 180bcf00d8fSMatthias Ringwald } 181bcf00d8fSMatthias Ringwald break; 182bcf00d8fSMatthias Ringwald case RFCOMM_EVENT_CAN_SEND_NOW: 1835f27b1a1SMatthias Ringwald send_packet(); 184bcf00d8fSMatthias Ringwald break; 1851193857eSMatthias Ringwald case RFCOMM_EVENT_CHANNEL_CLOSED: 1861193857eSMatthias Ringwald if (state != DONE) { 1871193857eSMatthias Ringwald printf("RFCOMM_EVENT_CHANNEL_CLOSED received before all test data was sent\n"); 1881193857eSMatthias Ringwald state = DONE; 1891193857eSMatthias Ringwald } 1901193857eSMatthias Ringwald break; 191bcf00d8fSMatthias Ringwald default: 192bcf00d8fSMatthias Ringwald break; 193bcf00d8fSMatthias Ringwald } 194bcf00d8fSMatthias Ringwald } 195bcf00d8fSMatthias Ringwald 196bcf00d8fSMatthias Ringwald static void handle_found_service(const char * name, uint8_t port){ 197bcf00d8fSMatthias Ringwald printf("APP: Service name: '%s', RFCOMM port %u\n", name, port); 198bcf00d8fSMatthias Ringwald 199bcf00d8fSMatthias Ringwald if (strncmp(name, spp_service_name_prefix, strlen(spp_service_name_prefix)) != 0) return; 200bcf00d8fSMatthias Ringwald 201bcf00d8fSMatthias Ringwald printf("APP: matches requested SPP Service Name\n"); 202bcf00d8fSMatthias Ringwald channel_nr = port; 203bcf00d8fSMatthias Ringwald state = W4_SDP_COMPLETE; 204bcf00d8fSMatthias Ringwald } 205bcf00d8fSMatthias Ringwald 206bcf00d8fSMatthias Ringwald static void handle_query_rfcomm_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 207bcf00d8fSMatthias Ringwald switch (packet[0]){ 208bcf00d8fSMatthias Ringwald case SDP_EVENT_QUERY_RFCOMM_SERVICE: 209bcf00d8fSMatthias Ringwald handle_found_service(sdp_event_query_rfcomm_service_get_name(packet), 210bcf00d8fSMatthias Ringwald sdp_event_query_rfcomm_service_get_rfcomm_channel(packet)); 211bcf00d8fSMatthias Ringwald break; 212bcf00d8fSMatthias Ringwald case SDP_EVENT_QUERY_COMPLETE: 213bcf00d8fSMatthias Ringwald if (state != W4_SDP_COMPLETE){ 214bcf00d8fSMatthias Ringwald printf("Requested SPP Service %s not found \n", spp_service_name_prefix); 215bcf00d8fSMatthias Ringwald break; 216bcf00d8fSMatthias Ringwald } 217bcf00d8fSMatthias Ringwald // connect 218bcf00d8fSMatthias Ringwald printf("Requested SPP Service found, creating RFCOMM channel\n"); 219bcf00d8fSMatthias Ringwald state = W4_RFCOMM_CHANNEL; 220bcf00d8fSMatthias Ringwald rfcomm_create_channel(packet_handler, remote, channel_nr, NULL); 221bcf00d8fSMatthias Ringwald break; 222bcf00d8fSMatthias Ringwald default: 223bcf00d8fSMatthias Ringwald break; 224bcf00d8fSMatthias Ringwald } 225bcf00d8fSMatthias Ringwald } 226bcf00d8fSMatthias Ringwald 227bcf00d8fSMatthias Ringwald int btstack_main(int argc, const char * argv[]); 228bcf00d8fSMatthias Ringwald int btstack_main(int argc, const char * argv[]){ 229bcf00d8fSMatthias Ringwald 230bcf00d8fSMatthias Ringwald create_test_data(); 231bcf00d8fSMatthias Ringwald 232bcf00d8fSMatthias Ringwald printf("Client HCI init done\r\n"); 233bcf00d8fSMatthias Ringwald 234bcf00d8fSMatthias Ringwald // register for HCI events 235bcf00d8fSMatthias Ringwald hci_event_callback_registration.callback = &packet_handler; 236bcf00d8fSMatthias Ringwald hci_add_event_handler(&hci_event_callback_registration); 237bcf00d8fSMatthias Ringwald 238bcf00d8fSMatthias Ringwald // init L2CAP 239bcf00d8fSMatthias Ringwald l2cap_init(); 240bcf00d8fSMatthias Ringwald 241bcf00d8fSMatthias Ringwald // turn on! 242bcf00d8fSMatthias Ringwald hci_power_control(HCI_POWER_ON); 243bcf00d8fSMatthias Ringwald 244bcf00d8fSMatthias Ringwald return 0; 245bcf00d8fSMatthias Ringwald } 246