forked from numworks/epsilon
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Ports] Merge Nspire port and Fxcg improvements
Close #327
- Loading branch information
Yaya-Cout
committed
Jun 6, 2023
1 parent
a124ed7
commit 6a85597
Showing
47 changed files
with
4,139 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
#include <extapp_api.h> | ||
|
||
#if defined _FXCG || defined NSPIRE_NEWLIB | ||
// On the port, we use the Built-in file manager to import files. | ||
void host_filemanager(); | ||
void extapp_main() { | ||
host_filemanager(); | ||
} | ||
#else | ||
// Elsewhere, just draw a rectangle to test the extapp API. | ||
void extapp_main() { | ||
extapp_pushRectUniform(10, 10, LCD_WIDTH-20, LCD_HEIGHT-20, 0); | ||
extapp_msleep(1000); | ||
} | ||
#endif |
Oops, something went wrong.