DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2004 Ocean Blue Software Ltd 00004 * 00005 * This file is part of a DTVKit Software Component 00006 * You are permitted to copy, modify or distribute this file subject to the terms 00007 * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org 00008 * 00009 * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 00010 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 00011 * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. 00012 * 00013 * If you or your organisation is not a member of DTVKit then you have access 00014 * to this source code outside of the terms of the licence agreement 00015 * and you are expected to delete this and any associated files immediately. 00016 * Further information on DTVKit, membership and terms can be found at www.dtvkit.org 00017 *******************************************************************************/ 00024 // pre-processor mechanism so multiple inclusions don't cause compilation error 00025 00026 #ifndef _STBHWFP_H 00027 #define _STBHWFP_H 00028 00029 //---Constant and macro definitions for public use----------------------------- 00030 00031 //---Enumerations for public use----------------------------------------------- 00032 typedef enum 00033 { 00034 WAKEUP_UNKNOWN = 0, 00035 WAKEUP_TIMER, 00036 WAKEUP_USER 00037 } E_FRONTPANEL_WAKEUP_TYPE; 00038 00039 typedef enum 00040 { 00041 LED_OFF = 0, 00042 LED_ON, 00043 LED_BLINKING 00044 } E_LED_STATE; 00045 00046 //---Global type defs for public use------------------------------------------- 00047 00048 //---Global Function prototypes for public use--------------------------------- 00052 void STB_FPInitialise(void); 00053 00058 void STB_FPKeyEnable(BOOLEAN enable); 00059 00064 void STB_FPRemoteEnable(BOOLEAN enable); 00065 00070 void STB_FPSetHandsetCode(U16BIT hset_code); 00071 00078 void STB_FPDisplayString(U32BIT str_addr, U8BIT scrollstep, U16BIT scrollrate); 00079 00090 void STB_FPSetClock(U16BIT mjd, U16BIT year, U8BIT month, U8BIT day, U8BIT hours, U8BIT minutes, U8BIT seconds); 00091 00096 void STB_FPShowClock(BOOLEAN show); 00097 00111 void STB_FPSetWakeUpTime(U16BIT mjd, U16BIT year, U8BIT month, U8BIT day, U8BIT hours, U8BIT minutes, 00112 U32BIT time_in_mins); 00113 00120 void STB_FPSetStandby(BOOLEAN standby); 00121 00131 E_FRONTPANEL_WAKEUP_TYPE STB_FPGetWakeUpType(void); 00132 00138 void STB_FPSetLedState(U8BIT led_id, E_LED_STATE led_state, U16BIT period, U8BIT duty_cycle); 00139 00140 void STB_FPWaitForUserInput(void); 00141 U8BIT STB_FPGetDisplaySize(void); 00142 void STB_FPAnimation(U8BIT anim_type, U8BIT frame_rate); 00143 void STB_FPRefreshWatchdog(void); 00144 void STB_FPSetWdogPeriod(U16BIT watchdog_period); 00145 void STB_FPSetAutoStandby(BOOLEAN auto_standby); 00146 void STB_FPSetAutoStandbyTime(U8BIT minute); 00147 00148 #endif // _STBHWFP_H