aboutsummaryrefslogtreecommitdiffstats
path: root/source/main.cpp
blob: 9a22a73f27e9cc7ee2b94fb6ad577d2cecd0022f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
 * @file main.cpp
 * @brief Program entry point.
 *
 * 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 "ch.h"
#include "hal.h"

#include "adc.hpp"
#include "cordic.hpp"
#include "dac.hpp"
#include "error.hpp"
#include "sclock.hpp"
#include "usbserial.hpp"

#include "runstatus.hpp"
RunStatus run_status = RunStatus::Idle;

// Other variables
//
//static char userMessageBuffer[128];
//static unsigned char userMessageSize = 0;

#include "conversion.hpp"
#include "communication.hpp"
#include "monitor.hpp"

int main()
{
    // Initialize ChibiOS
    halInit();
    chSysInit();

    // Init peripherials
    ADC::begin();
    DAC::begin();
    SClock::begin();
    USBSerial::begin();
    cordic::init();

    SClock::setRate(SClock::Rate::R32K);
    ADC::setRate(SClock::Rate::R32K);

    // Start our threads.
    ConversionManager::begin();
    CommunicationManager::begin();
    Monitor::begin();

    chThdExit(0);
    return 0;
}