1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors 4 * 5 */ 6 7 #ifndef __DEVICE_CFG_H__ 8 #define __DEVICE_CFG_H__ 9 10 /** 11 * \file device_cfg.h 12 * \brief Configurations for peripherals defined in 13 * platform's device definition 14 */ 15 16 #define DEFAULT_UART_CONTROL 0 17 #define DEFAULT_UART_BAUDRATE 115200 18 19 #endif /* __DEVICE_CFG_H__ */ 20