-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathmain.cpp
58 lines (51 loc) · 1.25 KB
/
main.cpp
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
/*
* Copyright (c) 2020, Niklas Hauser
*
* This file is part of the modm project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// ----------------------------------------------------------------------------
#include <modm/board.hpp>
#include <modm/processing.hpp>
int main()
{
Board::initialize();
uint32_t counter(0);
modm::PrecisePeriodicTimer ptmr(0.500990s);
modm::PeriodicTimer tmr(0.500990s);
for (int ii=0; ii<20; ii++)
{
LedD13::toggle();
modm::delay(std::chrono::milliseconds(10*ii));
}
uint32_t ms_counter{0};
uint32_t us_counter{0};
while (true)
{
{
uint32_t ms = modm::Clock::now().time_since_epoch().count();
if (ms < ms_counter) {
MODM_LOG_ERROR << ms << " < " << ms_counter << modm::endl;
}
ms_counter = ms;
}{
uint32_t us = modm::PreciseClock::now().time_since_epoch().count();
if (us < us_counter) {
MODM_LOG_ERROR << us << " < " << us_counter << modm::endl;
}
us_counter = us;
}
if (ptmr.execute())
{
LedD13::set();
MODM_LOG_INFO << "loop: " << counter++ << modm::endl;
}
if (tmr.execute())
{
LedD13::reset();
}
}
}