-
-
Notifications
You must be signed in to change notification settings - Fork 13
App and tool updates for multi-binary support #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,8 +1,11 @@ | ||
| manifest.version=0.2 | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=esp32,esp32s3,esp32c6,esp32p4 | ||
| app.id=tactility.brainfuck | ||
| app.version.name=0.11.0 | ||
| app.version.code=11 | ||
| app.name=Brainfuck interpreter | ||
| app.description=Brainfuck esoteric language interpreter | ||
| id=tactility.brainfuck | ||
| version.name=0.12.0 | ||
| version.code=12 | ||
| name=Brainfuck | ||
| description=Brainfuck esoteric language interpreter | ||
| app.0.id=tactility.brainfuck | ||
| app.0.name=Brainfuck interpreter | ||
| app.0.binary=brainfuck |
This file contains hidden or 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 hidden or 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,8 +1,11 @@ | ||
| manifest.version=0.2 | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=esp32,esp32s3,esp32c6,esp32p4 | ||
| app.id=tactility.breakout | ||
| app.version.name=0.14.0 | ||
| app.version.code=14 | ||
| app.name=Breakout | ||
| app.description=Classic brick-breaking arcade game | ||
| id=tactility.breakout | ||
| version.name=0.15.0 | ||
| version.code=15 | ||
| name=Breakout | ||
| description=Classic brick-breaking arcade game | ||
| app.0.id=tactility.breakout | ||
| app.0.name=Breakout | ||
| app.0.binary=breakout |
This file contains hidden or 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 hidden or 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,7 +1,10 @@ | ||
| manifest.version=0.2 | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=esp32,esp32s3,esp32c6,esp32p4 | ||
| app.id=tactility.calculator | ||
| app.version.name=0.12.0 | ||
| app.version.code=12 | ||
| app.name=Calculator | ||
| id=tactility.calculator | ||
| version.name=0.13.0 | ||
| version.code=13 | ||
| name=Calculator | ||
| app.0.id=tactility.calculator | ||
| app.0.name=Calculator | ||
| app.0.binary=calculator |
This file contains hidden or 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,13 @@ | ||
| # tactility-cmakelists-version: 1 | ||
| cmake_minimum_required(VERSION 3.20) | ||
|
|
||
| if (NOT DEFINED ENV{TACTILITY_SDK_PATH}) | ||
| message(FATAL_ERROR "TACTILITY_SDK_PATH environment variable is not set") | ||
| endif() | ||
|
|
||
| get_filename_component(TACTILITY_SDK_PATH "$ENV{TACTILITY_SDK_PATH}" ABSOLUTE) | ||
| include("${TACTILITY_SDK_PATH}/TactilitySDK.cmake") | ||
|
|
||
| tactility_project_pre(coreutils.date) | ||
| project(coreutils.date) | ||
| tactility_project_post(coreutils.date) |
This file contains hidden or 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,4 @@ | ||
| include("$ENV{TACTILITY_SDK_PATH}/TactilitySDK.cmake") | ||
|
|
||
| file(GLOB_RECURSE SOURCE_FILES Source/*.c) | ||
| tactility_component_register(SRCS ${SOURCE_FILES}) |
This file contains hidden or 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,12 @@ | ||
| #include <stdio.h> | ||
| #include <time.h> | ||
|
|
||
| int main(int argc, char* argv[]) { | ||
| time_t now = time(NULL); | ||
| char buffer[64]; | ||
| struct tm local_time; | ||
| localtime_r(&now, &local_time); | ||
| strftime(buffer, sizeof(buffer), "%a %b %e %H:%M:%S %Z %Y", &local_time); | ||
| printf("%s\n", buffer); | ||
| return 0; | ||
| } | ||
This file contains hidden or 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,13 @@ | ||
| # tactility-cmakelists-version: 1 | ||
| cmake_minimum_required(VERSION 3.20) | ||
|
|
||
| if (NOT DEFINED ENV{TACTILITY_SDK_PATH}) | ||
| message(FATAL_ERROR "TACTILITY_SDK_PATH environment variable is not set") | ||
| endif() | ||
|
|
||
| get_filename_component(TACTILITY_SDK_PATH "$ENV{TACTILITY_SDK_PATH}" ABSOLUTE) | ||
| include("${TACTILITY_SDK_PATH}/TactilitySDK.cmake") | ||
|
|
||
| tactility_project_pre(coreutils.echo) | ||
| project(coreutils.echo) | ||
| tactility_project_post(coreutils.echo) |
This file contains hidden or 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,4 @@ | ||
| include("$ENV{TACTILITY_SDK_PATH}/TactilitySDK.cmake") | ||
|
|
||
| file(GLOB_RECURSE SOURCE_FILES Source/*.c) | ||
| tactility_component_register(SRCS ${SOURCE_FILES}) |
This file contains hidden or 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,12 @@ | ||
| #include <stdio.h> | ||
|
|
||
| int main(int argc, char* argv[]) { | ||
| for (int i = 1; i < argc; i++) { | ||
| if (i > 1) { | ||
| printf(" "); | ||
| } | ||
| printf("%s", argv[i]); | ||
| } | ||
| printf("\n"); | ||
| return 0; | ||
| } |
This file contains hidden or 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 @@ | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=posix-x86_64,esp32s3 | ||
| id=tactility.coreutils | ||
| version.name=0.2.0 | ||
| version.code=2 | ||
| name=CoreUtils | ||
| description=Commandline utilities | ||
| app.0.id=tactility.coreutils.echo | ||
| app.0.name=Echo | ||
| app.0.binary=echo | ||
| app.0.hidden=true | ||
| app.1.id=tactility.coreutils.date | ||
| app.1.name=Date | ||
| app.1.binary=date | ||
| app.1.hidden=true |
This file contains hidden or 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 hidden or 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 hidden or 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,7 +1,11 @@ | ||
| manifest.version=0.2 | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=esp32,esp32s3,esp32c6,esp32p4 | ||
| app.id=tactility.diceware | ||
| app.version.name=0.14.0 | ||
| app.version.code=14 | ||
| app.name=Diceware | ||
| id=tactility.diceware | ||
| version.name=0.15.0 | ||
| version.code=15 | ||
| name=Diceware | ||
| description=Password generator | ||
| app.0.id=tactility.diceware | ||
| app.0.name=Diceware | ||
| app.0.binary=diceware |
This file contains hidden or 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 hidden or 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 hidden or 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,9 +1,12 @@ | ||
| manifest.version=0.2 | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=esp32p4 | ||
| app.id=tactility.doom | ||
| app.version.name=0.5.0 | ||
| app.version.code=5 | ||
| app.name=Doom | ||
| app.description=Classic DOOM. Tab5 only, keyboard required to play. | ||
| id=tactility.doom | ||
| version.name=0.6.0 | ||
| version.code=6 | ||
| name=Doom | ||
| description=Classic DOOM. Tab5 only, keyboard required to play. | ||
| app.0.id=tactility.doom | ||
| app.0.name=Doom | ||
| app.0.binary=doom | ||
| requires.device.id=m5stack-tab5 |
This file contains hidden or 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 hidden or 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 hidden or 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,8 +1,11 @@ | ||
| manifest.version=0.2 | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=esp32s3,esp32p4 | ||
| app.id=tactility.epubreader | ||
| app.version.name=0.11.0 | ||
| app.version.code=11 | ||
| app.name=Epub Reader | ||
| app.description=Epub and text file reader. Requires PSRAM! | ||
| id=tactility.epubreader | ||
| version.name=0.12.0 | ||
| version.code=12 | ||
| name=ePub Reader | ||
| description=ePub and text file reader. Requires PSRAM! | ||
| app.0.id=tactility.epubreader | ||
| app.0.name=ePub Reader | ||
| app.0.binary=epubreader |
This file contains hidden or 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 hidden or 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 hidden or 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,8 +1,11 @@ | ||
| manifest.version=0.2 | ||
| manifest.version=0.3 | ||
| target.sdk=0.8.0-dev | ||
| target.platforms=esp32p4 | ||
| app.id=tactility.espnowbridge | ||
| app.version.name=0.9.0 | ||
| app.version.code=9 | ||
| app.name=ESP-NOW Bridge | ||
| app.description=Companion app for updating P4 device C6 co-processor firmware to enable ESP-NOW bridge support. | ||
| id=tactility.espnowbridge | ||
| version.name=0.10.0 | ||
| version.code=10 | ||
| name=ESP-NOW Bridge | ||
| description=Companion app for updating P4 device C6 co-processor firmware to enable ESP-NOW bridge support. | ||
| app.0.id=tactility.espnowbridge | ||
| app.0.name=ESP-NOW Bridge | ||
| app.0.binary=espnowbridge |
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.