BDS Public
Beam-lib  2.16.3
This is the Beam C++ class library.
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) 2018 All Right Reserved, Beam Ltd, http://www.beam.ltd.uk
5  *******************************************************************************
6  *
7  * Core system class.
8  */
9 #ifndef BSys_h
10 #define BSys_h
11 
12 #include <BTypes.h>
13 
14 extern "C" {
15 extern void delayUs(BUInt us);
16 extern void delayMs(BUInt ms);
17 }
18 
19 #endif
void delayUs(BUInt us)
Will delay for given time in us, if tasks running task will sleep.
Definition: BSys.cpp:13
BUInt32 BUInt
Definition: BTypes.h:30
void delayMs(BUInt ms)
Will delay for given time in ms, if tasks running task will sleep.
Definition: BSys.cpp:21