Beamlib 3.1.1
This is the Beam C++ class library.
Loading...
Searching...
No Matches
BSys.h
Go to the documentation of this file.
1/*******************************************************************************
2 * BSys.h BSys system class
3 * T.Barnaby, Beam Ltd, 2018-10-22
4 * Copyright (c) 2022 All Right Reserved, Beam Ltd, https://www.beam.ltd.uk
5 * For license see LICENSE.txt at the root of the beamlib source tree.
6 *******************************************************************************
7 *
8 * Core system class.
9 */
10#ifndef BSys_h
11#define BSys_h
12
13#include <BTypes.h>
14
15extern "C" {
16extern void delayUs(BUInt us);
17extern void delayMs(BUInt ms);
18}
19
20#endif
void delayMs(BUInt ms)
Will delay for given time in ms, if tasks running task will sleep.
Definition: BSys.cpp:22
void delayUs(BUInt us)
Will delay for given time in us, if tasks running task will sleep.
Definition: BSys.cpp:14
BUInt32 BUInt
Definition: BTypes.h:33