From d43d5bddbb260016c05451604850d341623fb635 Mon Sep 17 00:00:00 2001 From: Sebastian Paarz Date: Tue, 11 Mar 2025 22:51:42 +0100 Subject: [PATCH 1/2] Added missing RX ports --- ports/rxv1/CMakeLists.txt | 9 +++++++++ ports/rxv1/inc/fx_port.h | 24 ++++++++++++++++++++++++ ports/rxv2/CMakeLists.txt | 9 +++++++++ ports/rxv2/inc/fx_port.h | 24 ++++++++++++++++++++++++ ports/rxv3/CMakeLists.txt | 9 +++++++++ ports/rxv3/inc/fx_port.h | 24 ++++++++++++++++++++++++ 6 files changed, 99 insertions(+) create mode 100644 ports/rxv1/CMakeLists.txt create mode 100644 ports/rxv1/inc/fx_port.h create mode 100644 ports/rxv2/CMakeLists.txt create mode 100644 ports/rxv2/inc/fx_port.h create mode 100644 ports/rxv3/CMakeLists.txt create mode 100644 ports/rxv3/inc/fx_port.h diff --git a/ports/rxv1/CMakeLists.txt b/ports/rxv1/CMakeLists.txt new file mode 100644 index 0000000..62111b3 --- /dev/null +++ b/ports/rxv1/CMakeLists.txt @@ -0,0 +1,9 @@ +target_sources(${PROJECT_NAME} PRIVATE + # {{BEGIN_TARGET_SOURCES}} + + # {{END_TARGET_SOURCES}} +) + +target_include_directories(${PROJECT_NAME} PUBLIC + ${CMAKE_CURRENT_LIST_DIR}/inc +) \ No newline at end of file diff --git a/ports/rxv1/inc/fx_port.h b/ports/rxv1/inc/fx_port.h new file mode 100644 index 0000000..0e3ff87 --- /dev/null +++ b/ports/rxv1/inc/fx_port.h @@ -0,0 +1,24 @@ +/*************************************************************************** + * Copyright (c) 2024 Microsoft Corporation + * + * This program and the accompanying materials are made available under the + * terms of the MIT License which is available at + * https://opensource.org/licenses/MIT. + * + * SPDX-License-Identifier: MIT + **************************************************************************/ + + +/**************************************************************************/ +/**************************************************************************/ +/** */ +/** FileX Component */ +/** */ +/** Port Specific */ +/** */ +/**************************************************************************/ +/**************************************************************************/ + +/* Include the generic version of fx_port.h. */ +#include "../../../generic/inc/fx_port.h" + diff --git a/ports/rxv2/CMakeLists.txt b/ports/rxv2/CMakeLists.txt new file mode 100644 index 0000000..62111b3 --- /dev/null +++ b/ports/rxv2/CMakeLists.txt @@ -0,0 +1,9 @@ +target_sources(${PROJECT_NAME} PRIVATE + # {{BEGIN_TARGET_SOURCES}} + + # {{END_TARGET_SOURCES}} +) + +target_include_directories(${PROJECT_NAME} PUBLIC + ${CMAKE_CURRENT_LIST_DIR}/inc +) \ No newline at end of file diff --git a/ports/rxv2/inc/fx_port.h b/ports/rxv2/inc/fx_port.h new file mode 100644 index 0000000..0e3ff87 --- /dev/null +++ b/ports/rxv2/inc/fx_port.h @@ -0,0 +1,24 @@ +/*************************************************************************** + * Copyright (c) 2024 Microsoft Corporation + * + * This program and the accompanying materials are made available under the + * terms of the MIT License which is available at + * https://opensource.org/licenses/MIT. + * + * SPDX-License-Identifier: MIT + **************************************************************************/ + + +/**************************************************************************/ +/**************************************************************************/ +/** */ +/** FileX Component */ +/** */ +/** Port Specific */ +/** */ +/**************************************************************************/ +/**************************************************************************/ + +/* Include the generic version of fx_port.h. */ +#include "../../../generic/inc/fx_port.h" + diff --git a/ports/rxv3/CMakeLists.txt b/ports/rxv3/CMakeLists.txt new file mode 100644 index 0000000..62111b3 --- /dev/null +++ b/ports/rxv3/CMakeLists.txt @@ -0,0 +1,9 @@ +target_sources(${PROJECT_NAME} PRIVATE + # {{BEGIN_TARGET_SOURCES}} + + # {{END_TARGET_SOURCES}} +) + +target_include_directories(${PROJECT_NAME} PUBLIC + ${CMAKE_CURRENT_LIST_DIR}/inc +) \ No newline at end of file diff --git a/ports/rxv3/inc/fx_port.h b/ports/rxv3/inc/fx_port.h new file mode 100644 index 0000000..0e3ff87 --- /dev/null +++ b/ports/rxv3/inc/fx_port.h @@ -0,0 +1,24 @@ +/*************************************************************************** + * Copyright (c) 2024 Microsoft Corporation + * + * This program and the accompanying materials are made available under the + * terms of the MIT License which is available at + * https://opensource.org/licenses/MIT. + * + * SPDX-License-Identifier: MIT + **************************************************************************/ + + +/**************************************************************************/ +/**************************************************************************/ +/** */ +/** FileX Component */ +/** */ +/** Port Specific */ +/** */ +/**************************************************************************/ +/**************************************************************************/ + +/* Include the generic version of fx_port.h. */ +#include "../../../generic/inc/fx_port.h" + From 5aa3aa40f1b71451c51fb5a59efbfdccaa40e7c9 Mon Sep 17 00:00:00 2001 From: Sebastian Paarz Date: Tue, 11 Mar 2025 23:54:03 +0100 Subject: [PATCH 2/2] Added gnu folders for RX ports --- ports/rxv1/{ => gnu}/CMakeLists.txt | 0 ports/rxv1/{ => gnu}/inc/fx_port.h | 0 ports/rxv2/{ => gnu}/CMakeLists.txt | 0 ports/rxv2/{ => gnu}/inc/fx_port.h | 0 ports/rxv3/{ => gnu}/CMakeLists.txt | 0 ports/rxv3/{ => gnu}/inc/fx_port.h | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename ports/rxv1/{ => gnu}/CMakeLists.txt (100%) rename ports/rxv1/{ => gnu}/inc/fx_port.h (100%) rename ports/rxv2/{ => gnu}/CMakeLists.txt (100%) rename ports/rxv2/{ => gnu}/inc/fx_port.h (100%) rename ports/rxv3/{ => gnu}/CMakeLists.txt (100%) rename ports/rxv3/{ => gnu}/inc/fx_port.h (100%) diff --git a/ports/rxv1/CMakeLists.txt b/ports/rxv1/gnu/CMakeLists.txt similarity index 100% rename from ports/rxv1/CMakeLists.txt rename to ports/rxv1/gnu/CMakeLists.txt diff --git a/ports/rxv1/inc/fx_port.h b/ports/rxv1/gnu/inc/fx_port.h similarity index 100% rename from ports/rxv1/inc/fx_port.h rename to ports/rxv1/gnu/inc/fx_port.h diff --git a/ports/rxv2/CMakeLists.txt b/ports/rxv2/gnu/CMakeLists.txt similarity index 100% rename from ports/rxv2/CMakeLists.txt rename to ports/rxv2/gnu/CMakeLists.txt diff --git a/ports/rxv2/inc/fx_port.h b/ports/rxv2/gnu/inc/fx_port.h similarity index 100% rename from ports/rxv2/inc/fx_port.h rename to ports/rxv2/gnu/inc/fx_port.h diff --git a/ports/rxv3/CMakeLists.txt b/ports/rxv3/gnu/CMakeLists.txt similarity index 100% rename from ports/rxv3/CMakeLists.txt rename to ports/rxv3/gnu/CMakeLists.txt diff --git a/ports/rxv3/inc/fx_port.h b/ports/rxv3/gnu/inc/fx_port.h similarity index 100% rename from ports/rxv3/inc/fx_port.h rename to ports/rxv3/gnu/inc/fx_port.h