misc_bb.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:7k
- /*****************************************************************************
- * Copyright Statement:
- * --------------------
- * This software is protected by Copyright and the information contained
- * herein is confidential. The software may not be copied and the information
- * contained herein may not be used or disclosed except with the written
- * permission of MediaTek Inc. (C) 2005
- *
- * BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
- * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
- * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
- * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
- * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
- * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
- * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
- * NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
- * SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
- *
- * BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
- * LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
- * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
- * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
- * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
- *
- * THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
- * WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
- * LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
- * RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
- * THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
- *
- *****************************************************************************/
- /*****************************************************************************
- *
- * Filename:
- * ---------
- * misc_bb.cpp
- *
- * Project:
- * --------
- * Maui META APP
- *
- * Description:
- * ------------
- * Baseband Misc. function source
- *
- * Author:
- * -------
- * Andy Ueng (mtk00490)
- *
- *============================================================================
- * HISTORY
- * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
- *------------------------------------------------------------------------------
- * $Revision$
- * $Modtime$
- * $Log$
- *
- *------------------------------------------------------------------------------
- * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
- *============================================================================
- ****************************************************************************/
- #include <vcl.h>
- #pragma hdrstop
- #ifndef _MAN_ERROR_H_
- #include "man_error.h"
- #endif
- #ifndef _FT_UTILS_H_
- #include "ft_utils.h"
- #endif
- //==============================================================================
- // baseband
- //---------------------------------------------------------------------------
- bool IsValidADCMeasureCount(AnsiString ansi_str, unsigned short &measure_count)
- {
- RANGE_CHECK_ERROR(! AnsiString_To_UnsignedShort( ansi_str, measure_count, 0, 65535 ), RANGE_ERR_MEASURE_COUNT);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidBatteryLevelVoltage(AnsiString ansi_str, unsigned int &voltage)
- {
- RANGE_CHECK_ERROR(! AnsiString_To_UnsignedInteger(ansi_str, voltage, 0, 9999999), RANGE_ERR_BATTERY_LEVEL_VOLTAGE);
- return true;
- }
- //==============================================================================
- bool IsValidHexRegAddr(AnsiString ansi_str, unsigned int &addr)
- {
- RANGE_CHECK_ERROR(!AnsiString_Hex_To_UnsignedInt(ansi_str, addr), RANGE_ERR_REG_ADDR);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidHexRegValue(AnsiString ansi_str, unsigned short &value)
- {
- //unsigned int idata = value;
- RANGE_CHECK_ERROR( !AnsiString_Hex_To_UnsignedShort(ansi_str, value), RANGE_ERR_REG_VALUE);
- //value = (unsigned short)idata;
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidDecRegValue(AnsiString ansi_str, unsigned short &value)
- {
- //int idata;
- RANGE_CHECK_ERROR(! AnsiString_To_UnsignedShort(ansi_str, value, 0, 65535), RANGE_ERR_REG_VALUE);
- //value = (unsigned short)idata;
- return true;
- }
- //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- bool IsValidLEDLightLevel(AnsiString ansi_str, unsigned char &level)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, level, 0, 5), RANGE_ERR_LED_LIGHT_LEVEL);
- return true;
- }
- //===========================================================================
- //////////////////////////// RTC //////////////////////////////////
- //===========================================================================
- bool IsValidRTCYear(AnsiString ansi_str, unsigned char &year)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, year, 0, 255), RANGE_ERR_RTC_YEAR);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidRTCMonth(AnsiString ansi_str, unsigned char &month)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, month, 1, 12), RANGE_ERR_RTC_YEAR);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidRTCWDay(AnsiString ansi_str, unsigned char &wday)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, wday, 1, 7), RANGE_ERR_RTC_WDAY);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidRTCDay(AnsiString ansi_str, unsigned char &day)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, day, 1, 31), RANGE_ERR_RTC_DAY);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidRTCHour(AnsiString ansi_str, unsigned char &hour)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, hour, 0, 23), RANGE_ERR_RTC_HOUR);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidRTCMinute(AnsiString ansi_str, unsigned char &minute)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, minute, 0, 59), RANGE_ERR_RTC_MINUTE);
- return true;
- }
- //---------------------------------------------------------------------------
- bool IsValidRTCSec(AnsiString ansi_str, unsigned char &sec)
- {
- RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, sec, 0, 59), RANGE_ERR_RTC_SEC);
- return true;
- }