Subject: Partition advice.
From: ACRE NL
Date: 11/18/2002, 8:24 PM


Hi Paul,
The other way is to upgrade to Windows 2000, When you up grade you don,t lose any information and you can convert to NTFS at
the
same time. With Windows 2000 you can have as many partitions as you want, also you can run one with Linux.
I use Windows 2000 and have another partition with a second copy incase the first gets a virus. I just delete the infected partition
and
use
the next one.
Regards Don


The big problem is, as Aden pointed out, Windows is not at all suited to real
time stuff. Anybody got an old DOS running notebook computer in
good condition they want to sell?


Paul Lamar
Hi Paul,
You can also have a DOS partition with 2000


Well that might be the answer. Partition and then install 6.22
instead of what ever weird version of DOS that comes with 95 and 98.
Perhaps then I can get real control over the serial ports.

Paul 7.0 DOS and the 7.? with win95, 98 is an expanded version of ver 6x.
We have never had any compatability problems with using it .
We have not used any other version for several years, and it runs all our dos software without a hitch.  You never know that it is ver 7x. So
weird doesn't mean anything to us.  Why do you consider it weird?
Royce

Both Ed and I are having problems accessing the serial ports while
in DOS (7.x?). Ed is running 95 and I am running 98. I can send you a GPS
simulator designed to out put GPS data continuously just like a real
GPS and you can run that in an old DOS computer and hook it to the 
RS232 on a notebook running 95 or 98 DOS and see the problem for yourself. 
Here is a short program that reads the GPS data coming
in from a serial port and records the arrival time down to a millisecond.
This program works fine with data from a real GPS and an old DOS 5.0
computer.

Paul Lamar
 
The AirCraft Rotary Engine NewsLetter.  Powered by Linux.
ACRE NL web site. http://home.earthlink.net/~rotaryeng/            
Copyright 1998-2002 All world wide rights reserved.

CLS
DEFINT A-Z


OPEN "COM1:4800,N,8,2,OP15000,RS,RB32000,CD0,DS0,CS0," FOR RANDOM AS #1
OPEN "sat.dat" FOR OUTPUT AS #2
COM(1) ON
ON COM(1) GOSUB doit:


start:
IF INKEY$ = CHR$(27) THEN GOTO enditall    'esc key
GOTO start:

doit:
'INPUT #1, temp2$
'PRINT #2, temp2$; " "
'PRINT temp2$; " "

temp$ = INPUT$(LOC(1), #1)
PRINT #2, temp$; " "
PRINT temp$; " "
GOSUB fract
RETURN

enditall:
CLS
CLOSE
END




'********************************************************************
'                FRACT
'*****************************************************************
fract:                      'time stamps things in diagnos.dat
PRINT #2, TIME$; " ";
PRINT TIME$; " ";
DEF SEG = 0
fract = PEEK(&H46E)
PRINT #2, fract; " ";
PRINT fract; " ";
fract = PEEK(&H46D)
PRINT #2, fract; " ";
PRINT fract; " ";
fract = PEEK(&H46C)
PRINT #2, fract
PRINT fract
RETURN