1# SPDX-License-Identifier: Apache-2.0 2# 3# Copyright (c) 2023 Ambiq Micro Inc. <www.ambiq.com> 4 5if BOARD_APOLLO4P_BLUE_KXR_EVB 6 7config SYS_CLOCK_HW_CYCLES_PER_SEC 8 default 32768 if AMBIQ_STIMER_TIMER 9 10config LOG_BACKEND_SWO_FREQ_HZ 11 default 1000000 12 depends on LOG_BACKEND_SWO 13 14if BT 15 16config MAIN_STACK_SIZE 17 default 2048 18 19config BT_BUF_ACL_TX_COUNT 20 default 14 21 22config BT_BUF_EVT_RX_COUNT 23 default 15 24 25config BT_BUF_CMD_TX_SIZE 26 default $(UINT8_MAX) 27 28config BT_BUF_EVT_RX_SIZE 29 default $(UINT8_MAX) 30 31config BT_BUF_ACL_TX_SIZE 32 default 251 33 34config BT_BUF_ACL_RX_SIZE 35 default 251 36 37# L2CAP SDU/PDU TX MTU 38# BT_L2CAP_RX_MTU = CONFIG_BT_BUF_ACL_RX_SIZE - BT_L2CAP_HDR_SIZE 39config BT_L2CAP_TX_MTU 40 default 247 41 42endif # BT 43 44endif # BOARD_APOLLO4P_BLUE_KXR_EVB 45