mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-07 17:08:49 +00:00
esp_timer: added C++ wrapper for esp_timer
Closes IDF-1074
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
idf_component_register(SRCS "esp_exception.cpp" "i2c_cxx.cpp" "esp_event_api.cpp" "esp_event_cxx.cpp"
|
||||
idf_component_register(SRCS
|
||||
"esp_exception.cpp"
|
||||
"i2c_cxx.cpp"
|
||||
"esp_event_api.cpp"
|
||||
"esp_event_cxx.cpp"
|
||||
"esp_timer_cxx.cpp"
|
||||
INCLUDE_DIRS "include"
|
||||
REQUIRES driver esp_event)
|
||||
REQUIRES driver esp_event esp_timer)
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifdef __cpp_exceptions
|
||||
|
||||
#include <functional>
|
||||
#include "esp_timer_cxx.hpp"
|
||||
#include "esp_exception.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace idf {
|
||||
|
||||
namespace esp_timer {
|
||||
|
||||
ESPTimer::ESPTimer(function<void()> timeout_cb, const string &timer_name)
|
||||
: timeout_cb(timeout_cb), name(timer_name)
|
||||
{
|
||||
if (timeout_cb == nullptr) {
|
||||
throw ESPException(ESP_ERR_INVALID_ARG);
|
||||
}
|
||||
|
||||
esp_timer_create_args_t timer_args = {};
|
||||
timer_args.callback = esp_timer_cb;
|
||||
timer_args.arg = this;
|
||||
timer_args.dispatch_method = ESP_TIMER_TASK;
|
||||
timer_args.name = name.c_str();
|
||||
|
||||
CHECK_THROW(esp_timer_create(&timer_args, &timer_handle));
|
||||
}
|
||||
|
||||
ESPTimer::~ESPTimer()
|
||||
{
|
||||
// Ignore potential ESP_ERR_INVALID_STATE here to not throw exception.
|
||||
esp_timer_stop(timer_handle);
|
||||
esp_timer_delete(timer_handle);
|
||||
}
|
||||
|
||||
void ESPTimer::esp_timer_cb(void *arg)
|
||||
{
|
||||
ESPTimer *timer = static_cast<ESPTimer*>(arg);
|
||||
timer->timeout_cb();
|
||||
}
|
||||
|
||||
} // esp_timer
|
||||
|
||||
} // idf
|
||||
|
||||
#endif // __cpp_exceptions
|
||||
@@ -0,0 +1,144 @@
|
||||
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef __cpp_exceptions
|
||||
|
||||
#include <chrono>
|
||||
#include <functional>
|
||||
#include "esp_exception.hpp"
|
||||
#include "esp_timer.h"
|
||||
|
||||
namespace idf {
|
||||
|
||||
namespace esp_timer {
|
||||
|
||||
/**
|
||||
* @brief Get time since boot
|
||||
* @return time since \c esp_timer_init() was called (this normally happens early during application startup).
|
||||
*/
|
||||
static inline std::chrono::microseconds get_time()
|
||||
{
|
||||
return std::chrono::microseconds(esp_timer_get_time());
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Get the timestamp when the next timeout is expected to occur
|
||||
* @return Timestamp of the nearest timer event.
|
||||
* The timebase is the same as for the values returned by \c get_time().
|
||||
*/
|
||||
static inline std::chrono::microseconds get_next_alarm()
|
||||
{
|
||||
return std::chrono::microseconds(esp_timer_get_next_alarm());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief
|
||||
* A timer using the esp_timer component which can be started either as one-shot timer or periodically.
|
||||
*/
|
||||
class ESPTimer {
|
||||
public:
|
||||
/**
|
||||
* @param timeout_cb The timeout callback.
|
||||
* @param timer_name The name of the timer (optional). This is for debugging using \c esp_timer_dump().
|
||||
*/
|
||||
ESPTimer(std::function<void()> timeout_cb, const std::string &timer_name = "ESPTimer");
|
||||
|
||||
/**
|
||||
* Stop the timer if necessary and delete it.
|
||||
*/
|
||||
~ESPTimer();
|
||||
|
||||
/**
|
||||
* Default copy constructor is deleted since one instance of esp_timer_handle_t must not be shared.
|
||||
*/
|
||||
ESPTimer(const ESPTimer&) = delete;
|
||||
|
||||
/**
|
||||
* Default copy assignment is deleted since one instance of esp_timer_handle_t must not be shared.
|
||||
*/
|
||||
ESPTimer &operator=(const ESPTimer&) = delete;
|
||||
|
||||
/**
|
||||
* @brief Start one-shot timer
|
||||
*
|
||||
* Timer should not be running (started) when this function is called.
|
||||
*
|
||||
* @param timeout timer timeout, in microseconds relative to the current moment.
|
||||
*
|
||||
* @throws ESPException with error ESP_ERR_INVALID_STATE if the timer is already running.
|
||||
*/
|
||||
inline void start(std::chrono::microseconds timeout)
|
||||
{
|
||||
CHECK_THROW(esp_timer_start_once(timer_handle, timeout.count()));
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Start periodic timer
|
||||
*
|
||||
* Timer should not be running when this function is called. This function will
|
||||
* start a timer which will trigger every 'period' microseconds.
|
||||
*
|
||||
* Timer should not be running (started) when this function is called.
|
||||
*
|
||||
* @param timeout timer timeout, in microseconds relative to the current moment.
|
||||
*
|
||||
* @throws ESPException with error ESP_ERR_INVALID_STATE if the timer is already running.
|
||||
*/
|
||||
inline void start_periodic(std::chrono::microseconds period)
|
||||
{
|
||||
CHECK_THROW(esp_timer_start_periodic(timer_handle, period.count()));
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Stop the previously started timer.
|
||||
*
|
||||
* This function stops the timer previously started using \c start() or \c start_periodic().
|
||||
*
|
||||
* @throws ESPException with error ESP_ERR_INVALID_STATE if the timer has not been started yet.
|
||||
*/
|
||||
inline void stop()
|
||||
{
|
||||
CHECK_THROW(esp_timer_stop(timer_handle));
|
||||
}
|
||||
|
||||
private:
|
||||
/**
|
||||
* Internal callback to hook into esp_timer component.
|
||||
*/
|
||||
static void esp_timer_cb(void *arg);
|
||||
|
||||
/**
|
||||
* Timer instance of the underlying esp_event component.
|
||||
*/
|
||||
esp_timer_handle_t timer_handle;
|
||||
|
||||
/**
|
||||
* Callback which will be called once the timer triggers.
|
||||
*/
|
||||
std::function<void()> timeout_cb;
|
||||
|
||||
/**
|
||||
* Name of the timer, will be passed to the underlying timer framework and is used for debugging.
|
||||
*/
|
||||
const std::string name;
|
||||
};
|
||||
|
||||
} // esp_timer
|
||||
|
||||
} // idf
|
||||
|
||||
#endif // __cpp_exceptions
|
||||
@@ -0,0 +1,198 @@
|
||||
// Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifdef __cpp_exceptions
|
||||
|
||||
#include "unity.h"
|
||||
#include "unity_cxx.hpp"
|
||||
#include <limits>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <iostream>
|
||||
#include "test_utils.h" // ref clock
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/task.h"
|
||||
#include "freertos/semphr.h"
|
||||
|
||||
#include "esp_timer_cxx.hpp"
|
||||
#include "esp_exception.hpp"
|
||||
|
||||
using namespace std;
|
||||
using namespace idf;
|
||||
using namespace idf::esp_timer;
|
||||
|
||||
struct RefClock {
|
||||
RefClock()
|
||||
{
|
||||
ref_clock_init();
|
||||
};
|
||||
|
||||
~RefClock()
|
||||
{
|
||||
ref_clock_deinit();
|
||||
}
|
||||
};
|
||||
|
||||
TEST_CASE("ESPTimer null function", "[ESPTimer]")
|
||||
{
|
||||
TEST_THROW(ESPTimer(nullptr), ESPException);
|
||||
}
|
||||
|
||||
TEST_CASE("ESPTimer empty std::function", "[ESPTimer]")
|
||||
{
|
||||
function<void()> nothing;
|
||||
TEST_THROW(ESPTimer(nothing, "test"), ESPException);
|
||||
}
|
||||
|
||||
TEST_CASE("ESPTimer starting twice throws", "[ESPTimer]")
|
||||
{
|
||||
function<void()> timer_cb = [&]() { };
|
||||
|
||||
ESPTimer timer(timer_cb);
|
||||
|
||||
timer.start(chrono::microseconds(5000));
|
||||
|
||||
TEST_THROW(timer.start(chrono::microseconds(5000)), ESPException);
|
||||
}
|
||||
|
||||
TEST_CASE("ESPTimer periodically starting twice throws", "[ESPTimer]")
|
||||
{
|
||||
function<void()> timer_cb = [&]() { };
|
||||
|
||||
ESPTimer timer(timer_cb);
|
||||
|
||||
timer.start_periodic(chrono::microseconds(5000));
|
||||
|
||||
TEST_THROW(timer.start_periodic(chrono::microseconds(5000)), ESPException);
|
||||
}
|
||||
|
||||
TEST_CASE("ESPTimer stopping non-started timer throws", "[ESPTimer]")
|
||||
{
|
||||
function<void()> timer_cb = [&]() { };
|
||||
|
||||
ESPTimer timer(timer_cb);
|
||||
|
||||
TEST_THROW(timer.stop(), ESPException);
|
||||
}
|
||||
|
||||
TEST_CASE("ESPTimer calls callback", "[ESPTimer]")
|
||||
{
|
||||
bool called = false;
|
||||
|
||||
function<void()> timer_cb = [&]() {
|
||||
called = true;
|
||||
};
|
||||
|
||||
ESPTimer timer(timer_cb);
|
||||
|
||||
timer.start(chrono::microseconds(5000));
|
||||
|
||||
vTaskDelay(10 / portTICK_PERIOD_MS);
|
||||
|
||||
TEST_ASSERT(called);
|
||||
}
|
||||
|
||||
TEST_CASE("ESPTimer periodically calls callback", "[ESPTimer]")
|
||||
{
|
||||
size_t called = 0;
|
||||
|
||||
function<void()> timer_cb = [&]() {
|
||||
called++;
|
||||
};
|
||||
|
||||
ESPTimer timer(timer_cb);
|
||||
|
||||
timer.start_periodic(chrono::microseconds(2000));
|
||||
|
||||
vTaskDelay(10 / portTICK_PERIOD_MS);
|
||||
|
||||
TEST_ASSERT(called >= 4u);
|
||||
}
|
||||
|
||||
TEST_CASE("ESPTimer produces correct delay", "[ESPTimer]")
|
||||
{
|
||||
int64_t t_end;
|
||||
|
||||
RefClock ref_clock;
|
||||
|
||||
function<void()> timer_cb = [&t_end]() {
|
||||
t_end = ref_clock_get();
|
||||
};
|
||||
|
||||
ESPTimer timer(timer_cb, "timer1");
|
||||
|
||||
const int delays_ms[] = {20, 100, 200, 250};
|
||||
const size_t delays_count = sizeof(delays_ms)/sizeof(delays_ms[0]);
|
||||
|
||||
for (size_t i = 0; i < delays_count; ++i) {
|
||||
t_end = 0;
|
||||
int64_t t_start = ref_clock_get();
|
||||
|
||||
timer.start(chrono::microseconds(delays_ms[i] * 1000));
|
||||
|
||||
vTaskDelay(delays_ms[i] * 2 / portTICK_PERIOD_MS);
|
||||
TEST_ASSERT(t_end != 0);
|
||||
int32_t ms_diff = (t_end - t_start) / 1000;
|
||||
printf("%d %d\n", delays_ms[i], ms_diff);
|
||||
|
||||
TEST_ASSERT_INT32_WITHIN(portTICK_PERIOD_MS, delays_ms[i], ms_diff);
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE("ESPtimer produces correct periodic delays", "[ESPTimer]")
|
||||
{
|
||||
const size_t NUM_INTERVALS = 3u;
|
||||
|
||||
size_t cur_interval = 0;
|
||||
int intervals[NUM_INTERVALS];
|
||||
int64_t t_start;
|
||||
SemaphoreHandle_t done;
|
||||
|
||||
const int DELAY_MS = 100;
|
||||
function<void()> timer_cb = [&]() {
|
||||
int64_t t_end = ref_clock_get();
|
||||
int32_t ms_diff = (t_end - t_start) / 1000;
|
||||
printf("timer #%d %dms\n", cur_interval, ms_diff);
|
||||
if (cur_interval < NUM_INTERVALS) {
|
||||
intervals[cur_interval++] = ms_diff;
|
||||
}
|
||||
// Deliberately make timer handler run longer.
|
||||
// We check that this doesn't affect the result.
|
||||
esp_rom_delay_us(10*1000);
|
||||
if (cur_interval == NUM_INTERVALS) {
|
||||
printf("done\n");
|
||||
xSemaphoreGive(done);
|
||||
}
|
||||
};
|
||||
|
||||
ESPTimer timer(timer_cb, "timer1");
|
||||
RefClock ref_clock;
|
||||
t_start = ref_clock_get();
|
||||
done = xSemaphoreCreateBinary();
|
||||
timer.start_periodic(chrono::microseconds(DELAY_MS * 1000));
|
||||
|
||||
TEST_ASSERT(xSemaphoreTake(done, DELAY_MS * NUM_INTERVALS * 2));
|
||||
timer.stop();
|
||||
|
||||
TEST_ASSERT_EQUAL_UINT32(NUM_INTERVALS, cur_interval);
|
||||
for (size_t i = 0; i < NUM_INTERVALS; ++i) {
|
||||
TEST_ASSERT_INT32_WITHIN(portTICK_PERIOD_MS, (i + 1) * DELAY_MS, intervals[i]);
|
||||
}
|
||||
TEST_ESP_OK(esp_timer_dump(stdout));
|
||||
|
||||
vSemaphoreDelete(done);
|
||||
#undef NUM_INTERVALS
|
||||
}
|
||||
|
||||
#endif // __cpp_exceptions
|
||||
Reference in New Issue
Block a user