misc_bb.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:7k
源码类别:

MTK

开发平台:

C++ Builder

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  10. *  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  11. *  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
  12. *  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  13. *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  14. *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  15. *  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  16. *  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  17. *  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
  18. *  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
  19. *  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
  20. *  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
  21. *
  22. *  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
  23. *  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  24. *  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  25. *  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
  26. *  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
  27. *
  28. *  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
  29. *  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
  30. *  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
  31. *  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
  32. *  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
  33. *
  34. *****************************************************************************/
  35. /*****************************************************************************
  36.  *
  37.  * Filename:
  38.  * ---------
  39.  *   misc_bb.cpp
  40.  *
  41.  * Project:
  42.  * --------
  43.  *   Maui META APP
  44.  *
  45.  * Description:
  46.  * ------------
  47.  *  Baseband Misc. function source
  48.  *
  49.  * Author:
  50.  * -------
  51.  *  Andy Ueng (mtk00490)
  52.  *
  53.  *============================================================================
  54.  *             HISTORY
  55.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  56.  *------------------------------------------------------------------------------
  57.  * $Revision$
  58.  * $Modtime$
  59.  * $Log$
  60.  * 
  61.  *------------------------------------------------------------------------------
  62.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  63.  *============================================================================
  64.  ****************************************************************************/
  65. #include <vcl.h>
  66. #pragma hdrstop
  67. #ifndef  _MAN_ERROR_H_
  68. #include "man_error.h"
  69. #endif
  70. #ifndef  _FT_UTILS_H_
  71. #include "ft_utils.h"
  72. #endif
  73. //==============================================================================
  74. // baseband
  75. //---------------------------------------------------------------------------
  76. bool  IsValidADCMeasureCount(AnsiString ansi_str, unsigned short &measure_count)
  77. {
  78.     RANGE_CHECK_ERROR(! AnsiString_To_UnsignedShort( ansi_str, measure_count, 0, 65535 ), RANGE_ERR_MEASURE_COUNT);
  79.     return true;
  80. }
  81. //---------------------------------------------------------------------------
  82. bool  IsValidBatteryLevelVoltage(AnsiString ansi_str, unsigned int &voltage)
  83. {
  84.     RANGE_CHECK_ERROR(! AnsiString_To_UnsignedInteger(ansi_str, voltage, 0, 9999999), RANGE_ERR_BATTERY_LEVEL_VOLTAGE);
  85.     return true;
  86. }
  87. //==============================================================================
  88. bool  IsValidHexRegAddr(AnsiString ansi_str, unsigned int &addr)
  89. {
  90.    RANGE_CHECK_ERROR(!AnsiString_Hex_To_UnsignedInt(ansi_str, addr), RANGE_ERR_REG_ADDR);
  91.    return true;
  92. }
  93. //---------------------------------------------------------------------------
  94. bool  IsValidHexRegValue(AnsiString ansi_str, unsigned short &value)
  95. {
  96.    //unsigned int  idata = value;
  97.    RANGE_CHECK_ERROR( !AnsiString_Hex_To_UnsignedShort(ansi_str, value), RANGE_ERR_REG_VALUE);
  98.    //value = (unsigned short)idata;
  99.    return true;
  100. }
  101. //---------------------------------------------------------------------------
  102. bool  IsValidDecRegValue(AnsiString ansi_str, unsigned short &value)
  103. {
  104.     //int  idata;
  105.     RANGE_CHECK_ERROR(! AnsiString_To_UnsignedShort(ansi_str, value, 0, 65535), RANGE_ERR_REG_VALUE);
  106.     //value = (unsigned short)idata;
  107.    return true;
  108. }
  109. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  110. bool  IsValidLEDLightLevel(AnsiString ansi_str, unsigned char &level)
  111. {
  112.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, level, 0, 5), RANGE_ERR_LED_LIGHT_LEVEL);
  113.     return true;
  114. }
  115. //===========================================================================
  116. ////////////////////////////       RTC     //////////////////////////////////
  117. //===========================================================================
  118. bool  IsValidRTCYear(AnsiString ansi_str, unsigned char &year)
  119. {
  120.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, year, 0, 255), RANGE_ERR_RTC_YEAR);
  121.     return true;
  122. }
  123. //---------------------------------------------------------------------------
  124. bool IsValidRTCMonth(AnsiString ansi_str, unsigned char &month)
  125. {
  126.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, month, 1, 12), RANGE_ERR_RTC_YEAR);
  127.     return true;
  128. }
  129. //---------------------------------------------------------------------------
  130. bool IsValidRTCWDay(AnsiString ansi_str, unsigned char &wday)
  131. {
  132.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, wday, 1, 7), RANGE_ERR_RTC_WDAY);
  133.     return true;
  134. }
  135. //---------------------------------------------------------------------------
  136. bool IsValidRTCDay(AnsiString ansi_str, unsigned char &day)
  137. {
  138.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, day, 1, 31), RANGE_ERR_RTC_DAY);
  139.     return true;
  140. }
  141. //---------------------------------------------------------------------------
  142. bool IsValidRTCHour(AnsiString ansi_str, unsigned char &hour)
  143. {
  144.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, hour, 0, 23), RANGE_ERR_RTC_HOUR);
  145.     return true;
  146. }
  147. //---------------------------------------------------------------------------
  148. bool IsValidRTCMinute(AnsiString ansi_str, unsigned char &minute)
  149. {
  150.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, minute, 0, 59), RANGE_ERR_RTC_MINUTE);
  151.     return true;
  152. }
  153. //---------------------------------------------------------------------------
  154. bool IsValidRTCSec(AnsiString ansi_str, unsigned char &sec)
  155. {
  156.     RANGE_CHECK_ERROR(!AnsiString_To_UnsignedChar(ansi_str, sec, 0, 59), RANGE_ERR_RTC_SEC);
  157.     return true;
  158. }