diff --git a/MSP-EXP430F5438-CC256x/example/Makefile b/MSP-EXP430F5438-CC256x/example/Makefile index cb9d74440..1457a543c 100644 --- a/MSP-EXP430F5438-CC256x/example/Makefile +++ b/MSP-EXP430F5438-CC256x/example/Makefile @@ -9,7 +9,7 @@ BTSTACK_ROOT = ../.. CC = msp430-gcc -CFLAGS = -mmcu=msp430x5438 -g -Os -Wall -I../src -I../firmware -I${BTSTACK_ROOT} -I${BTSTACK_ROOT}/chipset-cc256x -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include +CFLAGS = -mmcu=msp430x5438 -g -Os -Wall -I. -I../src -I../firmware -I${BTSTACK_ROOT} -I${BTSTACK_ROOT}/chipset-cc256x -I${BTSTACK_ROOT}/src -I${BTSTACK_ROOT}/include LDFLAGS = -mmcu=msp430x5438 CORE = \ @@ -31,7 +31,7 @@ COMMON = \ ${BTSTACK_ROOT}/src/hci.c \ ${BTSTACK_ROOT}/src/hci_cmds.c \ ${BTSTACK_ROOT}/src/hci_dump.c \ - ${BTSTACK_ROOT}/src/hci_transport_h4_dma.c \ + ${BTSTACK_ROOT}/src/hci_transport_h4_ehcill_dma.c \ ${BTSTACK_ROOT}/src/l2cap.c \ ${BTSTACK_ROOT}/src/l2cap_signaling.c \ ${BTSTACK_ROOT}/src/remote_device_db_memory.c \ diff --git a/MSP-EXP430F5438-CC256x/example/hid_demo.c b/MSP-EXP430F5438-CC256x/example/hid_demo.c index a8522f093..ed7d4fffb 100644 --- a/MSP-EXP430F5438-CC256x/example/hid_demo.c +++ b/MSP-EXP430F5438-CC256x/example/hid_demo.c @@ -340,8 +340,8 @@ int main(void){ remote_device_db_t * remote_db = (remote_device_db_t *) &remote_device_db_memory; hci_init(transport, config, control, remote_db); - // use ehciall - // bt_control_cc256x_enable_ehcill(1); + // use eHCILL + bt_control_cc256x_enable_ehcill(1); // init L2CAP l2cap_init(); diff --git a/MSP-EXP430F5438-CC256x/example/spp_accel.c b/MSP-EXP430F5438-CC256x/example/spp_accel.c index 40c48fc78..6bbc0c1c3 100644 --- a/MSP-EXP430F5438-CC256x/example/spp_accel.c +++ b/MSP-EXP430F5438-CC256x/example/spp_accel.c @@ -237,8 +237,8 @@ int main(void) { remote_device_db_t * remote_db = (remote_device_db_t *) &remote_device_db_memory; hci_init(transport, config, control, remote_db); - // use ehciall - // bt_control_cc256x_enable_ehcill(1); + // use eHCILL + bt_control_cc256x_enable_ehcill(1); // init L2CAP l2cap_init(); diff --git a/MSP-EXP430F5438-CC256x/example/spp_counter.c b/MSP-EXP430F5438-CC256x/example/spp_counter.c index 60414bf8d..19afd2739 100644 --- a/MSP-EXP430F5438-CC256x/example/spp_counter.c +++ b/MSP-EXP430F5438-CC256x/example/spp_counter.c @@ -160,7 +160,7 @@ int main(void) hci_init(transport, config, control, remote_db); // use eHCILL - // bt_control_cc256x_enable_ehcill(1); + bt_control_cc256x_enable_ehcill(1); // init L2CAP l2cap_init(); diff --git a/MSP-EXP430F5438-CC256x/example/spp_flowcontrol.c b/MSP-EXP430F5438-CC256x/example/spp_flowcontrol.c index 4937b1ede..bd32ab9f3 100644 --- a/MSP-EXP430F5438-CC256x/example/spp_flowcontrol.c +++ b/MSP-EXP430F5438-CC256x/example/spp_flowcontrol.c @@ -158,7 +158,7 @@ int main(void) hci_init(transport, config, control, remote_db); // use eHCILL - // bt_control_cc256x_enable_ehcill(1); + bt_control_cc256x_enable_ehcill(1); // init L2CAP l2cap_init();