1# M5Stack STAMP-C3 board configuration
2
3# Copyright 2022 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
4# SPDX-License-Identifier: Apache-2.0
5
6config BOARD
7	default "stamp_c3"
8	depends on BOARD_STAMP_C3
9
10config HEAP_MEM_POOL_SIZE
11	default 98304 if WIFI
12	default 40960 if BT
13	default 4096
14
15if BT
16
17choice BT_HCI_BUS_TYPE
18	default BT_ESP32
19endchoice
20
21endif # BT
22