mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-12-14 02:04:31 -05:00
dcaa02c1e1
* added external module debug view * integrated module driver into i2c subsystem * implemented i2c app loader * added view mirror api * fixed build * added i2c to module api * implemented standalone app touch event * implemented focus management * reverted formating change * refactoring * refactoring * implemented events * fixed memory usage
123 lines
3.6 KiB
C++
123 lines
3.6 KiB
C++
/*
|
|
* Copyright (C) 2024 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_external_module_view.hpp"
|
|
#include "portapack.hpp"
|
|
#include "ui_standalone_view.hpp"
|
|
|
|
#include "i2cdevmanager.hpp"
|
|
#include "i2cdev_ppmod.hpp"
|
|
|
|
#include <optional>
|
|
|
|
namespace ui {
|
|
|
|
void ExternalModuleView::focus() {
|
|
dummy.focus();
|
|
}
|
|
|
|
void ExternalModuleView::on_tick_second() {
|
|
i2cdev::I2CDevManager::manual_scan();
|
|
|
|
auto dev = (i2cdev::I2cDev_PPmod*)i2cdev::I2CDevManager::get_dev_by_model(I2C_DEVMDL::I2CDECMDL_PPMOD);
|
|
|
|
if (!dev) {
|
|
text_header.set("No module connected");
|
|
text_name.set("");
|
|
text_version.set("");
|
|
text_number_apps.set("");
|
|
text_app1_name.set("");
|
|
text_app2_name.set("");
|
|
text_app3_name.set("");
|
|
text_app4_name.set("");
|
|
text_app5_name.set("");
|
|
return;
|
|
}
|
|
|
|
auto device_info = dev->readDeviceInfo();
|
|
|
|
if (device_info.has_value() == false) {
|
|
text_header.set("No module connected");
|
|
text_name.set("");
|
|
text_version.set("");
|
|
text_number_apps.set("");
|
|
text_app1_name.set("");
|
|
text_app2_name.set("");
|
|
text_app3_name.set("");
|
|
text_app4_name.set("");
|
|
text_app5_name.set("");
|
|
return;
|
|
}
|
|
|
|
text_header.set("Module found");
|
|
|
|
std::string btnText = (std::string) "Module: " + device_info->module_name;
|
|
text_name.set(btnText);
|
|
text_version.set("Version: " + std::to_string(device_info->module_version));
|
|
text_number_apps.set("No# Apps: " + std::to_string(device_info->application_count));
|
|
|
|
for (uint32_t i = 0; i < device_info->application_count && i < 5; i++) {
|
|
auto appInfo = dev->getStandaloneAppInfo(i);
|
|
if (appInfo.has_value() == false) {
|
|
continue;
|
|
}
|
|
|
|
std::string btnText = (std::string) "App " + std::to_string(device_info->application_count) + ": " + (const char*)appInfo->app_name;
|
|
|
|
switch (appInfo->menu_location) {
|
|
case app_location_t::UTILITIES:
|
|
btnText += " (Utilities)";
|
|
break;
|
|
case app_location_t::RX:
|
|
btnText += " (RX)";
|
|
break;
|
|
case app_location_t::TX:
|
|
btnText += " (TX)";
|
|
break;
|
|
case app_location_t::DEBUG:
|
|
btnText += " (Debug)";
|
|
break;
|
|
case app_location_t::HOME:
|
|
btnText += " (Home)";
|
|
break;
|
|
}
|
|
|
|
switch (i) {
|
|
case 0:
|
|
text_app1_name.set(btnText);
|
|
break;
|
|
case 1:
|
|
text_app2_name.set(btnText);
|
|
break;
|
|
case 2:
|
|
text_app3_name.set(btnText);
|
|
break;
|
|
case 3:
|
|
text_app4_name.set(btnText);
|
|
break;
|
|
case 4:
|
|
text_app5_name.set(btnText);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} // namespace ui
|