1# Copyright (c) 2022 Antmicro <www.antmicro.com> 2# SPDX-License-Identifier: Apache-2.0 3 4CONFIG_ARM_MPU=n 5 6# System clock 7CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=61440000 8CONFIG_CORTEX_M_SYSTICK=y 9 10# Console 11CONFIG_SERIAL=y 12CONFIG_CONSOLE=y 13CONFIG_UART_CONSOLE=y 14 15# EOS S3 Configuration Manager copies software from external flash to MCU 16# memory using preconfigured DMA and execute it there. 17# Thus we do not use flash directly. 18 19CONFIG_XIP=n 20CONFIG_FLASH=n 21CONFIG_FLASH_SIZE=0 22CONFIG_FLASH_BASE_ADDRESS=0x0 23 24# GPIO 25CONFIG_GPIO=y 26