-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathmain.cpp
76 lines (64 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* Copyright (c) 2011, Fabian Greif
* Copyright (c) 2013, Kevin Läufer
* Copyright (c) 2013-2017, Niklas Hauser
* Copyright (c) 2014, Sascha Schade
*
* 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>
using namespace Board;
// ----------------------------------------------------------------------------
int
main()
{
Board::initialize();
// Use the logging streams to print some messages.
// Change MODM_LOG_LEVEL above to enable or disable these messages
MODM_LOG_DEBUG << "debug" << modm::endl;
MODM_LOG_INFO << "info" << modm::endl;
MODM_LOG_WARNING << "warning" << modm::endl;
MODM_LOG_ERROR << "error" << modm::endl;
uint32_t counter(0);
modm::PrecisePeriodicTimer tmr(0.500990s);
modm::PeriodicTimer tmrS(0.500990s);
uint32_t ms_counter{0};
uint32_t us_counter{0};
Exti::connect<Board::Button>(Exti::Trigger::FallingEdge, [count = uint32_t(0)](uint8_t line) mutable
{
count++;
MODM_LOG_INFO << "Button called " << count << " times on line " << line << modm::endl;
});
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 (tmr.execute())
{
LedBlue::toggle();
MODM_LOG_INFO << "loop: " << counter++ << modm::endl;
}
if (tmrS.execute())
{
LedGreen::toggle();
}
}
return 0;
}