Skip to content

Commit a729718

Browse files
fixed names
1 parent e75c534 commit a729718

File tree

1 file changed

+2
-2
lines changed
  • features/FEATURE_BLE/targets/TARGET_CORDIO/stack/cordio_stack/ble-host/sources/stack/cfg

1 file changed

+2
-2
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO/stack/cordio_stack/ble-host/sources/stack/cfg/cfg_stack.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ l2cCfg_t *pL2cCfg = &l2cCfg;
6262
ATT
6363
**************************************************************************************************/
6464

65-
#if CORDIO_CFG_DESIRED_ATT_MTU < ATT_DEFAULT_MTU || CORDIO_CFG_DESIRED_ATT_MTU > ATT_MAX_MTU
65+
#if MBED_CONF_CORDIO_DESIRED_ATT_MTU < ATT_DEFAULT_MTU || MBED_CONF_CORDIO_DESIRED_ATT_MTU > ATT_MAX_MTU
6666
#error "CORDIO_CFG_DESIRED_ATT_MTU value is outside valid range"
6767
#endif
6868

6969
/* Configuration structure */
7070
attCfg_t attCfg =
7171
{
7272
15, /* ATT server service discovery connection idle timeout in seconds */
73-
MBED_CONF_CORDIO_DESIRED_ATT_MT, /* desired ATT MTU */
73+
MBED_CONF_CORDIO_DESIRED_ATT_MTU, /* desired ATT MTU */
7474
ATT_MAX_TRANS_TIMEOUT, /* transcation timeout in seconds */
7575
MBED_CONF_CORDIO_MAX_PREPARED_WRITES /* number of queued prepare writes supported by server */
7676
};

0 commit comments

Comments
 (0)