mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-12-15 02:34:33 -05:00
105742acbc
* copy paste from afsk * add generate thing * todo: remove uneeded code * todo: remove uneeded code * todo: asycnmsg detect indicate, check way to not use global password * removed audio * add log warn modal * small tune * remove drunk code * password var global * seed as text instead of console * remove console * should be almost done * naming fix * bitmap now moved to seperate folder, that header i deleted isn't related to firmware * get cmake format back * get cmake format back - try2 * try to revert cmake file * get cmake format back - try3 * get cmake format back - try4 * move to util * disable amp when launch * refactor name * cmake fix * try to revert cmake file * init in methods local var * user another methods to generate * change pause to flood * fix log * fine tune * clang format * fix name
83 lines
2.2 KiB
C++
83 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2023 Bernd Herzog
|
|
*
|
|
* This file is part of PortaPack.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "ui.hpp"
|
|
#include "ui_random_password.hpp"
|
|
#include "ui_navigation.hpp"
|
|
#include "external_app.hpp"
|
|
|
|
namespace ui::external_app::random_password {
|
|
void initialize_app(ui::NavigationView& nav) {
|
|
nav.push<RandomPasswordView>();
|
|
}
|
|
} // namespace ui::external_app::random_password
|
|
|
|
extern "C" {
|
|
|
|
__attribute__((section(".external_app.app_random_password.application_information"), used)) application_information_t _application_information_random_password = {
|
|
/*.memory_location = */ (uint8_t*)0x00000000,
|
|
/*.externalAppEntry = */ ui::external_app::random_password::initialize_app,
|
|
/*.header_version = */ CURRENT_HEADER_VERSION,
|
|
/*.app_version = */ VERSION_MD5,
|
|
|
|
/*.app_name = */ "random passwd",
|
|
/*.bitmap_data = */ {
|
|
0xC0,
|
|
0x03,
|
|
0xE0,
|
|
0x07,
|
|
0x30,
|
|
0x0C,
|
|
0x30,
|
|
0x0C,
|
|
0x30,
|
|
0x0C,
|
|
0x30,
|
|
0x0C,
|
|
0xE0,
|
|
0x07,
|
|
0xC0,
|
|
0x03,
|
|
0x80,
|
|
0x01,
|
|
0x80,
|
|
0x01,
|
|
0x80,
|
|
0x01,
|
|
0x80,
|
|
0x01,
|
|
0x80,
|
|
0x07,
|
|
0x80,
|
|
0x03,
|
|
0x80,
|
|
0x07,
|
|
0x80,
|
|
0x01,
|
|
},
|
|
/*.icon_color = */ ui::Color::yellow().v,
|
|
/*.menu_location = */ app_location_t::UTILITIES,
|
|
|
|
/*.m4_app_tag = portapack::spi_flash::image_tag_afsk_rx */ {'P', 'A', 'F', 'R'},
|
|
/*.m4_app_offset = */ 0x00000000, // will be filled at compile time
|
|
};
|
|
}
|