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 *******************************************************************************/ 00025 // pre-processor mechanism so multiple inclusions don't cause compilation error 00026 00027 #ifndef _STBDBNVM_H 00028 00029 #define _STBDBNVM_H 00030 00031 //---Constant and macro definitions for public use----------------------------- 00032 00033 #define NVM_INVALID_BLOCK_ID 0xffff 00034 00035 //---Enumerations for public use----------------------------------------------- 00036 00037 //---Global type defs for public use------------------------------------------- 00038 00039 //---Global Function prototypes for public use--------------------------------- 00040 00041 void STB_InitNVMAccess(U16BIT offset); 00042 void STB_InitNVMMap(void); 00043 BOOLEAN STB_CheckNVMDatabaseIntegrity(void); 00044 void STB_SetNVMAccessRAM(U8BIT *ram_ptr); 00045 U8BIT* STB_GetNVMAccessRAM(void); 00046 00047 U16BIT STB_GetNVMBlockCount(void); 00048 U16BIT STB_GetNVMBlocksUsed(void); 00049 U16BIT STB_GetNVMBlocksNeeded(U16BIT size); 00050 00051 U16BIT STB_CreateNVMRecord(U8BIT rec_id, U16BIT size); 00052 void STB_DestroyNVMRecord(U16BIT block_no); 00053 00054 void STB_SetNextNVMBlock(U16BIT block_no, U16BIT next_block); 00055 U16BIT STB_GetNextNVMBlock(U16BIT block_no); 00056 00057 U16BIT STB_FindNVMRecordFromId(U8BIT rec_id, U16BIT last_blk); 00058 00059 void STB_NVMChanged(BOOLEAN state); 00060 void STB_NVMSave(void); 00061 00062 void STB_SetNVMRecordField(U16BIT block_no, U16BIT offset, U16BIT size, U32BIT value, E_DBA_FIELD_TYPE type); 00063 U32BIT STB_GetNVMRecordField(U16BIT block_no, U16BIT offset, U16BIT size, E_DBA_FIELD_TYPE type); 00064 00065 void STB_WriteNVMData(U16BIT offset, U16BIT size, U8BIT *data_ptr); 00066 BOOLEAN STB_ReadNVMData(U16BIT offset, U16BIT size, U8BIT *data_ptr); 00067 00068 #endif // _STBDBNVM_H 00069 00070 //***************************************************************************** 00071 // End of file 00072 //***************************************************************************** 00073