Compare commits

..

9 Commits

Author SHA1 Message Date
Erwin Ried 683bf5dfd9 Adding Debug app back 2020-04-21 14:22:09 +02:00
Erwin Ried 78df97b388 Update README.md 2020-04-21 13:03:33 +02:00
Erwin Ried 9a8e653f5e Update README.md 2020-04-21 13:02:44 +02:00
Erwin Ried 7107f1e696 Merge branch 'master' of https://github.com/eried/portapack-havoc 2020-04-21 12:55:37 +02:00
Erwin Ried 8e35492fae H2 photos 2020-04-21 12:55:31 +02:00
Erwin Ried 91f177850d Update README.md 2020-04-21 12:34:15 +02:00
Erwin Ried 9ef3dd7260 Merge pull request #6 from furrtek/master
Update
2020-04-21 11:12:20 +02:00
Erwin Ried 9e5eebae39 Shao credits (#340)
* Update ui_about.hpp

* Small alignment fix
2020-04-21 01:50:31 +02:00
Erwin Ried b0ca4fbe8e Delete portapack-h1-havoc.bin (#341)
Old confusing firmware
2020-04-21 01:49:32 +02:00
7 changed files with 31 additions and 7 deletions
+25 -1
View File
@@ -1 +1,25 @@
Unofficial fork of the unofficial HAVOC. Just keeping the latest release files and all features I found around here.
## Fork of the unofficial HAVOC
Keeping the latest release files and all features I found, and possible my own features in the future, around here. Check Releases
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CBPQA4HRRPJQ6&source=url)
I only have this [Portapack H2+HackRF+battery](https://s.click.aliexpress.com/e/_dSMPvNo), so that's the version I'll be using for testing the releases before I post them here. BTW, if you have the same H2 (I know... I know it is a *dirty* clone) you could print my case:
[![Case](doc/h2_front.jpg)](https://www.thingiverse.com/thing:4260973)
<details>
<summary>More details about the H2 case</summary>
[STL files](https://www.thingiverse.com/thing:4260973)
</details>
<details>
<summary>Printed magnetic cover for the H2 case</summary>
[![Cover](doc/h2_cover.jpg)](https://www.thingiverse.com/thing:4278961)
[STL files](https://www.thingiverse.com/thing:4278961)
</details>
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

+2 -2
View File
@@ -223,7 +223,7 @@ set(CPPSRC
apps/ui_aprs_tx.cpp
apps/ui_bht_tx.cpp
apps/ui_coasterp.cpp
# apps/ui_debug.cpp
apps/ui_debug.cpp
apps/ui_encoders.cpp
apps/ui_fileman.cpp
apps/ui_freqman.cpp
@@ -276,7 +276,7 @@ set(CPPSRC
# ui_numbers.cpp
# ui_replay_view.cpp
# ui_script.cpp
# ui_sd_card_debug.cpp
ui_sd_card_debug.cpp
${CPLD_20150901_DATA_CPP}
${CPLD_20170522_DATA_CPP}
${HACKRF_CPLD_DATA_CPP}
+2 -2
View File
@@ -28,7 +28,7 @@
#include "audio.hpp"
// #include "ui_sd_card_debug.hpp"
#include "ui_sd_card_debug.hpp"
#include "portapack.hpp"
using namespace portapack;
@@ -347,7 +347,7 @@ DebugMenuView::DebugMenuView(NavigationView& nav) {
add_items({
{ "Memory", ui::Color::white(), nullptr, [&nav](){ nav.push<DebugMemoryView>(); } },
{ "Radio State", ui::Color::white(), nullptr, [&nav](){ nav.push<NotImplementedView>(); } },
//{ "SD Card", ui::Color::white(), nullptr, [&nav](){ nav.push<SDCardDebugView>(); } },
{ "SD Card", ui::Color::white(), nullptr, [&nav](){ nav.push<SDCardDebugView>(); } },
{ "Peripherals", ui::Color::white(), nullptr, [&nav](){ nav.push<DebugPeripheralsMenuView>(); } },
{ "Temperature", ui::Color::white(), nullptr, [&nav](){ nav.push<TemperatureView>(); } },
{ "Controls", ui::Color::white(), nullptr, [&nav](){ nav.push<DebugControlsView>(); } }, });
+2 -2
View File
@@ -39,7 +39,7 @@
#include "ui_aprs_tx.hpp"
#include "ui_bht_tx.hpp"
#include "ui_coasterp.hpp"
//#include "ui_debug.hpp"
#include "ui_debug.hpp"
#include "ui_encoders.hpp"
#include "ui_fileman.hpp"
#include "ui_freqman.hpp"
@@ -438,7 +438,7 @@ SystemMenuView::SystemMenuView(NavigationView& nav) {
{ "Scanner", ui::Color::orange(), &bitmap_icon_scanner, [&nav](){ nav.push<ScannerView>(); } },
{ "Utilities", ui::Color::light_grey(), &bitmap_icon_utilities, [&nav](){ nav.push<UtilitiesMenuView>(); } },
{ "Settings", ui::Color::cyan(), &bitmap_icon_setup, [&nav](){ nav.push<SettingsMenuView>(); } },
//{ "Debug", ui::Color::cyan(), nullptr, [&nav](){ nav.push<DebugMenuView>(); } },
{ "Debug", ui::Color::cyan(), nullptr, [&nav](){ nav.push<DebugMenuView>(); } },
{ "HackRF", ui::Color::cyan(), &bitmap_icon_hackrf, [this, &nav](){ hackrf_mode(nav); } },
{ "About", ui::Color::cyan(), nullptr, [&nav](){ nav.push<AboutView>(); } }
});
Binary file not shown.