Part Number: LAUNCHXL-CC26X2R1
Other Parts Discussed in Thread: SYSCONFIG
Tool/software: Code Composer Studio
I use cc 10.1.1 and sysconfig. on a host_test project.
When I enable bond manager via sys config I get the following errors, even though in host_test.sysconfig file, the 2 defines are present and correct.
>> Compilation failure Startup/subdir_rules.mk:9: recipe for target 'Startup/osal_icall_ble.obj' failed "../Startup/osal_icall_ble.c", line 231: error #20: identifier "GAP_BONDINGS_MAX" is undefined "../Startup/osal_icall_ble.c", line 231: error #20: identifier "GAP_CHAR_CFG_MAX" is undefined 2 errors detected in the compilation of "../Startup/osal_icall_ble.c". gmake: *** [Startup/osal_icall_ble.obj] Error 1 gmake: Target 'all' not remade because of errors.
below the line that generates the error.
#if defined ( GAP_BOND_MGR ) /* Bond Manager Task */ GAPBondMgr_Init( taskID++, GAP_BONDINGS_MAX, GAP_CHAR_CFG_MAX, cfg_gapBond_gatt_no_client, cfg_gapBond_gatt_no_service_changed); #endif /* GAP_BOND_MGR */