BTstack for Nucleo F401RE/FRDM-KL46Z example program

Dependencies:   F401RE-USBHost mbed

The usage is the same as KL46Z-BTstack_example.
使い方はKL46Z-BTstack_exampleと同じです。
/media/uploads/va009039/f401re-btstack.jpg

Committer:
va009039
Date:
Mon Jun 09 09:03:25 2014 +0000
Revision:
0:a05a07cd6fdf
first commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:a05a07cd6fdf 1 /*
va009039 0:a05a07cd6fdf 2 * Copyright (C) 2009-2012 by Matthias Ringwald
va009039 0:a05a07cd6fdf 3 *
va009039 0:a05a07cd6fdf 4 * Redistribution and use in source and binary forms, with or without
va009039 0:a05a07cd6fdf 5 * modification, are permitted provided that the following conditions
va009039 0:a05a07cd6fdf 6 * are met:
va009039 0:a05a07cd6fdf 7 *
va009039 0:a05a07cd6fdf 8 * 1. Redistributions of source code must retain the above copyright
va009039 0:a05a07cd6fdf 9 * notice, this list of conditions and the following disclaimer.
va009039 0:a05a07cd6fdf 10 * 2. Redistributions in binary form must reproduce the above copyright
va009039 0:a05a07cd6fdf 11 * notice, this list of conditions and the following disclaimer in the
va009039 0:a05a07cd6fdf 12 * documentation and/or other materials provided with the distribution.
va009039 0:a05a07cd6fdf 13 * 3. Neither the name of the copyright holders nor the names of
va009039 0:a05a07cd6fdf 14 * contributors may be used to endorse or promote products derived
va009039 0:a05a07cd6fdf 15 * from this software without specific prior written permission.
va009039 0:a05a07cd6fdf 16 * 4. Any redistribution, use, or modification is done solely for
va009039 0:a05a07cd6fdf 17 * personal benefit and not for any commercial purpose or for
va009039 0:a05a07cd6fdf 18 * monetary gain.
va009039 0:a05a07cd6fdf 19 *
va009039 0:a05a07cd6fdf 20 * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS
va009039 0:a05a07cd6fdf 21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
va009039 0:a05a07cd6fdf 22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
va009039 0:a05a07cd6fdf 23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
va009039 0:a05a07cd6fdf 24 * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
va009039 0:a05a07cd6fdf 25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
va009039 0:a05a07cd6fdf 26 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
va009039 0:a05a07cd6fdf 27 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
va009039 0:a05a07cd6fdf 28 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
va009039 0:a05a07cd6fdf 29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
va009039 0:a05a07cd6fdf 30 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
va009039 0:a05a07cd6fdf 31 * SUCH DAMAGE.
va009039 0:a05a07cd6fdf 32 *
va009039 0:a05a07cd6fdf 33 * Please inquire about commercial licensing options at btstack@ringwald.ch
va009039 0:a05a07cd6fdf 34 *
va009039 0:a05a07cd6fdf 35 */
va009039 0:a05a07cd6fdf 36
va009039 0:a05a07cd6fdf 37 /*
va009039 0:a05a07cd6fdf 38 * btstsack_memory.h
va009039 0:a05a07cd6fdf 39 *
va009039 0:a05a07cd6fdf 40 * @brief BTstack memory management via configurable memory pools
va009039 0:a05a07cd6fdf 41 *
va009039 0:a05a07cd6fdf 42 */
va009039 0:a05a07cd6fdf 43
va009039 0:a05a07cd6fdf 44 #pragma once
va009039 0:a05a07cd6fdf 45
va009039 0:a05a07cd6fdf 46 #if defined __cplusplus
va009039 0:a05a07cd6fdf 47 extern "C" {
va009039 0:a05a07cd6fdf 48 #endif
va009039 0:a05a07cd6fdf 49
va009039 0:a05a07cd6fdf 50 void btstack_memory_init(void);
va009039 0:a05a07cd6fdf 51
va009039 0:a05a07cd6fdf 52 void * btstack_memory_hci_connection_get(void);
va009039 0:a05a07cd6fdf 53 void btstack_memory_hci_connection_free(void *hci_connection);
va009039 0:a05a07cd6fdf 54 void * btstack_memory_l2cap_service_get(void);
va009039 0:a05a07cd6fdf 55 void btstack_memory_l2cap_service_free(void *l2cap_service);
va009039 0:a05a07cd6fdf 56 void * btstack_memory_l2cap_channel_get(void);
va009039 0:a05a07cd6fdf 57 void btstack_memory_l2cap_channel_free(void *l2cap_channel);
va009039 0:a05a07cd6fdf 58 void * btstack_memory_rfcomm_multiplexer_get(void);
va009039 0:a05a07cd6fdf 59 void btstack_memory_rfcomm_multiplexer_free(void *rfcomm_multiplexer);
va009039 0:a05a07cd6fdf 60 void * btstack_memory_rfcomm_service_get(void);
va009039 0:a05a07cd6fdf 61 void btstack_memory_rfcomm_service_free(void *rfcomm_service);
va009039 0:a05a07cd6fdf 62 void * btstack_memory_rfcomm_channel_get(void);
va009039 0:a05a07cd6fdf 63 void btstack_memory_rfcomm_channel_free(void *rfcomm_channel);
va009039 0:a05a07cd6fdf 64 void * btstack_memory_db_mem_device_name_get(void);
va009039 0:a05a07cd6fdf 65 void btstack_memory_db_mem_device_name_free(void *db_mem_device_name);
va009039 0:a05a07cd6fdf 66 void * btstack_memory_db_mem_device_link_key_get(void);
va009039 0:a05a07cd6fdf 67 void btstack_memory_db_mem_device_link_key_free(void *db_mem_device_link_key);
va009039 0:a05a07cd6fdf 68 void * btstack_memory_db_mem_service_get(void);
va009039 0:a05a07cd6fdf 69 void btstack_memory_db_mem_service_free(void *db_mem_service);
va009039 0:a05a07cd6fdf 70
va009039 0:a05a07cd6fdf 71 #if defined __cplusplus
va009039 0:a05a07cd6fdf 72 }
va009039 0:a05a07cd6fdf 73 #endif