BLE demo for mbed Ported RunningElectronics's SBDBT firmware for BLE. It can communicate with iOS

Dependencies:   FatFileSystem mbed

Fork of BTstack by Norimasa Okamoto

Committer:
todotani
Date:
Wed Feb 20 14:18:38 2013 +0000
Revision:
6:cf06ba884429
Parent:
0:1ed23ab1345f
Change tick timer to 1ms. Change attribute 0xFFF1 as read of DigitalIn p5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:1ed23ab1345f 1 /*
va009039 0:1ed23ab1345f 2 * Copyright (C) 2009-2012 by Matthias Ringwald
va009039 0:1ed23ab1345f 3 *
va009039 0:1ed23ab1345f 4 * Redistribution and use in source and binary forms, with or without
va009039 0:1ed23ab1345f 5 * modification, are permitted provided that the following conditions
va009039 0:1ed23ab1345f 6 * are met:
va009039 0:1ed23ab1345f 7 *
va009039 0:1ed23ab1345f 8 * 1. Redistributions of source code must retain the above copyright
va009039 0:1ed23ab1345f 9 * notice, this list of conditions and the following disclaimer.
va009039 0:1ed23ab1345f 10 * 2. Redistributions in binary form must reproduce the above copyright
va009039 0:1ed23ab1345f 11 * notice, this list of conditions and the following disclaimer in the
va009039 0:1ed23ab1345f 12 * documentation and/or other materials provided with the distribution.
va009039 0:1ed23ab1345f 13 * 3. Neither the name of the copyright holders nor the names of
va009039 0:1ed23ab1345f 14 * contributors may be used to endorse or promote products derived
va009039 0:1ed23ab1345f 15 * from this software without specific prior written permission.
va009039 0:1ed23ab1345f 16 * 4. Any redistribution, use, or modification is done solely for
va009039 0:1ed23ab1345f 17 * personal benefit and not for any commercial purpose or for
va009039 0:1ed23ab1345f 18 * monetary gain.
va009039 0:1ed23ab1345f 19 *
va009039 0:1ed23ab1345f 20 * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS
va009039 0:1ed23ab1345f 21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
va009039 0:1ed23ab1345f 22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
va009039 0:1ed23ab1345f 23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
va009039 0:1ed23ab1345f 24 * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
va009039 0:1ed23ab1345f 25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
va009039 0:1ed23ab1345f 26 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
va009039 0:1ed23ab1345f 27 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
va009039 0:1ed23ab1345f 28 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
va009039 0:1ed23ab1345f 29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
va009039 0:1ed23ab1345f 30 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
va009039 0:1ed23ab1345f 31 * SUCH DAMAGE.
va009039 0:1ed23ab1345f 32 *
va009039 0:1ed23ab1345f 33 * Please inquire about commercial licensing options at btstack@ringwald.ch
va009039 0:1ed23ab1345f 34 *
va009039 0:1ed23ab1345f 35 */
va009039 0:1ed23ab1345f 36
va009039 0:1ed23ab1345f 37 /**
va009039 0:1ed23ab1345f 38 * interface to provide link key and remote name storage
va009039 0:1ed23ab1345f 39 */
va009039 0:1ed23ab1345f 40
va009039 0:1ed23ab1345f 41 #pragma once
va009039 0:1ed23ab1345f 42
va009039 0:1ed23ab1345f 43 #include <btstack/utils.h>
va009039 0:1ed23ab1345f 44
va009039 0:1ed23ab1345f 45 typedef struct {
va009039 0:1ed23ab1345f 46
va009039 0:1ed23ab1345f 47 // management
va009039 0:1ed23ab1345f 48 void (*open)(void);
va009039 0:1ed23ab1345f 49 void (*close)(void);
va009039 0:1ed23ab1345f 50
va009039 0:1ed23ab1345f 51 // link key
va009039 0:1ed23ab1345f 52 int (*get_link_key)(bd_addr_t *bd_addr, link_key_t *link_key);
va009039 0:1ed23ab1345f 53 void (*put_link_key)(bd_addr_t *bd_addr, link_key_t *key);
va009039 0:1ed23ab1345f 54 void (*delete_link_key)(bd_addr_t *bd_addr);
va009039 0:1ed23ab1345f 55
va009039 0:1ed23ab1345f 56 // remote name
va009039 0:1ed23ab1345f 57 int (*get_name)(bd_addr_t *bd_addr, device_name_t *device_name);
va009039 0:1ed23ab1345f 58 void (*put_name)(bd_addr_t *bd_addr, device_name_t *device_name);
va009039 0:1ed23ab1345f 59 void (*delete_name)(bd_addr_t *bd_addr);
va009039 0:1ed23ab1345f 60
va009039 0:1ed23ab1345f 61 // persistent rfcomm channel
va009039 0:1ed23ab1345f 62 uint8_t (*persistent_rfcomm_channel)(char *servicename);
va009039 0:1ed23ab1345f 63
va009039 0:1ed23ab1345f 64 } remote_device_db_t;
va009039 0:1ed23ab1345f 65
va009039 0:1ed23ab1345f 66 extern remote_device_db_t remote_device_db_iphone;
va009039 0:1ed23ab1345f 67 extern const remote_device_db_t remote_device_db_memory;
va009039 0:1ed23ab1345f 68
va009039 0:1ed23ab1345f 69 // MARK: non-persisten implementation
va009039 0:1ed23ab1345f 70 #include <btstack/linked_list.h>
va009039 0:1ed23ab1345f 71 #define MAX_NAME_LEN 32
va009039 0:1ed23ab1345f 72 typedef struct {
va009039 0:1ed23ab1345f 73 // linked list - assert: first field
va009039 0:1ed23ab1345f 74 linked_item_t item;
va009039 0:1ed23ab1345f 75
va009039 0:1ed23ab1345f 76 bd_addr_t bd_addr;
va009039 0:1ed23ab1345f 77 } db_mem_device_t;
va009039 0:1ed23ab1345f 78
va009039 0:1ed23ab1345f 79 typedef struct {
va009039 0:1ed23ab1345f 80 db_mem_device_t device;
va009039 0:1ed23ab1345f 81 link_key_t link_key;
va009039 0:1ed23ab1345f 82 } db_mem_device_link_key_t;
va009039 0:1ed23ab1345f 83
va009039 0:1ed23ab1345f 84 typedef struct {
va009039 0:1ed23ab1345f 85 db_mem_device_t device;
va009039 0:1ed23ab1345f 86 char device_name[MAX_NAME_LEN];
va009039 0:1ed23ab1345f 87 } db_mem_device_name_t;
va009039 0:1ed23ab1345f 88
va009039 0:1ed23ab1345f 89 typedef struct {
va009039 0:1ed23ab1345f 90 // linked list - assert: first field
va009039 0:1ed23ab1345f 91 linked_item_t item;
va009039 0:1ed23ab1345f 92
va009039 0:1ed23ab1345f 93 char service_name[MAX_NAME_LEN];
va009039 0:1ed23ab1345f 94 uint8_t channel;
va009039 0:1ed23ab1345f 95 } db_mem_service_t;