bleprph_oic; increase the number of mbufs allocated.
Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/4947fa48 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/4947fa48 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/4947fa48 Branch: refs/heads/develop Commit: 4947fa48f7ff6a7efdbaebee5fd6e479379d91b7 Parents: 429ab09 Author: Marko Kiiskila <[email protected]> Authored: Thu Dec 15 12:26:47 2016 -0800 Committer: Sterling Hughes <[email protected]> Committed: Sun Dec 18 13:56:17 2016 -0800 ---------------------------------------------------------------------- apps/bleprph_oic/syscfg.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/4947fa48/apps/bleprph_oic/syscfg.yml ---------------------------------------------------------------------- diff --git a/apps/bleprph_oic/syscfg.yml b/apps/bleprph_oic/syscfg.yml index f9ec211..677c5fe 100644 --- a/apps/bleprph_oic/syscfg.yml +++ b/apps/bleprph_oic/syscfg.yml @@ -20,15 +20,27 @@ syscfg.vals: # Use INFO log level to reduce code size. DEBUG is too large for nRF51. LOG_LEVEL: 0 + BLE_GATT_WRITE_MAX_ATTRS: 6 + BLE_HCI_EVT_HI_BUF_COUNT: 4 + BLE_HCI_EVT_LO_BUF_COUNT: 3 + # Disable central and observer roles. BLE_ROLE_BROADCASTER: 1 BLE_ROLE_CENTRAL: 0 BLE_ROLE_OBSERVER: 0 BLE_ROLE_PERIPHERAL: 1 + # Disable security manager + BLE_SM: 0 + BLE_LL_CFG_FEAT_LE_ENCRYPTION: 0 + BLE_LL_CFG_FEAT_LL_PRIVACY: 0 + # Disable unused eddystone feature. BLE_EDDYSTONE: 0 + # Need to get this down. XXXXX + MSYS_1_BLOCK_COUNT: 18 + # Log reboot messages to a flash circular buffer. REBOOT_LOG_FCB: 1 LOG_FCB: 1 @@ -41,9 +53,9 @@ syscfg.vals: # Enable Config. CONFIG_NEWTMGR: 1 + # OC server, with bluetooth transport. OC_SERVER: 1 OC_TRANSPORT_GATT: 1 - OC_TRANSPORT_SERIAL: 1 SHELL_TASK: 1 STATS_CLI: 1
