mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-06 08:45:01 -04:00
Jammer UI
Drew jammer UI Added presets for French GSM operators and a few other funny frequencies Added minimalist jamming baseband code
This commit is contained in:
parent
ff96464efe
commit
66de53744e
8 changed files with 579 additions and 9 deletions
243
firmware/application/ui_jammer.hpp
Normal file
243
firmware/application/ui_jammer.hpp
Normal file
|
@ -0,0 +1,243 @@
|
|||
/*
|
||||
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
||||
*
|
||||
* 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_widget.hpp"
|
||||
#include "ui_painter.hpp"
|
||||
#include "ui_menu.hpp"
|
||||
#include "ui_navigation.hpp"
|
||||
#include "ui_font_fixed_8x16.hpp"
|
||||
#include "clock_manager.hpp"
|
||||
#include "message.hpp"
|
||||
#include "rf_path.hpp"
|
||||
#include "max2837.hpp"
|
||||
#include "volume.hpp"
|
||||
#include "transmitter_model.hpp"
|
||||
|
||||
namespace ui {
|
||||
|
||||
class JammerView : public View {
|
||||
public:
|
||||
JammerView(NavigationView& nav, TransmitterModel& transmitter_model);
|
||||
~JammerView();
|
||||
|
||||
void updfreq(uint8_t id, rf::Frequency f);
|
||||
void focus() override;
|
||||
void paint(Painter& painter) override;
|
||||
|
||||
private:
|
||||
rf::Frequency range1_min;
|
||||
rf::Frequency range1_max;
|
||||
rf::Frequency range2_min;
|
||||
rf::Frequency range2_max;
|
||||
rf::Frequency range3_min;
|
||||
rf::Frequency range3_max;
|
||||
|
||||
typedef struct rangepreset {
|
||||
bool active;
|
||||
rf::Frequency min;
|
||||
rf::Frequency max;
|
||||
} rangepreset;
|
||||
|
||||
const rangepreset range_presets[8][3] = {
|
||||
// Orange
|
||||
{{ true, 935000000, 945000000 }, // GSM 900
|
||||
{ true, 1808000000, 1832000000 }, // GSM 1800
|
||||
{ true, 2154900000, 2169700000 }}, // UMTS
|
||||
|
||||
// SFR
|
||||
{{ true, 950000000, 960000000 }, // GSM 900
|
||||
{ true, 1832000000, 1853000000 }, // GSM 1800
|
||||
{ true, 2110500000, 2125300000 }}, // UMTS
|
||||
|
||||
// Bouygues
|
||||
{{ true, 925000000, 935000000 }, // GSM 900
|
||||
{ true, 1858000000, 1880000000 }, // GSM 1800
|
||||
{ true, 2125300000, 2140100000 }}, // UMTS
|
||||
|
||||
// Free
|
||||
{{ true, 945000000, 950000000 }, // GSM 900
|
||||
{ false, 0, 0 }, // GSM 1800
|
||||
{ true, 2144900000, 2149900000 }}, // UMTS
|
||||
|
||||
// GSM-R
|
||||
{{ true, 921000000, 925000000 }, // GSM 900
|
||||
{ false, 0, 0 }, // GSM 1800
|
||||
{ false, 0, 0 }}, // UMTS
|
||||
|
||||
// TODO: TDD UMTS, voir doc Arcep
|
||||
// TODO: Wi-FI, BT: 2 400 et 2 483,5 MHz
|
||||
|
||||
// DECT
|
||||
{{ true, 1880000000, 1900000000 }, // BW: 20MHz
|
||||
{ false, 0, 0 },
|
||||
{ false, 0, 0 }},
|
||||
|
||||
// Optifib, lol
|
||||
{{ true, 162930000, 162970000 }, // BW: 40kHz
|
||||
{ false, 0, 0 },
|
||||
{ false, 0, 0 }},
|
||||
|
||||
// ISM 433
|
||||
{{ true, 433050000, 434790000 }, // BW: 0.2%
|
||||
{ false, 0, 0 },
|
||||
{ false, 0, 0 }}
|
||||
|
||||
};
|
||||
|
||||
bool jamming = false;
|
||||
rf::Frequency f;
|
||||
TransmitterModel& transmitter_model;
|
||||
|
||||
Text text_type {
|
||||
{ 1 * 8, 1 * 16, 40, 16 },
|
||||
"Type:"
|
||||
};
|
||||
OptionsField options_modulation {
|
||||
{ 7 * 8, 1 * 16 },
|
||||
4,
|
||||
{
|
||||
{ "Ramp ", 0 },
|
||||
{ "FM ", 1 },
|
||||
{ "PSK ", 2 },
|
||||
{ "Tones", 3 }
|
||||
}
|
||||
};
|
||||
|
||||
Text text_sweep {
|
||||
{ 1 * 8, 2 * 16, 6 * 8, 16 },
|
||||
"Sweep:"
|
||||
};
|
||||
OptionsField options_sweep {
|
||||
{ 8 * 8, 2 * 16 },
|
||||
8,
|
||||
{
|
||||
{ " 1Hz", 0 },
|
||||
{ " 10Hz", 1 },
|
||||
{ "100Hz", 2 },
|
||||
{ " 1kHz", 3 },
|
||||
{ " 5kHz", 4 },
|
||||
{ "10kHz", 5 },
|
||||
{ "20kHz", 6 },
|
||||
{ "50kHz", 7 }
|
||||
}
|
||||
};
|
||||
|
||||
Text text_hop {
|
||||
{ 1 * 8, 4 * 16, 10 * 8, 16 },
|
||||
"Range hop:"
|
||||
};
|
||||
OptionsField options_hop {
|
||||
{ 12 * 8, 4 * 16 },
|
||||
6,
|
||||
{
|
||||
{ " 10s", 0 },
|
||||
{ " 5s", 1 },
|
||||
{ " 1s", 2 },
|
||||
{ " 0.1s", 3 },
|
||||
{ " 10ms", 4 },
|
||||
{ " 1ms", 5 }
|
||||
}
|
||||
};
|
||||
|
||||
Text text_preset {
|
||||
{ 1 * 8, 3 * 16, 8 * 8, 16 },
|
||||
"Presets:"
|
||||
};
|
||||
OptionsField options_preset {
|
||||
{ 10 * 8, 3 * 16 },
|
||||
8,
|
||||
{
|
||||
{ "Orange ", 0 },
|
||||
{ "SFR ", 1 },
|
||||
{ "Bouygues", 2 },
|
||||
{ "Free ", 3 },
|
||||
{ "GSM-R ", 4 },
|
||||
{ "DECT ", 5 },
|
||||
{ "Optifib ", 6 },
|
||||
{ "ISM 433 ", 7 },
|
||||
}
|
||||
};
|
||||
|
||||
Checkbox checkbox_range1 {
|
||||
{ 1 * 8, 6 * 16},
|
||||
"Range 1"
|
||||
};
|
||||
Checkbox checkbox_range2 {
|
||||
{ 1 * 8, 9 * 16 + 4},
|
||||
"Range 2"
|
||||
};
|
||||
Checkbox checkbox_range3 {
|
||||
{ 1 * 8, 12 * 16 + 8 },
|
||||
"Range 3"
|
||||
};
|
||||
|
||||
Button button_setfreq1_min {
|
||||
{ 13 * 8, 6 * 16 - 4 - 1, 11 * 8, 18 },
|
||||
"----.----M"
|
||||
};
|
||||
Button button_setfreq1_max {
|
||||
{ 13 * 8, 7 * 16 - 4, 11 * 8, 18 },
|
||||
"----.----M"
|
||||
};
|
||||
Text text_info1 {
|
||||
{ 3 * 8, 8 * 16 - 4 + 2, 25 * 8, 16 },
|
||||
"C:----.----M W:-----kHz"
|
||||
};
|
||||
|
||||
Button button_setfreq2_min {
|
||||
{ 13 * 8, 9 * 16 - 1, 11 * 8, 18 },
|
||||
"----.----M"
|
||||
};
|
||||
Button button_setfreq2_max {
|
||||
{ 13 * 8, 10 * 16, 11 * 8, 18 },
|
||||
"----.----M"
|
||||
};
|
||||
Text text_info2 {
|
||||
{ 3 * 8, 11 * 16 + 2, 25 * 8, 16 },
|
||||
"C:----.----M W:-----kHz"
|
||||
};
|
||||
|
||||
Button button_setfreq3_min {
|
||||
{ 13 * 8, 12 * 16 + 4 - 1, 11 * 8, 18 },
|
||||
"----.----M"
|
||||
};
|
||||
Button button_setfreq3_max {
|
||||
{ 13 * 8, 13 * 16 + 4, 11 * 8, 18 },
|
||||
"----.----M"
|
||||
};
|
||||
Text text_info3 {
|
||||
{ 3 * 8, 14 * 16 + 4 + 2, 25 * 8, 16 },
|
||||
"C:----.----M W:-----kHz"
|
||||
};
|
||||
|
||||
Button button_transmit {
|
||||
{ 2 * 8, 16 * 16, 64, 32 },
|
||||
"START"
|
||||
};
|
||||
|
||||
Button button_exit {
|
||||
{ 21 * 8, 16 * 16, 64, 32 },
|
||||
"Exit"
|
||||
};
|
||||
};
|
||||
|
||||
} /* namespace ui */
|
Loading…
Add table
Add a link
Reference in a new issue