aboutsummaryrefslogtreecommitdiff
path: root/platform/ext/target/arm/mps3/an524/cmsis_drivers/Driver_USART.c
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ext/target/arm/mps3/an524/cmsis_drivers/Driver_USART.c')
-rw-r--r--platform/ext/target/arm/mps3/an524/cmsis_drivers/Driver_USART.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/platform/ext/target/arm/mps3/an524/cmsis_drivers/Driver_USART.c b/platform/ext/target/arm/mps3/an524/cmsis_drivers/Driver_USART.c
new file mode 100644
index 0000000000..a7c756bf29
--- /dev/null
+++ b/platform/ext/target/arm/mps3/an524/cmsis_drivers/Driver_USART.c
@@ -0,0 +1,58 @@
+/*
+ * Copyright (c) 2013-2023 Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ *
+ * Licensed under the Apache License, Version 2.0 (the License); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "Driver_USART_CMSDK.h"
+#include "cmsis_driver_config.h"
+#include "RTE_Device.h"
+
+#if (defined (RTE_USART0) && (RTE_USART0 == 1)) || \
+ (defined (RTE_USART1) && (RTE_USART1 == 1)) || \
+ (defined (RTE_USART2) && (RTE_USART2 == 1)) || \
+ (defined (RTE_USART3) && (RTE_USART3 == 1)) || \
+ (defined (RTE_USART4) && (RTE_USART4 == 1))
+
+#if (defined (RTE_USART0) && (RTE_USART0 == 1))
+
+ARM_DRIVER_USART_CMSDK(UART0_CMSDK_DEV, Driver_USART0);
+
+#endif /* RTE_USART0 */
+
+#if (defined (RTE_USART1) && (RTE_USART1 == 1))
+
+ARM_DRIVER_USART_CMSDK(UART1_CMSDK_DEV, Driver_USART1);
+
+#endif /* RTE_USART1 */
+
+#if (defined (RTE_USART2) && (RTE_USART2 == 1))
+
+ARM_DRIVER_USART_CMSDK(UART2_CMSDK_DEV, Driver_USART2);
+
+#endif /* RTE_USART2 */
+
+#if (defined (RTE_USART3) && (RTE_USART3 == 1))
+
+ARM_DRIVER_USART_CMSDK(UART3_CMSDK_DEV, Driver_USART3);
+
+#endif /* RTE_USART3 */
+
+#if (defined (RTE_USART4) && (RTE_USART4 == 1))
+
+ARM_DRIVER_USART_CMSDK(UART4_CMSDK_DEV, Driver_USART4);
+
+#endif /* RTE_USART4 */
+#endif