1#
2# Copyright (c) 2024 Cypress Semiconductor Corporation.
3# SPDX-License-Identifier: Apache-2.0
4#
5
6# General configuration
7CONFIG_BUILD_OUTPUT_HEX=y
8CONFIG_BUILD_OUTPUT_BIN=y
9
10CONFIG_ARM_MPU=y
11CONFIG_HW_STACK_PROTECTION=y
12
13# Enable console
14CONFIG_CONSOLE=y
15CONFIG_UART_CONSOLE=y
16
17# Enable UART driver
18CONFIG_SERIAL=y
19
20# Enable GPIO driver
21CONFIG_GPIO=y
22
23# Enable clock controller
24CONFIG_CLOCK_CONTROL=y
25
26# Main Stack Size
27CONFIG_MAIN_STACK_SIZE=2048
28
29# Enable code/data relocation to move SMIF driver into RAM
30CONFIG_CODE_DATA_RELOCATION=y
31