Graphics framework for GR-PEACH. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Dependents:   ImageZoomInout_Sample ImageRotaion_Sample ImageScroll_Sample GR-PEACH_LCD_4_3inch_Save_to_USB ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ncg_time.h Source File

ncg_time.h

00001 /******************************************************************************
00002 * Copyright(c) 2010-2012 Renesas Electronics Corporation. All rights reserved.
00003 *
00004 * brief  : NCG time and delay control functions header.
00005 *
00006 * author : Renesas Electronics Corporation
00007 *
00008 * history: 2010.10.08
00009 *          - Created the initial code.
00010 *          2012.08.22
00011 *          - Updated coding format.
00012 *
00013 *******************************************************************************/
00014 
00015 #ifndef NCG_TIME_H
00016 #define NCG_TIME_H
00017 
00018 #ifdef __cplusplus
00019 extern "C" {
00020 #endif
00021 
00022 
00023 /*=============================================================================
00024  * Definitions
00025  */
00026 
00027 
00028 /*=============================================================================
00029  *  Structures
00030  */
00031 
00032 
00033 /*=============================================================================
00034  *  Function prototyping
00035  */
00036 
00037 /*
00038  *  Delay control
00039  */
00040 NCGint32
00041 NCGSYS_Sleep (
00042     NCGuint32   ui32MilliSeconds
00043 );
00044 
00045 /*
00046  *  Time acquisition
00047  */
00048 
00049 NCGint32
00050 NCGSYS_StartTickCount (
00051     void
00052 );
00053 
00054 NCGuint32
00055 NCGSYS_GetTickCount (
00056     void
00057 );
00058 
00059 
00060 #ifdef __cplusplus
00061 }
00062 #endif
00063 
00064 #endif /* __NCG_TIME_H__ */