[Feature]Upload Modem source code
Change-Id: Id4294f30faced84d3e6fd6d5e61e1111bf287a37
diff --git a/mcu/interface/protocol/as_c2k/1xrtt/digits.h b/mcu/interface/protocol/as_c2k/1xrtt/digits.h
new file mode 100644
index 0000000..698c779
--- /dev/null
+++ b/mcu/interface/protocol/as_c2k/1xrtt/digits.h
@@ -0,0 +1,148 @@
+/*****************************************************************************
+* 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) 2016
+*
+* 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).
+*
+*****************************************************************************/
+/*************************************************************
+*
+* This Software is the property of VIA Telecom, Inc. and may only be used pursuant to a license from VIA Telecom, Inc.
+*
+* Any unauthorized use inconsistent with the terms of such license is strictly prohibited.
+*
+* Copyright (c) 1999-2010 VIA Telecom, Inc. All rights reserved.
+*
+*************************************************************/
+/****************************************************************************
+ *
+ * Module: digits.h
+ *
+ * Purpose: Definitions for Digit-Handling Functions.
+ *
+ ****************************************************************************
+ *
+ * PVCS Header Information
+ *
+ * $Revision: 1.2 $
+ * $Author: fpeng $
+ *
+ * $Log: digits.h $
+ *
+ * 07 06 2017 sue.zhong
+ * [MOLY00259241] [6293][C2K]Replace with KAL data type
+ * Correct copyright file header
+ * Revision 1.2 2004/03/25 12:09:25 fpeng
+ * Updated from 6.0 CP 2.5.0
+ * Revision 1.1 2003/05/12 15:38:36 fpeng
+ * Initial revision
+ * Revision 1.2 2002/06/06 13:11:34 chinh
+ * Changed and Added Copyright
+ * Revision 1.1 2001/01/17 10:58:23 plabarbe
+ * Initial revision
+ * Revision 1.1 2000/10/24 14:11:08 fpeng
+ * Initial revision
+ * Revision 1.3 2000/08/23 22:06:24Z RSATTARI
+ * Isotel release 2.8 plus LSI applicable IS-95B changes.
+ * Revision 1.10 1999/10/28 17:10:11 dfischer
+ * Added is called address BCD
+ *
+ * Revision 1.9 1999/10/13 22:25:32 dfischer
+ * Added ascii2bcd
+ *
+ * Revision 1.8 1999/07/16 21:53:24 gfrye
+ * Removed unused functions.
+ *
+ * Revision 1.7 1999/04/16 00:56:05 mhayduk
+ * Modify interface for saving digits and retrieving last 6
+ * digits for authentication purposes.
+ *
+ * Revision 1.6 1999/04/15 01:35:49 mhayduk
+ * Added support for storing encoded digit strings.
+ * Added support for setting and storing authentication digits.
+ *
+ * Revision 1.5 1998/10/20 23:58:23 mhayduk
+ * Added T53 support.
+ *
+ * Revision 1.4 1998/08/13 00:12:05 scotvold
+ * Added DTMF support.
+ *
+ * Revision 1.3 1998/03/30 23:26:03 mhayduk
+ * Release 0.03.
+ *
+ * Revision 1.1 1997/11/06 17:49:24 mhayduk
+ * Initial revision
+ *
+ *
+ ****************************************************************************
+ ****************************************************************************/
+
+
+#ifndef _DIGITS_H_
+
+ #define _DIGITS_H_ 1
+
+/*****************************************************************************
+ * Defines
+ ****************************************************************************/
+ #define CP_MAX_DIGITS 32
+
+/* Order Qualifier for Stop Continuous DTMF order */
+#define TC_STOP_CONTINUOUS_DTMF 0xFF
+
+
+/**********************************************************************
+ * Global declarations
+ **********************************************************************/
+
+/* DTMF Digit BCD to ASCII conversion */
+extern const char tbcd_[];
+
+
+/*****************************************************************************
+ * Prototypes
+ ****************************************************************************/
+
+/* Scratchpad function prototypes */
+void cpPutDialedDigits(char *digits,kal_bool encoded,kal_uint8 numDigits,
+ kal_bool digitMode);
+char* cpGetCalledAddress(void);
+kal_bool cpIsCalledAddressBCD(void);
+void cpGetLastSixDigits(char *data);
+kal_uint8 cpGetNumCADigits(void);
+
+kal_uint8 ascii2pbcd(char* dest, char* src, kal_uint8 numDigs);
+kal_uint8 ascii2bcd(char* dest, char* src, kal_uint8 numDigs);
+kal_uint8 cpConvertDigit (char digit);
+
+
+#endif /* _DIGITS_H_ */
+
+