blob: 0d6e4cd35fee91735ca4f319fd0dd2d80af2e436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <atomic>
#include <cstdbool>
#include <memory>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "display.hpp"
#include "touchwheel.hpp"
namespace ui {
auto StartLvgl(std::weak_ptr<drivers::TouchWheel> touch_wheel,
std::weak_ptr<drivers::Display> display) -> void;
} // namespace ui
|