Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
rtos/rtx/TARGET_ARM7/rt_Time.h@0:f269e3021894, 2016-10-23 (annotated)
- Committer:
- elessair
- Date:
- Sun Oct 23 15:10:02 2016 +0000
- Revision:
- 0:f269e3021894
Initial commit
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| elessair | 0:f269e3021894 | 1 | /*---------------------------------------------------------------------------- | 
| elessair | 0:f269e3021894 | 2 | * RL-ARM - RTX | 
| elessair | 0:f269e3021894 | 3 | *---------------------------------------------------------------------------- | 
| elessair | 0:f269e3021894 | 4 | * Name: RT_TIME.H | 
| elessair | 0:f269e3021894 | 5 | * Purpose: Delay and interval wait functions definitions | 
| elessair | 0:f269e3021894 | 6 | * Rev.: V4.60 | 
| elessair | 0:f269e3021894 | 7 | *---------------------------------------------------------------------------- | 
| elessair | 0:f269e3021894 | 8 | * | 
| elessair | 0:f269e3021894 | 9 | * Copyright (c) 1999-2009 KEIL, 2009-2015 ARM Germany GmbH | 
| elessair | 0:f269e3021894 | 10 | * All rights reserved. | 
| elessair | 0:f269e3021894 | 11 | * Redistribution and use in source and binary forms, with or without | 
| elessair | 0:f269e3021894 | 12 | * modification, are permitted provided that the following conditions are met: | 
| elessair | 0:f269e3021894 | 13 | * - Redistributions of source code must retain the above copyright | 
| elessair | 0:f269e3021894 | 14 | * notice, this list of conditions and the following disclaimer. | 
| elessair | 0:f269e3021894 | 15 | * - Redistributions in binary form must reproduce the above copyright | 
| elessair | 0:f269e3021894 | 16 | * notice, this list of conditions and the following disclaimer in the | 
| elessair | 0:f269e3021894 | 17 | * documentation and/or other materials provided with the distribution. | 
| elessair | 0:f269e3021894 | 18 | * - Neither the name of ARM nor the names of its contributors may be used | 
| elessair | 0:f269e3021894 | 19 | * to endorse or promote products derived from this software without | 
| elessair | 0:f269e3021894 | 20 | * specific prior written permission. | 
| elessair | 0:f269e3021894 | 21 | * | 
| elessair | 0:f269e3021894 | 22 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
| elessair | 0:f269e3021894 | 23 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
| elessair | 0:f269e3021894 | 24 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
| elessair | 0:f269e3021894 | 25 | * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE | 
| elessair | 0:f269e3021894 | 26 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
| elessair | 0:f269e3021894 | 27 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
| elessair | 0:f269e3021894 | 28 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
| elessair | 0:f269e3021894 | 29 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
| elessair | 0:f269e3021894 | 30 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
| elessair | 0:f269e3021894 | 31 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
| elessair | 0:f269e3021894 | 32 | * POSSIBILITY OF SUCH DAMAGE. | 
| elessair | 0:f269e3021894 | 33 | *---------------------------------------------------------------------------*/ | 
| elessair | 0:f269e3021894 | 34 | |
| elessair | 0:f269e3021894 | 35 | /* Variables */ | 
| elessair | 0:f269e3021894 | 36 | extern U32 os_time; | 
| elessair | 0:f269e3021894 | 37 | |
| elessair | 0:f269e3021894 | 38 | /* Functions */ | 
| elessair | 0:f269e3021894 | 39 | extern U32 rt_time_get (void); | 
| elessair | 0:f269e3021894 | 40 | extern void rt_dly_wait (U16 delay_time); | 
| elessair | 0:f269e3021894 | 41 | extern void rt_itv_set (U16 interval_time); | 
| elessair | 0:f269e3021894 | 42 | extern void rt_itv_wait (void); | 
| elessair | 0:f269e3021894 | 43 | |
| elessair | 0:f269e3021894 | 44 | /*---------------------------------------------------------------------------- | 
| elessair | 0:f269e3021894 | 45 | * end of file | 
| elessair | 0:f269e3021894 | 46 | *---------------------------------------------------------------------------*/ | 
| elessair | 0:f269e3021894 | 47 |