Firmware  0.0.0
Loading...
Searching...
No Matches
resume.hpp
Go to the documentation of this file.
1// Copyright (C) 2025 Vincent Hamp
2//
3// This program is free software: you can redistribute it and/or modify
4// it under the terms of the GNU General Public License as published by
5// the Free Software Foundation, either version 3 of the License, or
6// (at your option) any later version.
7//
8// This program is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11// GNU General Public License for more details.
12//
13// You should have received a copy of the GNU General Public License
14// along with this program. If not, see <https://www.gnu.org/licenses/>.
15
21
22#pragma once
23
24#include <driver/gptimer.h>
25#include <rmt_dcc_encoder.h>
26
27namespace out::track::dcc {
28
29esp_err_t init_encoder(dcc_encoder_config_t const& encoder_config);
30esp_err_t init_rmt(rmt_tx_done_callback_t rmt_cb);
31esp_err_t init_alarm(gptimer_alarm_cb_t gptimer_cb);
32esp_err_t init_bidi();
33esp_err_t init_gpio();
34esp_err_t resume(dcc_encoder_config_t const& encoder_config,
35 rmt_tx_done_callback_t rmt_cb,
36 gptimer_alarm_cb_t gptimer_cb);
37
38} // namespace out::track::dcc
Definition config.hpp:412
esp_err_t resume(dcc_encoder_config_t const &encoder_config, rmt_tx_done_callback_t rmt_cb, gptimer_alarm_cb_t gptimer_cb)
Definition resume.cpp:78
esp_err_t init_alarm(gptimer_alarm_cb_t gptimer_cb)
Definition resume.cpp:42
esp_err_t init_encoder(dcc_encoder_config_t const &encoder_config)
Definition resume.cpp:30
esp_err_t init_bidi()
Definition resume.cpp:50
esp_err_t init_rmt(rmt_tx_done_callback_t rmt_cb)
Definition resume.cpp:36
esp_err_t init_gpio()
Definition resume.cpp:71