this a test code modified to cr20A
Dependencies: fsl_phy_mcr20a fsl_smac mbed-rtos mbed
Fork of mcr20_connectivity_test by
Source/ConnectivityMenus.h
- Committer:
- andreikovacs
- Date:
- 2015-07-16
- Revision:
- 1:1eb1eccc81c2
- Parent:
- 0:4eb2240dbd22
- Child:
- 8:c37e57032093
File content as of revision 1:1eb1eccc81c2:
/*! * Copyright (c) 2015, Freescale Semiconductor, Inc. * All rights reserved. * * \file ConnectivityMenus.h * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * o Redistributions of source code must retain the above copyright notice, this list * of conditions and the following disclaimer. * * o Redistributions in binary form must reproduce the above copyright notice, this * list of conditions and the following disclaimer in the documentation and/or * other materials provided with the distribution. * * o Neither the name of Freescale Semiconductor, Inc. nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "EmbeddedTypes.h" /*Include special data types*/ /************************************************************************************ ************************************************************************************* * Public memory declarations ************************************************************************************* ************************************************************************************/ extern char * const cu8FreescaleLogo[]; extern char * const cu8MainMenu[]; extern char * const cu8ShortCutsBar[]; extern char * const cu8ContinuousTestMenu[]; extern char * const cu8PerTxTestMenu[]; extern char * const cu8PerRxTestMenu[]; extern char * const cu8RangeTxTestMenu[]; extern char * const cu8RangeRxTestMenu[]; extern char * const cu8RadioRegistersEditMenu[]; extern char * const cu8RadioCSTCSelectMenu[]; extern char * const cu8CsTcTestMenu[]; extern char * const cu8ContinuousTestTags[]; extern char * const cu8SelectTags[]; extern char * const cu8TxTestTags[]; extern char * const cu8RxTestTags[]; extern char * const cu8TxModTestTags[]; /************************************************************************************ ************************************************************************************* * Module macros ************************************************************************************* ************************************************************************************/ #define isAsciiHex(Data) (((Data >= '0') && (Data <= '9')) \ || ((Data >= 'A') && (Data <= 'F')) \ || ((Data >= 'a') && (Data <= 'f'))) /************************************************************************************ ************************************************************************************* * Interface functions prototypes ************************************************************************************* ************************************************************************************/