blob: 0decfa0f98fe1c2dcfb482c749c4f71ddf697942 [file] [log] [blame]
Ewout van Bekkum749342b2021-01-19 14:53:19 -08001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15#include "pw_thread/sleep.h"
16
17#include <algorithm>
18
19#include "FreeRTOS.h"
20#include "pw_assert/assert.h"
21#include "pw_chrono/system_clock.h"
22#include "pw_chrono_freertos/system_clock_constants.h"
23#include "pw_thread/id.h"
24#include "task.h"
25
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080026using pw::chrono::SystemClock;
Ewout van Bekkum749342b2021-01-19 14:53:19 -080027
28namespace pw::this_thread {
29
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080030void sleep_for(SystemClock::duration for_at_least) {
Ewout van Bekkum749342b2021-01-19 14:53:19 -080031 PW_DCHECK(get_id() != thread::Id());
32
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080033 // Yield for negative and zero length durations.
34 if (for_at_least <= SystemClock::duration::zero()) {
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080035 taskYIELD();
36 return;
Ewout van Bekkum749342b2021-01-19 14:53:19 -080037 }
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080038
39 // On a tick based kernel we cannot tell how far along we are on the current
40 // tick, ergo we add one whole tick to the final duration.
41 constexpr SystemClock::duration kMaxTimeoutMinusOne =
42 pw::chrono::freertos::kMaxTimeout - SystemClock::duration(1);
43 while (for_at_least > kMaxTimeoutMinusOne) {
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080044 vTaskDelay(static_cast<TickType_t>(kMaxTimeoutMinusOne.count()));
Ewout van Bekkum3a00cda2021-03-09 13:56:52 -080045 for_at_least -= kMaxTimeoutMinusOne;
46 }
Ewout van Bekkuma6ad4da2021-03-10 12:11:16 -080047 vTaskDelay(static_cast<TickType_t>(for_at_least.count() + 1));
Ewout van Bekkum749342b2021-01-19 14:53:19 -080048}
49
50} // namespace pw::this_thread