portapack-mayhem/firmware/application/main.cpp

155 lines
4.4 KiB
C++
Raw Normal View History

2015-07-17 17:55:54 +00:00
/*
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
2016-07-28 03:25:33 +00:00
* Copyright (C) 2016 Furrtek
2015-07-17 17:55:54 +00:00
*
* 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.
*/
// Color bitmaps generated with:
// Gimp image > indexed colors (16), then "xxd -i *.bmp"
2017-05-25 20:08:33 +00:00
//BUG: SCANNER Lock on frequency, if frequency jump, still locked on first one
//BUG: SCANNER Multiple slices
//BUG: REPLAY freezes when SD card not present
2017-01-29 06:50:48 +00:00
//BUG: RDS doesn't stop baseband when stopping tx ?
2017-05-25 20:08:33 +00:00
//TODO: Merge AFSK and TONES procs ?
//TODO: NFM Squelch level setting
//TODO: NFM RX nav.pop on squelch
//TODO: MORSE use prosigns
//TODO: MORSE live keying mode
//TODO: Use to_string_short_freq wherever possible
//TODO: SCANNER Waveform widget as FFT view ?
//TEST: Check AFSK transmit end, skips last bits ?
//TEST: Imperial in whipcalc
2017-03-14 08:20:13 +00:00
//TODO: Optimize (and group ?) CTCSS tone gen code
2017-02-15 03:05:38 +00:00
/*
Continuous (Fox-oring)
12s transmit, 48s space (Sprint 1/5th)
60s transmit, 240s space (Classic 1/5 min)
60s transmit, 360s space (Classic 1/7 min)
*/
2017-02-13 23:24:42 +00:00
//TODO: Use transmittermodel bw setting
//TODO: Use TransmitterView in TEDI/LCR, Numbers, ...
//TODO: FreqMan: Add and rename categories
//TODO: FreqMan: Sort by category in edit screen
//TODO: FreqMan: Cap entry count per category (only done for total entries right now)
//TODO: Wav visualizer
//TODO: File browser view ?
//TODO: Mousejack ?
//TODO: Move frequencykeypad from ui_receiver to ui_widget (used everywhere)
//TODO: ADS-B draw trajectory + GPS coordinates + scale, and playback
//TODO: RDS multiple groups (sequence)
//TODO: Use ModalMessageView confirmation for TX ?
2016-08-02 10:44:31 +00:00
//TODO: Use msgpack for settings, lists... on sd card
2016-07-30 03:27:28 +00:00
// Multimon-style stuff:
2016-11-30 06:41:55 +00:00
//TODO: CTCSS detector
//TODO: DMR detector
//TODO: GSM channel detector
//TODO: SIGFOX RX/TX
2016-07-30 03:27:28 +00:00
//TODO: Playdead amnesia and login
//TODO: Setup: Play dead by default ? Enable/disable ?
// Old or low-priority stuff:
//TODO: Bodet :)
//TODO: Analog TV tx with camcorder font character generator
//TODO: Show address/data bit fields in OOK TX
//TODO: Scan for OOK TX
//TODO: Script engine ?
//TODO: AFSK receiver
//TODO: Check more OOK encoders
//BUG (fixed ?): No audio in about when shown second time
2016-07-30 03:27:28 +00:00
//TODO: Show MD5 mismatches for modules not found, etc...
//TODO: Module name/filename in modules.hpp to indicate requirement in case it's not found ui_loadmodule
2016-08-02 10:44:31 +00:00
//BUG: Description doesn't show up first time going to system>module info (UI drawn on top)
//TODO: Two players tic-tac-toe
//TODO: Analog TV pong game
2015-07-17 17:55:54 +00:00
#include "ch.h"
2015-08-01 20:42:27 +00:00
#include "portapack.hpp"
2015-07-17 17:55:54 +00:00
#include "portapack_shared_memory.hpp"
#include "message_queue.hpp"
#include "ui.hpp"
#include "ui_widget.hpp"
#include "ui_painter.hpp"
#include "ui_navigation.hpp"
#include "irq_lcd_frame.hpp"
#include "irq_controls.hpp"
#include "irq_rtc.hpp"
2015-07-17 17:55:54 +00:00
2016-01-31 08:34:24 +00:00
#include "event_m0.hpp"
2015-07-17 17:55:54 +00:00
#include "core_control.hpp"
#include "spi_image.hpp"
2015-07-17 17:55:54 +00:00
#include "debug.hpp"
#include "led.hpp"
#include "gcc.hpp"
#include "sd_card.hpp"
2015-07-17 17:55:54 +00:00
#include <string.h>
static void event_loop() {
ui::Context context;
2015-07-17 17:55:54 +00:00
ui::SystemView system_view {
context,
portapack::display.screen_rect()
2015-07-17 17:55:54 +00:00
};
2016-05-12 22:52:18 +00:00
EventDispatcher event_dispatcher { &system_view, context };
MessageHandlerRegistration message_handler_display_sleep {
Message::ID::DisplaySleep,
2016-01-31 08:34:24 +00:00
[&event_dispatcher](const Message* const) {
event_dispatcher.set_display_sleep(true);
}
};
event_dispatcher.run();
}
int main(void) {
if( portapack::init() ) {
portapack::display.init();
sdcStart(&SDCD1, nullptr);
controls_init();
lcd_frame_sync_configure();
rtc_interrupt_enable();
event_loop();
sdcDisconnect(&SDCD1);
sdcStop(&SDCD1);
2015-07-17 17:55:54 +00:00
portapack::shutdown();
}
m4_init(portapack::spi_flash::image_tag_hackrf, portapack::memory::map::m4_code_hackrf);
2016-02-16 19:04:35 +00:00
m0_halt();
2015-07-17 17:55:54 +00:00
return 0;
}