DVBCore  1.0
Open source DVB engine
midware/ota/inc/stbota.h
Go to the documentation of this file.
00001 /*******************************************************************************
00002  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
00003  * Copyright © 2009 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 #ifndef _STBOTA_H
00025 #define _STBOTA_H
00026 
00027 /*---Constant and macro definitions for public use-----------------------------*/
00028 
00029 /*---Enumerations for public use-----------------------------------------------*/
00030 
00031 /*---Global type defs for public use-------------------------------------------*/
00032 typedef struct
00033 {
00034    U16BIT longitude;
00035    BOOLEAN direction_east;
00036    E_STB_DP_POLARITY polarity;
00037    U32BIT srate;
00038    E_STB_DP_MODULATION modulation;
00039    E_STB_DP_FEC fec;
00040 } S_OTA_SAT_TUNING_PARAMS;
00041 
00042 typedef struct
00043 {
00044    E_STB_DP_TBWIDTH bwidth;
00045    E_STB_DP_TTYPE type;
00046    U8BIT plp_id;
00047 } S_OTA_TER_TUNING_PARAMS;
00048 
00049 typedef struct
00050 {
00051    E_STB_DP_CMODE modulation;
00052    U32BIT srate;
00053 } S_OTA_CAB_TUNING_PARAMS;
00054 
00055 typedef struct
00056 {
00057    E_STB_DP_SIGNAL_TYPE signal_type;
00058    U32BIT freq;
00059    union
00060    {
00061       S_OTA_SAT_TUNING_PARAMS sat;
00062       S_OTA_TER_TUNING_PARAMS ter;
00063       S_OTA_CAB_TUNING_PARAMS cab;
00064    };
00065 } S_OTA_TUNING_PARAMS;
00066 
00067 /*---Global Function prototypes for public use---------------------------------*/
00068 void STB_OTAStartLoader(S_OTA_TUNING_PARAMS *tuning_params, U8BIT ver_major, U8BIT ver_minor,
00069    U8BIT ver_release, U8BIT product_id);
00070 U8BIT STB_OTAGetProgress(void);
00071 void STB_OTAContinueDownload(BOOLEAN status);
00072 U16BIT STB_OTAGetSSUCarouselPID(void);
00073 
00074 #endif /*  _STBOTA_H */
00075 
00076 /******************************************************************************
00077 ** End of file
00078 ******************************************************************************/
 All Data Structures Files Functions Typedefs Defines