-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Examples/mobc: apply rename migration(IfWrapper -> hal)
- Loading branch information
Showing
24 changed files
with
40 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../src/src_user/IfWrapper/Sils/i2c_sils.cpp → ...s/mobc/src/src_user/hal/sils/i2c_sils.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...src/src_user/IfWrapper/Sils/uart_sils.cpp → .../mobc/src/src_user/hal/sils/uart_sils.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../src/src_user/IfWrapper/Sils/wdt_sils.cpp → ...s/mobc/src/src_user/hal/sils/wdt_sils.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include <src_core/IfWrapper/wdt.h> | ||
#include <src_core/hal/wdt.h> | ||
|
||
int WDT_initialize(void* wdt_config) | ||
{ | ||
|
4 changes: 2 additions & 2 deletions
4
...c/src_user/IfWrapper/SilsMockup/README.md → ...bc/src/src_user/hal/sils_mockup/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# SILS MOCKUP | ||
- C2A Core 開発のために, Core 単体で C89 ビルドするための IF Wrapper Mockup | ||
- C2A Core 開発のために, Core 単体で C89 ビルドするための HAL Mockup | ||
- Core 開発では特定のハードウェアを仮定できないので, SILS を用いるが,現在のデフォルトの SILS である S2E は, C++ ビルドを行う. | ||
- それでは, C89 の Core のコンパイルエラー,ワーニングのチェックができないため,非環境依存の Mockup を用いて, C89 ビルドする環境を用意したものがこれ. | ||
- 検証したいコードは `src_user/IfWrapper/Sils` には存在しないはずなので,ビルドのみで実行しないのであれば,これで良い. | ||
- 検証したいコードは `src_user/hal/sils` には存在しないはずなので,ビルドのみで実行しないのであれば,これで良い. | ||
- 参考: https://github.com/ut-issl/c2a-core/issues/27 |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../src_user/IfWrapper/SilsMockup/i2c_sils.c → ...c/src/src_user/hal/sils_mockup/i2c_sils.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...src_user/IfWrapper/SilsMockup/uart_sils.c → .../src/src_user/hal/sils_mockup/uart_sils.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../src_user/IfWrapper/SilsMockup/wdt_sils.c → ...c/src/src_user/hal/sils_mockup/wdt_sils.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include <src_core/IfWrapper/wdt.h> | ||
#include <src_core/hal/wdt.h> | ||
|
||
int WDT_initialize(void* wdt_config) | ||
{ | ||
|