Tool/software:
Hi,
There is a compile error when I enable both PTM and L2cap CoC for simple_peripheral example. (sdk version: sdk_7_10_01_24)
Could you help with this issue? Thank you!
C:/ti/simplelink_cc13xx_cc26xx_sdk_7_10_01_24/source/ti/ble5stack/icall/app/icall_hci_tl.c:9010:12: warning: call to undeclared function 'buildHCIExtHeader'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
msgLen = buildHCIExtHeader(out_msg, (HCI_EXT_L2CAP_EVENT | L2CAP_CONNECT_IND),
^
C:/ti/simplelink_cc13xx_cc26xx_sdk_7_10_01_24/source/ti/ble5stack/icall/app/icall_hci_tl.c:9010:30: error: use of undeclared identifier 'out_msg'
msgLen = buildHCIExtHeader(out_msg, (HCI_EXT_L2CAP_EVENT | L2CAP_CONNECT_IND),
^
C:/ti/simplelink_cc13xx_cc26xx_sdk_7_10_01_24/source/ti/ble5stack/icall/app/icall_hci_tl.c:9013:3: error: use of undeclared identifier 'out_msg'
out_msg[msgLen++] = id;
^
C:/ti/simplelink_cc13xx_cc26xx_sdk_7_10_01_24/source/ti/ble5stack/icall/app/icall_hci_tl.c:9014:36: error: use of undeclared identifier 'out_msg'
msgLen += L2CAP_BuildConnectReq(&out_msg[msgLen], (uint8_t *)pReq);
^
C:/ti/simplelink_cc13xx_cc26xx_sdk_7_10_01_24/source/ti/ble5stack/icall/app/icall_hci_tl.c:9017:61: error: use of undeclared identifier 'out_msg'
HCI_SendControllerToHostEvent(HCI_VE_EVENT_CODE, msgLen, out_msg);