mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-01-10 01:13:39 +00:00
69271632ae
* Fix ext notice position ( No need to alter the position of the ext app notice, as there is no back button on the home screen ) * add desired position to external apps * read and store desired location * apply ext apps desired order * fix memory alignment in application_information_t
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
|
|
// RocketGod's Shopping Cart Lock app
|
|
// https://betaskynet.com
|
|
#include "ui.hpp"
|
|
#include "shoppingcart_lock.hpp"
|
|
#include "ui_navigation.hpp"
|
|
#include "external_app.hpp"
|
|
|
|
namespace ui::external_app::shoppingcart_lock {
|
|
void initialize_app(NavigationView& nav) {
|
|
baseband::run_image(portapack::spi_flash::image_tag_audio_tx);
|
|
nav.push<ShoppingCartLock>();
|
|
}
|
|
} // namespace ui::external_app::shoppingcart_lock
|
|
|
|
extern "C" {
|
|
|
|
__attribute__((section(".external_app.app_shoppingcart_lock.application_information"), used)) application_information_t _application_information_shoppingcart_lock = {
|
|
/*.memory_location = */ (uint8_t*)0x00000000,
|
|
/*.externalAppEntry = */ ui::external_app::shoppingcart_lock::initialize_app,
|
|
/*.header_version = */ CURRENT_HEADER_VERSION,
|
|
/*.app_version = */ VERSION_MD5,
|
|
|
|
/*.app_name = */ "Cart Lock",
|
|
/*.bitmap_data = */ {
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x7E,
|
|
0x7E,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x7E,
|
|
0x81,
|
|
0x81,
|
|
0x7E,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x7E,
|
|
0x81,
|
|
0x81,
|
|
0x81,
|
|
0x81,
|
|
0x7E,
|
|
0x00,
|
|
},
|
|
/*.icon_color = */ ui::Color::red().v,
|
|
/*.menu_location = */ app_location_t::UTILITIES,
|
|
/*.desired_menu_position = */ -1,
|
|
|
|
/*.m4_app_tag = portapack::spi_flash::image_tag_afsk_rx */ {'P', 'A', 'T', 'X'},
|
|
/*.m4_app_offset = */ 0x00000000, // will be filled at compile time
|
|
};
|
|
} |