Dear all, I did a system : 1.radio node 2.slip radio 3.BeagleBone I would disable the BLE, despite in project-conf.h(of cc26xx-web-demo) I have the following code: #ifndef PROJECT_CONF_H_ #define PROJECT_CONF_H_ /*---------------------------------------------------------------------------*/ /* Change to match your configuration */ #define IEEE802154_CONF_PANID 0xABCD #define RF_CORE_CONF_CHANNEL 26 #define RF_BLE_CONF_ENABLED 0//0 prima /*---------------------------------------------------------------------------*/ /* Enable/Disable Components of this Demo */ #define CC26XX_WEB_DEMO_CONF_MQTT_CLIENT 1//1 #define CC26XX_WEB_DEMO_CONF_6LBR_CLIENT 1//1 #define CC26XX_WEB_DEMO_CONF_COAP_SERVER 1//1 #define CC26XX_WEB_DEMO_CONF_NET_UART 1//1 /* * ADC sensor functionality. To test this, an external voltage source should be * connected to DIO23 * Enable/Disable DIO23 ADC reading by setting CC26XX_WEB_DEMO_CONF_ADC_DEMO */ #define CC26XX_WEB_DEMO_CONF_ADC_DEMO 0 /*---------------------------------------------------------------------------*/ /* Enable the ROM bootloader */ #define ROM_BOOTLOADER_ENABLE 1 /*---------------------------------------------------------------------------*/ /* * Shrink the size of the uIP buffer, routing table and ND cache. * Set the TCP MSS */ #define UIP_CONF_BUFFER_SIZE 900 #define NBR_TABLE_CONF_MAX_NEIGHBORS 5 #define UIP_CONF_MAX_ROUTES 5 #define UIP_CONF_TCP_MSS 128 //ciccio /*#undef NETSTACK_CONF_RDC #define NETSTACK_CONF_RDC nullrdc_noframer_driver #ifndef RF_BLE_CONF_ENABLED #define RF_BLE_CONF_ENABLED 0 */ /**< 0 to disable BLE support */ //#endif //forum texas Instruments #undef NETSTACK_CONF_RDC #define NETSTACK_CONF_RDC nullrdc_driver //mociccio //#define RF_BLE_CONF_ENABLED 0 /*---------------------------------------------------------------------------*/ #endif /* PROJECT_CONF_H_ */ /*---------------------------------------------------------------------------*/ How can I do? Thanks in advance
... View more