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