1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef __ARM_LTD_DEVICE_CFG_H__ 8 #define __ARM_LTD_DEVICE_CFG_H__ 9 10 /** 11 * \file device_cfg.h 12 * \brief 13 * This is the default device configuration file with all peripherals 14 * defined and configured to be use via the secure and/or non-secure base 15 * address. 16 */ 17 18 #define DEFAULT_UART_CONTROL 0 19 #define DEFAULT_UART_BAUDRATE 115200 20 21 #endif /* __ARM_LTD_DEVICE_CFG_H__ */ 22