wiced: support for btstack_stdin (HAVE_STDIN)

This commit is contained in:
Matthias Ringwald 2017-11-07 22:26:01 +01:00
parent 84693d68c6
commit 012f145f57
5 changed files with 9 additions and 5 deletions

View File

@ -9,8 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Introduced btstack_network.h network interface abstraction
- btstack_network_posix implementation using Linux tun/tap interface
- WICED: support for btstack_stdin (HAVE_STDIN)
### Changed
- panu_demo: uses btstack_network.h now
- WICED: configure printf to replace Linefeed with CRLF

View File

@ -6,6 +6,7 @@
#define __BTSTACK_CONFIG
// Port related features
#define HAVE_BTSTACK_STDIN
#define HAVE_EMBEDDED_TIME_MS
#define WICED_BT_UART_MANUAL_CTS_RTS
@ -45,4 +46,4 @@
// - Num LE Device entries
#define NVM_NUM_LE_DEVICES 10
#endif
#endif

View File

@ -61,6 +61,7 @@ $(NAME)_SOURCES += \
main.c \
../../platform/wiced/btstack_link_key_db_wiced_dct.c \
../../platform/wiced/btstack_run_loop_wiced.c \
../../platform/wiced/btstack_stdin_wiced.c \
../../platform/wiced/btstack_uart_block_wiced.c \
../../platform/wiced/le_device_db_wiced_dct.c \
../../chipset/bcm/btstack_chipset_bcm.c \

View File

@ -6,9 +6,10 @@
#define __BTSTACK_CONFIG
// Port related features
#define HAVE_BTSTACK_STDIN
#define HAVE_EMBEDDED_TIME_MS
#define WICED_BT_UART_MANUAL_CTS_RTS
#define HAVE_AES128
#define WICED_BT_UART_MANUAL_CTS_RTS
// BTstack features that can be enabled
#define ENABLE_BLE
@ -47,4 +48,4 @@
// - Num LE Device entries
#define NVM_NUM_LE_DEVICES 10
#endif
#endif

View File

@ -63,6 +63,7 @@ $(NAME)_SOURCES += \
btstack_aes128_wiced.c \
../../platform/wiced/btstack_link_key_db_wiced_dct.c \
../../platform/wiced/btstack_run_loop_wiced.c \
../../platform/wiced/btstack_stdin_wiced.c \
../../platform/wiced/btstack_uart_block_wiced.c \
../../platform/wiced/le_device_db_wiced_dct.c \
../../chipset/bcm/btstack_chipset_bcm.c \