xref: /btstack/port/max32630-fthr/src/btstack_port.h (revision 5efdcd7d20bb9baa4e508977e3d4c1a9bf1d1865)
1c894dca1SMatthias Ringwald /*******************************************************************************
2c894dca1SMatthias Ringwald * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
3c894dca1SMatthias Ringwald * Author: Ismail H. Kose <[email protected]>
4c894dca1SMatthias Ringwald *
5c894dca1SMatthias Ringwald * Permission is hereby granted, free of charge, to any person obtaining a
6c894dca1SMatthias Ringwald * copy of this software and associated documentation files (the "Software"),
7c894dca1SMatthias Ringwald * to deal in the Software without restriction, including without limitation
8c894dca1SMatthias Ringwald * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9c894dca1SMatthias Ringwald * and/or sell copies of the Software, and to permit persons to whom the
10c894dca1SMatthias Ringwald * Software is furnished to do so, subject to the following conditions:
11c894dca1SMatthias Ringwald *
12c894dca1SMatthias Ringwald * The above copyright notice and this permission notice shall be included
13c894dca1SMatthias Ringwald * in all copies or substantial portions of the Software.
14c894dca1SMatthias Ringwald *
15c894dca1SMatthias Ringwald * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16c894dca1SMatthias Ringwald * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17c894dca1SMatthias Ringwald * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18c894dca1SMatthias Ringwald * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
19c894dca1SMatthias Ringwald * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20c894dca1SMatthias Ringwald * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21c894dca1SMatthias Ringwald * OTHER DEALINGS IN THE SOFTWARE.
22c894dca1SMatthias Ringwald *
23c894dca1SMatthias Ringwald * Except as contained in this notice, the name of Maxim Integrated
24c894dca1SMatthias Ringwald * Products, Inc. shall not be used except as stated in the Maxim Integrated
25c894dca1SMatthias Ringwald * Products, Inc. Branding Policy.
26c894dca1SMatthias Ringwald *
27c894dca1SMatthias Ringwald * The mere transfer of this software does not imply any licenses
28c894dca1SMatthias Ringwald * of trade secrets, proprietary technology, copyrights, patents,
29c894dca1SMatthias Ringwald * trademarks, maskwork rights, or any other form of intellectual
30c894dca1SMatthias Ringwald * property whatsoever. Maxim Integrated Products, Inc. retains all
31c894dca1SMatthias Ringwald * ownership rights.
32c894dca1SMatthias Ringwald *******************************************************************************
33c894dca1SMatthias Ringwald */
34c894dca1SMatthias Ringwald 
35c894dca1SMatthias Ringwald #ifndef BTSTACK_MAX32630FTHR_PORT_H
36c894dca1SMatthias Ringwald #define BTSTACK_MAX32630FTHR_PORT_H
37c894dca1SMatthias Ringwald 
38*5efdcd7dSMatthias Ringwald #if defined __cplusplus
39*5efdcd7dSMatthias Ringwald extern "C" {
40*5efdcd7dSMatthias Ringwald #endif
41*5efdcd7dSMatthias Ringwald 
42c894dca1SMatthias Ringwald int bluetooth_main(void);
43c894dca1SMatthias Ringwald void hal_btstack_run_loop_execute_once(void);
44c894dca1SMatthias Ringwald int btstack_main(int argc, const char * argv[]);
45*5efdcd7dSMatthias Ringwald 
46*5efdcd7dSMatthias Ringwald #if defined __cplusplus
47*5efdcd7dSMatthias Ringwald }
48*5efdcd7dSMatthias Ringwald #endif
49c894dca1SMatthias Ringwald #endif /* BTSTACK_MAX32630FTHR_PORT_H */
50