70 lines
1.7 KiB
C
70 lines
1.7 KiB
C
/**************************************************************************************************
|
|
*
|
|
* Copyright (c) 2004-2006 Palm,Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
*************************************************************************************************/
|
|
|
|
/** @defgroup RadioSample RadioSample Sample Code Library
|
|
*
|
|
* This sample code shows how to detect if the radio is off or on,
|
|
* how to turn on the radio, how to turn off the radio, how to query the sim card for
|
|
* the phone number of the device, how to check if the device has service available
|
|
* using the signal level.
|
|
*
|
|
* This project was built using CodeWarrior 9.
|
|
*
|
|
* Features:
|
|
*
|
|
* - How to detect if the radio is off or on.
|
|
* - How to turn the radio on.
|
|
* - How to turn the radio off.
|
|
* - How to query the SIM card for the phone number.
|
|
* - How to check if the device has service available using the signal level.
|
|
*
|
|
* FileName:
|
|
* RadioSample.h
|
|
*
|
|
* @version Version 1.0 - Initial Revision (02/18/04)
|
|
*
|
|
*
|
|
*
|
|
* @{
|
|
* @}
|
|
*/
|
|
|
|
/** @ingroup RadioSample
|
|
*
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @file RadioSample.h
|
|
*
|
|
* @brief Resources for a test application for some of address
|
|
* book's launch codes.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef TUNGSTENWEXP_H_
|
|
#define TUNGSTENWEXP_H_
|
|
|
|
|
|
/**
|
|
* @name Constants
|
|
*
|
|
*/
|
|
/*@{*/
|
|
|
|
#define appCreatorID 'tWeX'
|
|
|
|
#define ourMinVersion sysMakeROMVersion( 4, 0, 0, sysROMStageDevelopment, 0 )
|
|
#define kPalmOS20Version sysMakeROMVersion( 2, 0, 0, sysROMStageDevelopment, 0 )
|
|
|
|
/*@}*/
|
|
|
|
#endif // TUNGSTENWEXP_H_
|
|
|
|
/* EOF *******************************************************************************************/
|