⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 twiddle.h

📁 CD_高级PALM编程
💻 H
字号:
/********************************************************************* FILE:				Starter.h** DESCRIPTION:	The header file for the Starter project module.*					It contains contants and data type definitions.** VERSION:		1.0**********************************************************************///	Internal Constants#define	APP_FILE_CREATOR			'PAKA'	// Palm Algorithms for Killer Applications#define	MIN_ROM_MAJOR				3#define	MIN_ROM_MINOR				1#define	MIN_ROM_VERSION			sysMakeROMVersion ( MIN_ROM_MAJOR, MIN_ROM_MINOR, 0, sysROMStageDevelopment, 0 )#define mainFormBufferSize ( 256 )// Port configurationstatic const mainFormBaudRate = 9600;static const mainFormTimeOutIfNoResponse = 100;static const mainFormRecvWaitDelay = 10;static const mainFormRecvWaitBytes = 1;static const mainFormRecvMaxRetry = 4;static UInt8 fRetryCount = 0;// App launch codesstatic UInt32 mainFormTargetAppCreator = 'PAKa';// Event loop timer... poll for comms every 10 ticks if we're connectedstatic const mainFormEvtWaitWhenConnected = 10;#define  mainFormEvtWait ( ( ConnectedPort() ? \	mainFormEvtWaitWhenConnected : evtWaitForever ) )void MainFormSendCommand( void );void MainFormValidateInput( 	Char *inputP	);void MainFormLaunch();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -