Skip to content

Commit 0462b02

Browse files
authored
Merge pull request #83 from spir6s/master
Provided ports for Renesas RXv1/GNU, RXv2/GNU and RXv3/GNU
2 parents 1839526 + 1f3d7ae commit 0462b02

File tree

6 files changed

+99
-0
lines changed

6 files changed

+99
-0
lines changed

ports/rxv1/gnu/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
target_sources(${PROJECT_NAME} PRIVATE
2+
# {{BEGIN_TARGET_SOURCES}}
3+
4+
# {{END_TARGET_SOURCES}}
5+
)
6+
7+
target_include_directories(${PROJECT_NAME} PUBLIC
8+
${CMAKE_CURRENT_LIST_DIR}/inc
9+
)

ports/rxv1/gnu/inc/fx_port.h

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/***************************************************************************
2+
* Copyright (c) 2024 Microsoft Corporation
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the MIT License which is available at
6+
* https://opensource.org/licenses/MIT.
7+
*
8+
* SPDX-License-Identifier: MIT
9+
**************************************************************************/
10+
11+
12+
/**************************************************************************/
13+
/**************************************************************************/
14+
/** */
15+
/** FileX Component */
16+
/** */
17+
/** Port Specific */
18+
/** */
19+
/**************************************************************************/
20+
/**************************************************************************/
21+
22+
/* Include the generic version of fx_port.h. */
23+
#include "../../../generic/inc/fx_port.h"
24+

ports/rxv2/gnu/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
target_sources(${PROJECT_NAME} PRIVATE
2+
# {{BEGIN_TARGET_SOURCES}}
3+
4+
# {{END_TARGET_SOURCES}}
5+
)
6+
7+
target_include_directories(${PROJECT_NAME} PUBLIC
8+
${CMAKE_CURRENT_LIST_DIR}/inc
9+
)

ports/rxv2/gnu/inc/fx_port.h

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/***************************************************************************
2+
* Copyright (c) 2024 Microsoft Corporation
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the MIT License which is available at
6+
* https://opensource.org/licenses/MIT.
7+
*
8+
* SPDX-License-Identifier: MIT
9+
**************************************************************************/
10+
11+
12+
/**************************************************************************/
13+
/**************************************************************************/
14+
/** */
15+
/** FileX Component */
16+
/** */
17+
/** Port Specific */
18+
/** */
19+
/**************************************************************************/
20+
/**************************************************************************/
21+
22+
/* Include the generic version of fx_port.h. */
23+
#include "../../../generic/inc/fx_port.h"
24+

ports/rxv3/gnu/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
target_sources(${PROJECT_NAME} PRIVATE
2+
# {{BEGIN_TARGET_SOURCES}}
3+
4+
# {{END_TARGET_SOURCES}}
5+
)
6+
7+
target_include_directories(${PROJECT_NAME} PUBLIC
8+
${CMAKE_CURRENT_LIST_DIR}/inc
9+
)

ports/rxv3/gnu/inc/fx_port.h

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/***************************************************************************
2+
* Copyright (c) 2024 Microsoft Corporation
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the MIT License which is available at
6+
* https://opensource.org/licenses/MIT.
7+
*
8+
* SPDX-License-Identifier: MIT
9+
**************************************************************************/
10+
11+
12+
/**************************************************************************/
13+
/**************************************************************************/
14+
/** */
15+
/** FileX Component */
16+
/** */
17+
/** Port Specific */
18+
/** */
19+
/**************************************************************************/
20+
/**************************************************************************/
21+
22+
/* Include the generic version of fx_port.h. */
23+
#include "../../../generic/inc/fx_port.h"
24+

0 commit comments

Comments
 (0)