2013-02-18 15:32:11 +00:00
|
|
|
/* mbed Microcontroller Library
|
|
|
|
* Copyright (c) 2006-2013 ARM Limited
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2016-10-01 07:11:36 +00:00
|
|
|
#include "drivers/Timer.h"
|
|
|
|
#include "hal/ticker_api.h"
|
|
|
|
#include "hal/us_ticker_api.h"
|
2017-01-27 11:10:28 +00:00
|
|
|
#include "platform/mbed_critical.h"
|
2017-09-20 09:07:42 +00:00
|
|
|
#include "hal/lp_ticker_api.h"
|
2013-02-18 15:32:11 +00:00
|
|
|
|
|
|
|
namespace mbed {
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
Timer::Timer() : _running(), _start(), _time(), _ticker_data(get_us_ticker_data()), _lock_deepsleep(true)
|
|
|
|
{
|
2015-04-23 13:56:34 +00:00
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
Timer::Timer(const ticker_data_t *data) : _running(), _start(), _time(), _ticker_data(data), _lock_deepsleep(true)
|
|
|
|
{
|
2013-02-18 15:32:11 +00:00
|
|
|
reset();
|
2018-03-13 17:11:18 +00:00
|
|
|
#if DEVICE_LPTICKER
|
2017-09-20 09:07:42 +00:00
|
|
|
_lock_deepsleep = (data != get_lp_ticker_data());
|
|
|
|
#endif
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
Timer::~Timer()
|
|
|
|
{
|
2017-09-14 01:05:40 +00:00
|
|
|
core_util_critical_section_enter();
|
|
|
|
if (_running) {
|
2018-05-24 15:58:14 +00:00
|
|
|
if (_lock_deepsleep) {
|
2017-10-03 00:32:20 +00:00
|
|
|
sleep_manager_unlock_deep_sleep();
|
|
|
|
}
|
2017-09-14 01:05:40 +00:00
|
|
|
}
|
|
|
|
_running = 0;
|
|
|
|
core_util_critical_section_exit();
|
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
void Timer::start()
|
|
|
|
{
|
2016-05-31 22:57:41 +00:00
|
|
|
core_util_critical_section_enter();
|
2014-10-10 19:25:09 +00:00
|
|
|
if (!_running) {
|
2018-05-24 15:58:14 +00:00
|
|
|
if (_lock_deepsleep) {
|
2017-09-20 09:07:42 +00:00
|
|
|
sleep_manager_lock_deep_sleep();
|
|
|
|
}
|
2017-03-31 14:10:57 +00:00
|
|
|
_start = ticker_read_us(_ticker_data);
|
2014-10-10 19:25:09 +00:00
|
|
|
_running = 1;
|
|
|
|
}
|
2016-05-31 22:57:41 +00:00
|
|
|
core_util_critical_section_exit();
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
void Timer::stop()
|
|
|
|
{
|
2016-05-31 22:57:41 +00:00
|
|
|
core_util_critical_section_enter();
|
2013-02-18 15:32:11 +00:00
|
|
|
_time += slicetime();
|
2017-08-17 07:55:40 +00:00
|
|
|
if (_running) {
|
2018-05-24 15:58:14 +00:00
|
|
|
if (_lock_deepsleep) {
|
2017-09-20 09:07:42 +00:00
|
|
|
sleep_manager_unlock_deep_sleep();
|
|
|
|
}
|
2017-08-17 07:55:40 +00:00
|
|
|
}
|
2016-07-10 18:47:13 +00:00
|
|
|
_running = 0;
|
2016-05-31 22:57:41 +00:00
|
|
|
core_util_critical_section_exit();
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
int Timer::read_us()
|
|
|
|
{
|
2017-05-15 14:21:35 +00:00
|
|
|
return read_high_resolution_us();
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
float Timer::read()
|
|
|
|
{
|
2017-05-15 14:21:35 +00:00
|
|
|
return (float)read_us() / 1000000.0f;
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
int Timer::read_ms()
|
|
|
|
{
|
2017-05-15 14:21:35 +00:00
|
|
|
return read_high_resolution_us() / 1000;
|
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
us_timestamp_t Timer::read_high_resolution_us()
|
|
|
|
{
|
2017-03-31 14:10:57 +00:00
|
|
|
core_util_critical_section_enter();
|
|
|
|
us_timestamp_t time = _time + slicetime();
|
|
|
|
core_util_critical_section_exit();
|
2017-05-15 14:21:35 +00:00
|
|
|
return time;
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
us_timestamp_t Timer::slicetime()
|
|
|
|
{
|
2017-03-31 14:10:57 +00:00
|
|
|
us_timestamp_t ret = 0;
|
2017-05-15 14:21:35 +00:00
|
|
|
core_util_critical_section_enter();
|
2013-02-18 15:32:11 +00:00
|
|
|
if (_running) {
|
2017-03-31 14:10:57 +00:00
|
|
|
ret = ticker_read_us(_ticker_data) - _start;
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
2016-05-31 22:57:41 +00:00
|
|
|
core_util_critical_section_exit();
|
|
|
|
return ret;
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
void Timer::reset()
|
|
|
|
{
|
2016-05-31 22:57:41 +00:00
|
|
|
core_util_critical_section_enter();
|
2017-03-31 14:10:57 +00:00
|
|
|
_start = ticker_read_us(_ticker_data);
|
2013-02-18 15:32:11 +00:00
|
|
|
_time = 0;
|
2016-05-31 22:57:41 +00:00
|
|
|
core_util_critical_section_exit();
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 15:58:14 +00:00
|
|
|
Timer::operator float()
|
|
|
|
{
|
2013-02-18 15:32:11 +00:00
|
|
|
return read();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mbed
|