Merge pull request #461 from notpike/touchtunes

Touchtunes EW Mode Feature
This commit is contained in:
Erwin Ried 2022-01-04 10:55:22 +01:00 committed by GitHub
commit dfa7dfb024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 330 additions and 258 deletions

5
.gitignore vendored
View File

@ -64,4 +64,9 @@ CMakeFiles/
# Host OS leftovers # Host OS leftovers
.DS_Store .DS_Store
/firmware/CMakeCache.txt /firmware/CMakeCache.txt
# Python env
env/
# Other
*.bak *.bak

View File

@ -6,7 +6,8 @@ namespace ui
{ {
add_children({&console, &button_ok}); add_children({&console, &button_ok});
button_ok.on_select = [&nav](Button &) { button_ok.on_select = [&nav](Button &)
{
nav.pop(); nav.pop();
}; };
@ -34,6 +35,7 @@ namespace ui
console.writeln("zhang00963,RedFox-Fr,aldude999"); console.writeln("zhang00963,RedFox-Fr,aldude999");
console.writeln("East2West,fossum,ArjanOnwezen"); console.writeln("East2West,fossum,ArjanOnwezen");
console.writeln("vXxOinvizioNxX,teixeluis"); console.writeln("vXxOinvizioNxX,teixeluis");
console.writeln("Brumi-2021,texasyojimbo");
console.writeln("heurist1,intoxsick"); console.writeln("heurist1,intoxsick");
console.writeln(""); console.writeln("");
break; break;
@ -41,7 +43,7 @@ namespace ui
case 2: case 2:
// https://github.com/eried/portapack-mayhem/graphs/contributors?to=2020-04-12&from=2015-07-31&type=c // https://github.com/eried/portapack-mayhem/graphs/contributors?to=2020-04-12&from=2015-07-31&type=c
console.writeln("\x1B\x06Havoc:\x1B\x10"); console.writeln("\x1B\x06Havoc:\x1B\x10");
console.writeln("furrtek,mrmookie,notpike"); console.writeln("furrtek,mrmookie,NotPike");
console.writeln("mjwaxios,ImDroided,Giorgiofox"); console.writeln("mjwaxios,ImDroided,Giorgiofox");
console.writeln("F4GEV,z4ziggy,xmycroftx"); console.writeln("F4GEV,z4ziggy,xmycroftx");
console.writeln("troussos,silascutler"); console.writeln("troussos,silascutler");

View File

@ -1,7 +1,7 @@
/* /*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2017 Furrtek * Copyright (C) 2017 Furrtek
* Copyright (C) 2017 NotPike * Copyright (C) 2022 NotPike
* *
* This file is part of PortaPack. * This file is part of PortaPack.
* *
@ -27,6 +27,7 @@
#include "baseband_api.hpp" #include "baseband_api.hpp"
#include "string_format.hpp" #include "string_format.hpp"
using namespace portapack; using namespace portapack;
using namespace encoders; using namespace encoders;
@ -45,8 +46,14 @@ void TouchTunesView::stop_tx() {
transmitter_model.disable(); transmitter_model.disable();
tx_mode = IDLE; tx_mode = IDLE;
progressbar.set_value(0); progressbar.set_value(0);
// EW Mode Check
if(check_ew.value()) {
start_ew();
} else {
text_status.set("Ready"); text_status.set("Ready");
} }
}
void TouchTunesView::on_tx_progress(const uint32_t progress, const bool done) { void TouchTunesView::on_tx_progress(const uint32_t progress, const bool done) {
if (!done) { if (!done) {
@ -72,7 +79,43 @@ void TouchTunesView::on_tx_progress(const uint32_t progress, const bool done) {
} }
} }
// EW (Electronic Warfare) Mode will jam the receiving jukebox
// while still alowing you (the hacker) to send commands
// to the target jukebox.
// EW Mode works by transmitting a CW on 433.92MHz inbetween
// transmission events.
void TouchTunesView::start_ew() {
// Radio
transmitter_model.set_tuning_frequency(433920000);
transmitter_model.set_sampling_rate(3072000U);
transmitter_model.set_rf_amp(true);
transmitter_model.set_baseband_bandwidth(3500000U);
transmitter_model.set_tx_gain(47);
transmitter_model.enable();
//UI
text_status.set("Jamming...");
progressbar.set_max(1);
progressbar.set_value(1);
}
void TouchTunesView::stop_ew() {
// Radio
transmitter_model.disable();
// UI
text_status.set("Ready");
progressbar.set_value(0);
}
void TouchTunesView::start_tx(const uint32_t button_index) { void TouchTunesView::start_tx(const uint32_t button_index) {
// Check EW Mode
if(check_ew.value()) {
stop_ew();
}
std::string fragments = { "" }; std::string fragments = { "" };
size_t bit; size_t bit;
uint64_t frame_data; uint64_t frame_data;
@ -136,6 +179,7 @@ TouchTunesView::TouchTunesView(
&labels, &labels,
&field_pin, &field_pin,
&check_scan, &check_scan,
&check_ew,
&text_status, &text_status,
&progressbar &progressbar
}); });
@ -146,6 +190,15 @@ TouchTunesView::TouchTunesView(
pin = v; pin = v;
}; };
// EW Mode
check_ew.on_select = [this](Checkbox&, bool v) {
if(v){
start_ew();
} else {
stop_ew();
}
};
const auto button_fn = [this](Button& button) { const auto button_fn = [this](Button& button) {
start_tx(button.id); start_tx(button.id);
}; };

View File

@ -1,7 +1,7 @@
/* /*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2017 Furrtek * Copyright (C) 2017 Furrtek
* Copyright (C) 2018 NotPike * Copyright (C) 2022 NotPike
* *
* This file is part of PortaPack. * This file is part of PortaPack.
* *
@ -127,6 +127,8 @@ private:
void start_tx(const uint32_t button_index); void start_tx(const uint32_t button_index);
void stop_tx(); void stop_tx();
void on_tx_progress(const uint32_t progress, const bool done); void on_tx_progress(const uint32_t progress, const bool done);
void start_ew();
void stop_ew();
struct remote_layout_t { struct remote_layout_t {
Point position; Point position;
@ -191,11 +193,17 @@ private:
}; };
Checkbox check_scan { Checkbox check_scan {
{ 2 * 8, 27 * 8 }, { 2 * 8, 25 * 8 },
4, 4,
"Scan" "Scan"
}; };
Checkbox check_ew {
{ 2 * 8, 29 * 8 },
4,
"EW Mode"
};
Text text_status { Text text_status {
{ 2 * 8, 33 * 8, 128, 16 }, { 2 * 8, 33 * 8, 128, 16 },
"Ready" "Ready"

View File

@ -45,16 +45,19 @@
using namespace sd_card; using namespace sd_card;
namespace ui { namespace ui
{
enum modal_t { enum modal_t
{
INFO = 0, INFO = 0,
YESNO, YESNO,
YESCANCEL, YESCANCEL,
ABORT ABORT
}; };
class NavigationView : public View { class NavigationView : public View
{
public: public:
std::function<void(const View &)> on_view_changed{}; std::function<void(const View &)> on_view_changed{};
@ -68,11 +71,13 @@ public:
bool is_top() const; bool is_top() const;
template <class T, class... Args> template <class T, class... Args>
T* push(Args&&... args) { T *push(Args &&...args)
{
return reinterpret_cast<T *>(push_view(std::unique_ptr<View>(new T(*this, std::forward<Args>(args)...)))); return reinterpret_cast<T *>(push_view(std::unique_ptr<View>(new T(*this, std::forward<Args>(args)...))));
} }
template <class T, class... Args> template <class T, class... Args>
T* replace(Args&&... args) { T *replace(Args &&...args)
{
pop(); pop();
return reinterpret_cast<T *>(push_view(std::unique_ptr<View>(new T(*this, std::forward<Args>(args)...)))); return reinterpret_cast<T *>(push_view(std::unique_ptr<View>(new T(*this, std::forward<Args>(args)...))));
} }
@ -99,7 +104,8 @@ private:
View *push_view(std::unique_ptr<View> new_view); View *push_view(std::unique_ptr<View> new_view);
}; };
class SystemStatusView : public View { class SystemStatusView : public View
{
public: public:
std::function<void(void)> on_back{}; std::function<void(void)> on_back{};
@ -116,15 +122,13 @@ private:
Rectangle backdrop{ Rectangle backdrop{
{0 * 8, 0 * 16, 240, 16}, {0 * 8, 0 * 16, 240, 16},
Color::dark_grey() Color::dark_grey()};
};
ImageButton button_back{ ImageButton button_back{
{2, 0 * 16, 16, 16}, {2, 0 * 16, 16, 16},
&bitmap_icon_previous, &bitmap_icon_previous,
Color::white(), Color::white(),
Color::dark_grey() Color::dark_grey()};
};
Text title{ Text title{
{20, 0, 14 * 8, 1 * 16}, {20, 0, 14 * 8, 1 * 16},
@ -135,22 +139,19 @@ private:
{2, 0, 80, 16}, {2, 0, 80, 16},
&bitmap_titlebar_image, &bitmap_titlebar_image,
Color::white(), Color::white(),
Color::dark_grey() Color::dark_grey()};
};
ImageButton button_speaker{ ImageButton button_speaker{
{17 * 8, 0, 2 * 8, 1 * 16}, {17 * 8, 0, 2 * 8, 1 * 16},
&bitmap_icon_speaker_mute, &bitmap_icon_speaker_mute,
Color::light_grey(), Color::light_grey(),
Color::dark_grey() Color::dark_grey()};
};
ImageButton button_stealth{ ImageButton button_stealth{
{19 * 8, 0, 2 * 8, 1 * 16}, {19 * 8, 0, 2 * 8, 1 * 16},
&bitmap_icon_stealth, &bitmap_icon_stealth,
Color::light_grey(), Color::light_grey(),
Color::dark_grey() Color::dark_grey()};
};
/*ImageButton button_textentry { /*ImageButton button_textentry {
{ 170, 0, 2 * 8, 1 * 16 }, { 170, 0, 2 * 8, 1 * 16 },
@ -163,33 +164,28 @@ private:
{21 * 8, 0, 2 * 8, 1 * 16}, {21 * 8, 0, 2 * 8, 1 * 16},
&bitmap_icon_camera, &bitmap_icon_camera,
Color::white(), Color::white(),
Color::dark_grey() Color::dark_grey()};
};
ImageButton button_sleep{ ImageButton button_sleep{
{23 * 8, 0, 2 * 8, 1 * 16}, {23 * 8, 0, 2 * 8, 1 * 16},
&bitmap_icon_sleep, &bitmap_icon_sleep,
Color::white(), Color::white(),
Color::dark_grey() Color::dark_grey()};
};
ImageButton button_bias_tee{ ImageButton button_bias_tee{
{25 * 8, 0, 12, 1 * 16}, {25 * 8, 0, 12, 1 * 16},
&bitmap_icon_biast_off, &bitmap_icon_biast_off,
Color::light_grey(), Color::light_grey(),
Color::dark_grey() Color::dark_grey()};
};
ImageButton button_clock_status{ ImageButton button_clock_status{
{27 * 8, 0 * 16, 2 * 8, 1 * 16}, {27 * 8, 0 * 16, 2 * 8, 1 * 16},
&bitmap_icon_clk_int, &bitmap_icon_clk_int,
Color::light_grey(), Color::light_grey(),
Color::dark_grey() Color::dark_grey()};
};
SDCardStatusView sd_card_status_view{ SDCardStatusView sd_card_status_view{
{ 28 * 8, 0 * 16, 2 * 8, 1 * 16 } {28 * 8, 0 * 16, 2 * 8, 1 * 16}};
};
void on_speaker(); void on_speaker();
void on_stealth(); void on_stealth();
@ -202,39 +198,37 @@ private:
MessageHandlerRegistration message_handler_refresh{ MessageHandlerRegistration message_handler_refresh{
Message::ID::StatusRefresh, Message::ID::StatusRefresh,
[this](const Message* const p) { [this](const Message *const p)
{
(void)p; (void)p;
this->refresh(); this->refresh();
} }};
};
}; };
class InformationView : public View { class InformationView : public View
{
public: public:
InformationView(NavigationView &nav); InformationView(NavigationView &nav);
void refresh(); void refresh();
private: private:
static constexpr auto version_string = "v1.4.2"; static constexpr auto version_string = "v1.4.2";
NavigationView &nav_; NavigationView &nav_;
Rectangle backdrop{ Rectangle backdrop{
{0, 0 * 16, 240, 16}, {0, 0 * 16, 240, 16},
{33, 33, 33} {33, 33, 33}};
};
Text version{ Text version{
{2, 0, 11 * 8, 16}, {2, 0, 11 * 8, 16},
version_string version_string};
};
LiveDateTime ltime{ LiveDateTime ltime{
{86, 0, 19 * 8, 16} {86, 0, 19 * 8, 16}};
}; };
class BMPView : public View
}; {
class BMPView : public View {
public: public:
BMPView(NavigationView &nav); BMPView(NavigationView &nav);
void paint(Painter &) override; void paint(Painter &) override;
@ -243,46 +237,49 @@ public:
private: private:
Text text_info{ Text text_info{
{4 * 8, 284, 20 * 8, 16}, {4 * 8, 284, 20 * 8, 16},
"Version " VERSION_STRING "Version " VERSION_STRING};
};
Button button_done{ Button button_done{
{240, 0, 1, 1}, {240, 0, 1, 1},
"" ""};
};
}; };
class ReceiversMenuView : public BtnGridView { class ReceiversMenuView : public BtnGridView
{
public: public:
ReceiversMenuView(NavigationView &nav); ReceiversMenuView(NavigationView &nav);
std::string title() const override { return "Receivers"; }; std::string title() const override { return "Receivers"; };
}; };
class TransmittersMenuView : public BtnGridView { class TransmittersMenuView : public BtnGridView
{
public: public:
TransmittersMenuView(NavigationView &nav); TransmittersMenuView(NavigationView &nav);
std::string title() const override { return "Transmitters"; }; std::string title() const override { return "Transmitters"; };
}; };
class UtilitiesMenuView : public BtnGridView { class UtilitiesMenuView : public BtnGridView
{
public: public:
UtilitiesMenuView(NavigationView &nav); UtilitiesMenuView(NavigationView &nav);
std::string title() const override { return "Utilities"; }; std::string title() const override { return "Utilities"; };
}; };
class SystemMenuView : public BtnGridView { class SystemMenuView : public BtnGridView
{
public: public:
SystemMenuView(NavigationView &nav); SystemMenuView(NavigationView &nav);
private: private:
void hackrf_mode(NavigationView &nav); void hackrf_mode(NavigationView &nav);
}; };
class SystemView : public View { class SystemView : public View
{
public: public:
SystemView( SystemView(
Context &context, Context &context,
const Rect parent_rect const Rect parent_rect);
);
Context &context() const override; Context &context() const override;
@ -311,15 +308,15 @@ private:
}; };
};*/ };*/
class ModalMessageView : public View { class ModalMessageView : public View
{
public: public:
ModalMessageView( ModalMessageView(
NavigationView &nav, NavigationView &nav,
const std::string &title, const std::string &title,
const std::string &message, const std::string &message,
const modal_t type, const modal_t type,
const std::function<void(bool)> on_choice const std::function<void(bool)> on_choice);
);
void paint(Painter &painter) override; void paint(Painter &painter) override;
void focus() override; void focus() override;

View File

@ -0,0 +1,7 @@
Enclosure
https://www.thingiverse.com/thing:4260973
Cover
https://www.thingiverse.com/thing:4278961