123456789101112131415161718192021222324 |
- #pragma once
- #include "rotor-light.hpp"
- namespace rl = rotor_light;
- struct Board {
- static constexpr uint32_t samples = 1000000;
- static void init_start();
- static void enable_timer();
- static rl::TimePoint get_now();
- static void toggle_led();
- static void delay();
- };
- extern "C" {
- void SysTick_Handler(void);
- }
|