Home
last modified time | relevance | path

Searched refs:CHECK_THROW (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/include/
Desp_timer_cxx.hpp87 CHECK_THROW(esp_timer_start_once(timer_handle, timeout.count())); in start()
104 CHECK_THROW(esp_timer_start_periodic(timer_handle, period.count())); in start_periodic()
116 CHECK_THROW(esp_timer_stop(timer_handle)); in stop()
Desp_exception.hpp57 #define CHECK_THROW(error_) \ macro
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/test/
Dtest_cxx_exceptions.cpp43 CHECK_THROW(error);
49 TEST_THROW(CHECK_THROW(error), ESPException);
/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/
Desp_timer_cxx.cpp40 CHECK_THROW(esp_timer_create(&timer_args, &timer_handle)); in ESPTimer()