2015-07-17 17:55:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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 "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 "cpld_update.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"
|
2015-08-15 03:57:40 +00:00
|
|
|
#include "irq_rtc.hpp"
|
2015-07-17 17:55:54 +00:00
|
|
|
|
2016-01-04 20:54:05 +00:00
|
|
|
#include "event_m0.hpp"
|
2015-07-17 17:55:54 +00:00
|
|
|
|
2016-02-16 19:09:00 +00:00
|
|
|
#include "core_control.hpp"
|
2015-07-30 16:41:33 +00:00
|
|
|
#include "spi_image.hpp"
|
2015-07-17 17:55:54 +00:00
|
|
|
|
|
|
|
#include "debug.hpp"
|
|
|
|
#include "led.hpp"
|
|
|
|
|
|
|
|
#include "gcc.hpp"
|
|
|
|
|
2015-11-10 23:24:42 +00:00
|
|
|
#include "sd_card.hpp"
|
|
|
|
|
2015-07-17 17:55:54 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main(void) {
|
2015-08-01 20:42:27 +00:00
|
|
|
portapack::init();
|
2015-07-17 17:55:54 +00:00
|
|
|
|
|
|
|
if( !cpld_update_if_necessary() ) {
|
|
|
|
chSysHalt();
|
|
|
|
}
|
|
|
|
|
|
|
|
portapack::io.init();
|
2015-08-01 21:31:51 +00:00
|
|
|
portapack::display.init();
|
2015-07-17 17:55:54 +00:00
|
|
|
|
|
|
|
sdcStart(&SDCD1, nullptr);
|
|
|
|
|
2015-08-14 22:52:11 +00:00
|
|
|
ui::Context context;
|
2015-07-17 17:55:54 +00:00
|
|
|
ui::SystemView system_view {
|
|
|
|
context,
|
2015-08-14 22:52:11 +00:00
|
|
|
portapack::display.screen_rect()
|
2015-07-17 17:55:54 +00:00
|
|
|
};
|
2015-08-01 21:31:51 +00:00
|
|
|
ui::Painter painter;
|
2015-07-17 17:55:54 +00:00
|
|
|
EventDispatcher event_dispatcher { &system_view, painter, context };
|
|
|
|
|
2016-01-13 23:46:04 +00:00
|
|
|
EventDispatcher::message_map().register_handler(Message::ID::Shutdown,
|
2015-08-21 01:03:49 +00:00
|
|
|
[&event_dispatcher](const Message* const) {
|
|
|
|
event_dispatcher.request_stop();
|
|
|
|
}
|
|
|
|
);
|
2016-01-28 04:33:54 +00:00
|
|
|
EventDispatcher::message_map().register_handler(Message::ID::DisplaySleep,
|
|
|
|
[&event_dispatcher](const Message* const) {
|
|
|
|
event_dispatcher.set_display_sleep(true);
|
|
|
|
}
|
|
|
|
);
|
2015-08-21 01:03:49 +00:00
|
|
|
|
2015-08-21 00:11:08 +00:00
|
|
|
m4_init(portapack::spi_flash::baseband, portapack::memory::map::m4_code);
|
2015-07-17 17:55:54 +00:00
|
|
|
|
2015-08-15 05:28:28 +00:00
|
|
|
controls_init();
|
|
|
|
lcd_frame_sync_configure();
|
|
|
|
rtc_interrupt_enable();
|
|
|
|
|
2015-08-15 05:01:20 +00:00
|
|
|
event_dispatcher.run();
|
2015-07-17 17:55:54 +00:00
|
|
|
|
2015-11-13 18:55:52 +00:00
|
|
|
sdcDisconnect(&SDCD1);
|
2015-11-13 18:55:08 +00:00
|
|
|
sdcStop(&SDCD1);
|
|
|
|
|
2015-08-21 01:03:49 +00:00
|
|
|
portapack::shutdown();
|
2015-08-21 03:26:36 +00:00
|
|
|
m4_init(portapack::spi_flash::hackrf, portapack::memory::map::m4_code_hackrf);
|
2016-02-16 19:04:35 +00:00
|
|
|
m0_halt();
|
2015-08-21 03:26:36 +00:00
|
|
|
|
2015-07-17 17:55:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|