-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arch: move "arch" files to the arch folder
Each arch (ESP32, Pico, Linux) must implement them
- Loading branch information
1 parent
fd8a942
commit 481f8a5
Showing
21 changed files
with
128 additions
and
142 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright 2023 Ricardo Quesada | ||
// http://retro.moe/unijoysticle2 | ||
|
||
#include "uni_console.h" | ||
|
||
void uni_console_init(void) { | ||
// FIXME: Implement me | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright 2023 Ricardo Quesada | ||
// http://retro.moe/unijoysticle2 | ||
|
||
#include "uni_console.h" | ||
|
||
void uni_console_init(void) { | ||
// FIXME: Implement me | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright 2019-2023 Ricardo Quesada | ||
// http://retro.moe/unijoysticle2 | ||
|
||
#include "uni_uart.h" | ||
|
||
#include "uni_common.h" | ||
|
||
void uni_uart_enable_output(bool enabled) { | ||
ARG_UNUSED(enabled); | ||
|
||
// Fixme: Implement me | ||
} | ||
|
||
void uni_uart_init(void) {} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright 2019-2023 Ricardo Quesada | ||
// http://retro.moe/unijoysticle2 | ||
|
||
#include "uni_uart.h" | ||
|
||
#include "uni_common.h" | ||
|
||
void uni_uart_enable_output(bool enabled) { | ||
ARG_UNUSED(enabled); | ||
|
||
// Fixme: Implement me | ||
} | ||
|
||
void uni_uart_init(void) {} |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright 2019-2023 Ricardo Quesada | ||
// http://retro.moe/unijoysticle2 | ||
|
||
#ifndef UNI_UART_H | ||
#define UNI_UART_H | ||
|
||
#include <stdbool.h> | ||
|
||
// Interface | ||
// Each arch needs to implement these functions | ||
|
||
void uni_uart_init(void); | ||
void uni_uart_enable_output(bool enabled); | ||
|
||
#endif // UNI_UART_H |
Oops, something went wrong.