55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
/**************************************************************************************************
|
|
*
|
|
* Copyright (c) 2003 Palm Computing, Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
*************************************************************************************************/
|
|
/** @defgroup IRCommunication IR Raw Receiver Sample
|
|
* The IRCommunication sample applications shows how to use the Serial Manager to transmit and receive
|
|
* Raw IR Data and IR COMM Data
|
|
**/
|
|
/** @ingroup IRCommunication
|
|
*
|
|
**/
|
|
|
|
/** @file IRReceiverRaw.h
|
|
* This file contains the source for receiving Raw IR data
|
|
**/
|
|
|
|
/** @name
|
|
*
|
|
**/
|
|
/*@{*/
|
|
|
|
|
|
/**************************************************************************************************
|
|
*
|
|
* File: IRReceiverRaw.h
|
|
*
|
|
* Description: IR Receiver Raw header.
|
|
*
|
|
* Version: 1.0 - Initial Revision (09/05/03)
|
|
*
|
|
*************************************************************************************************/
|
|
|
|
#ifndef IRRECEIVERRAW_H_
|
|
#define IRRECEIVERRAW_H_
|
|
|
|
/**************************************************************************************************
|
|
*
|
|
* Constants
|
|
*
|
|
*************************************************************************************************/
|
|
|
|
#define appCreatorID 'iRrR'
|
|
|
|
#define ourMinVersion sysMakeROMVersion( 4, 0, 0, sysROMStageDevelopment, 0 )
|
|
#define kPalmOS20Version sysMakeROMVersion( 2, 0, 0, sysROMStageDevelopment, 0 )
|
|
|
|
|
|
#endif // IRRECEIVERRAW_H_
|
|
|
|
/* EOF *******************************************************************************************/
|
|
|
|
/*@}*/
|