@ -1,3 +1,10 @@
/**
* @file main.cpp
* @brief Program entry point.
*
* Written by Clyne Sullivan.
*/
#include "wxapp.hpp"
#include <wx/app.h>
@ -1,3 +1,14 @@
* @file stmdsp.cpp
* @brief Interface for communication with stmdsp device over serial.
* Copyright (C) 2021 Clyne Sullivan
* Distributed under the GNU GPL v3 or later. You should have received a copy of
* the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
#include "stmdsp.hpp"
#include <serial/serial.h>
* @file stmdsp.hpp
#ifndef STMDSP_HPP_
#define STMDSP_HPP_
* @file wxapp.hpp
* @brief Main application object for the stmdsp gui.
#ifndef WXAPP_HPP_
#define WXAPP_HPP_
* @file wxmain.cpp
* @brief Main window definition.
#include "wxmain.hpp"
#include <wx/combobox.h>
* @file wxmain.hpp
#ifndef WXMAIN_HPP_
#define WXMAIN_HPP_