Intermec 6200 Reference Guide

Page of 410
APPENDIX A
Sample Configuration Files
PEN*KEY
R
 6200/6300 Hand-Held Computer Programmer’s Reference Guide    A-5
AUTOEXEC.BAT Listing for 6200
The following batch file calls ROMINIT.BAT:
@echo off
prompt $p$g
REM If the 62BI325A flash is loaded, then COMMAND.COM in flash is really
REM MINICMD.  MINICMD executes ROMINIT.BAT instead of AUTOEXEC.BAT. To build
REM an application include file that works with either 62BI325A or 62BI325B
REM flash, ROMINIT.BAT must be included as the primary batch file.
REM AUTOEXEC.BAT must be supplied to execute ROMINIT.BAT on a terminal with
REM the 62BI325B flash.
REM Alternatively, the standard COMMAND.COM can be loaded as part of your
REM application.  See CONFIG.SYS for details.
rominit.bat
ROMINIT.BAT File Listing for 6200
The following is a batch file example, for a standard flash configuration for the
6200 Computer:
@echo off
REM Place your path statement here.  Use the Set command to work with both
REM COMMAND.COM and MINICMD.
set PATH=D:\;
REM When CardSoft is loaded, use drives E and F to access PC Cards instead
REM of A and B.  If A and B are accidentally used, the media could corrupt.
REM Use ASSIGN to redirect accesses from A and B to E and F respectively, to
REM to avoid this problem.  If you load either EMM386 or UMP and claim
REM segment C800 as upper memory then drive A and B access is effectively
REM disabled.  See CONFIG.SYS for details.
rem d:\assign.com a:=e: b:=f:
REM _______________ NPCP PRINTING AND COMMUNICATIONS ________________
REM Used for NPCP communications and printing
REM 
REM (uncomment the appropriate command, below)
REM For use with C++:
rem d:\4000api.exe /PC /10 /16 /C3
REM For use with PL/N:
rem d:\4000api.exe
REM Used for NPCP LAN communications
rem d:\mininet.exe
REM ^^^^^^^^^^^^^ NPCP PRINTING AND COMMUNICATIONS ^^^^^^^^^^^^^^^^^^^
REM __________________DOS BATTERY & CHARGE VOLTAGES_________________
REM Do not load this if running Windows applications.
REM This program displays the main, backup, and charge voltages on the
REM bottom line of the display.
REM Also displayed are arrows that can indicate conditions such as charging,
REM main fully charged, main low, or main critically low.  Read the Toolkit
REM release notes for further details.
c:\pwrdisp.com
REM ^^^^^^^^^^^^^^^^^^DOS BATTERY & CHARGE VOLTAGES^^^^^^^^^^^^^^^^^^
REM _____________________ MOUSE-AWARE DOS APPS ______________________
REM Load a pen driver for mouse emulation.  Note that PENPAL and PENRIGHT
REM examples below already show how and when to load a pen driver for those 
REM environments so this section is for other pen based application
REM environments.
REM 62MOUSE.COM /C calibrates touch screen before it runs.
rem 62MOUSE.COM
A. Sample
Configuration Files