-
-
Notifications
You must be signed in to change notification settings - Fork 596
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
External apps #1469
External apps #1469
Conversation
gridItem.color = Color((uint16_t)application_information.icon_color); | ||
|
||
auto bitmapData = new uint8_t[32]; | ||
Bitmap* bitmap = new Bitmap{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, it'd be better if that type just handled all of the buffer allocation directly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent work. This is really cool.
I left some comments for your consideration.
I do think that we should move the "Debug" page to under "Utilities" and add a new "Apps" page. Can be in another PR though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Can't wait to see this in nightly. 🚀
That's dope |
Can't wait to move a maximum of apps to the sdcard, so the loaded one will have tons of space |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's gooooooo
Love this!! except... PacMan isn't the same without SOUND! :-) |
This pull request adds a new type of applications that can run from sd card and don't use space in the firmware image.
Two apps are implemented:
replaces #1307