textfiles/messages/ALANWESTON/1994/OCEAN04_26.txt

255 lines
7.0 KiB
Plaintext

Y
Public Message
Message # 4148 *MM1 TECH Echo*
To : Alan Weston
From : James Jones
Subject : Re: dial.sys contents
Date : 94/04/24 18:51:32
Previous Reply is Message 4075
Thanks for your help; I've captured your message to me and I'll gather
all the info together offline to make sure I don't skip over any of the
stuff you've asked for. Thanks again.
--- RiBBS v2.10
* Origin: Ocean Beach BBS 619-224-4878 MM1 TECH moderator (1:202/343)
<A>gain, <N>ext, <S>top, <R>eply, <D>elete , <B>oth Del & Reply
Public Message
Message # 4149 *MM1 TECH Echo*
To : Alan Weston
From : James Jones
Subject : dial.sys
Date : 94/04/25 04:18:17
Here goes. I'm connected using laterm, after entering the command by
hand that ladial should be using given the dial.sys I have.
I'm using /t3. xmode shows type=80 baud=38400 xon=0 xoff=0 tabc=0, and
the rest is pretty much the usual. Hang on, let's try a little cutting
and pasting...
noupc bsb bsl echo lf null=0 nopause pag=24 bsp=08 del=18 eor=0D
eof=1B reprint=04 dup=01 psc=17 abort=03 quit=05 bse=08 bell=07
type=80 baud=38400 xon=00 xoff=00 tabc=00 tabs=4
The strings are the same as those I use with OSTerm.
--- RiBBS v2.10
* Origin: Ocean Beach BBS 619-224-4878 MM1 TECH moderator (1:202/343)
<A>gain, <N>ext, <S>top, <R>eply, <D>elete , <B>oth Del & ReplyN
Public Message
Message # 4109 *MM1 TECH Echo*
To : All
From : Calvin Dodge
Subject : Math module
Date : 94/04/23 18:51:50
I hope (and really think) this will be the last fix (until (and if) I
upgrade it. V. 1.9 is the latest version - this one HAS been tested by
me. Try it and see what results you get.
--- RiBBS v2.10
* Origin: Ocean Beach BBS 619-224-4878 MM1 TECH moderator (1:202/343)
Public Message
Message # 4138 *MM1 TECH Echo*
To : All
From : David Graham
Subject : BlackHawk Enterprises, Inc. Ship
Date : 94/04/24 13:46:25
BHE has shipped it's first MM/1. Shipping time is still dependent
on receipt of boards ala IMS - in other words, pretty delayed. We
will be turning all profits back into inventory though, so unlike
IMS we expect to be shipping within 30 days by the end of this year.
(End of July, if possible!). Our special offer is over. The systems
advertised are still available, but not at the discounted price.
Please direct inquiries for sales to an authorized reseller or
BlackHawk Enterprises, Inc.
PO Box 10552
Enid, OK 73706-0552
--- RiBBS v2.10
* Origin: Ocean Beach BBS 619-224-4878 MM1 TECH moderator (1:202/343)
Public Message (Rec)
Message # 4148 *MM1 TECH Echo*
To : Alan Weston
From : James Jones
Subject : Re: dial.sys contents
Date : 94/04/24 18:51:32
Previous Reply is Message 4075
Thanks for your help; I've captured your message to me and I'll gather
all the info together offline to make sure I don't skip over any of the
stuff you've asked for. Thanks again.
--- RiBBS v2.10
* Origin: Ocean Beach BBS 619-224-4878 MM1 TECH moderator (1:202/343)
Public Message (Rec)
Message # 4149 *MM1 TECH Echo*
To : Alan Weston
From : James Jones
Subject : dial.sys
Date : 94/04/25 04:18:17
Here goes. I'm connected using laterm, after entering the command by
hand that ladial should be using given the dial.sys I have.
I'm using /t3. xmode shows type=80 baud=38400 xon=0 xoff=0 tabc=0, and
the rest is pretty much the usual. Hang on, let's try a little cutting
and pasting...
noupc bsb bsl echo lf null=0 nopause pag=24 bsp=08 del=18 eor=0D
eof=1B reprint=04 dup=01 psc=17 abort=03 quit=05 bse=08 bell=07
type=80 baud=38400 xon=00 xoff=00 tabc=00 tabs=4
The strings are the same as those I use with OSTerm.
--- RiBBS v2.10
* Origin: Ocean Beach BBS 619-224-4878 MM1 TECH moderator (1:202/343)
Public Message
Message # 4206 *MM1 TECH Echo*
To : All
From : Colin Mckay
Subject : MM/1 Clock
Date : 94/04/25 18:06:00
Bob van der Poel has been monitoring our recent discussions about the
MM/1 clock, and forwarded the following to me on Internet:
Date: Sun, 24 Apr 1994 13:50:38 -0400
From: Bob van der Poel <76510.2203@compuserve.com>
To: <cmckay@northx.isis.org>
Subject: Clocks
I saw some chatter on Fido about the DST stuff in the mm/1 clock.
That feature can be toggled on/off. Here is a B09 program which
does just that.
PROCEDURE Clock_DST_toggle
(* This will toggle the daylight saving time auto-adjust flag on the
(* MC14681A (Dallas Semi DS1287). The addesses used here are for a
(* MM/1 computer -- other systems may use different addressing.
(* By Bob van der Poel, 92/10/16
DIM Clock_Sel,Clock_data:INTEGER
DIM Value:BYTE
Clock_Sel=$e00200+1
Clock_data=$e00200+3
(* Get the current value in clock REGISTER B. We are interested in Bit 0.
(* We toggle the value of Bit 0.
POKE Clock_Sel,11
v=PEEK(Clock_data)
IF LAND(v,1)=1 THEN
v=LAND(v,126)
ELSE v=LOR(v,1)
ENDIF
(* Now put the new value in the clock. Then we get it back and do our
(* reporting...
POKE Clock_Sel,11
POKE Clock_data,v
POKE Clock_Sel,11
v=PEEK(Clock_data)
PRINT "Daylight savings time adjustment ";
IF LAND(v,1)=0 THEN
PRINT "NOT ";
ENDIF
PRINT "enabled."
Thanks, Bob!
TTYL. Colin.
--- Maximus-CBCS v1.02
* Origin: Micro80 Computer Club of Ottawa BBS (1:163/306)
Public Message
Message # 4207 *MM1 TECH Echo*
To : All
From : Colin Mckay
Subject : Bob van der Poel
Date : 94/04/25 18:11:00
Next Reply is Message 4221
Oh, I should mention that Bob van der Poel has read-only
access to Fido, so please don't try sending him messages.
Thanks. Colin.
--- Maximus-CBCS v1.02
* Origin: Micro80 Computer Club of Ottawa BBS (1:163/306)
Public Message
Message # 4221 *MM1 TECH Echo*
To : Colin Mckay
From : Warren Hrach
Subject : Re: Bob van der Poel
Date : 94/04/26 10:41:41
Previous Reply is Message 4207
On Monday, April 25th, 1994 - Colin Mckay wrote:
CM> Oh, I should mention that Bob van der Poel has read-only
CM> access to Fido, so please don't try sending him messages.
CM> Thanks. Colin.
Colin,
Bob calls my BBS about 2 times a month and he can post on any echo
but usually does a quick capture of new mail and logs off. Saves on LD
costs. So if he sees something worth replying to he will just send from
his Compuserve account providing the addressee has an internet number.
But he can post on here if he has to.
(warren_hrach@f343.n202.z1.fidonet.org)
--- RiBBS v2.10
* Origin: Ocean Beach BBS 619-224-4878 MM1 TECH moderator (1:202/343)
=*= FIDO ECHO MESSAGES MENU =*=
<1> Scan \
<2> Read > OS9 Echo mail
<3> Leave /
<4> Scan \
<5> Read > CoCo Echo mail
<6> Leave /
<7> Scan \
<8> Read > CoCo_Club Echo mail
<9> Leave /
<A> Scan \
<B> Read > MM1_TECH Echo Mail
<C> Leave /
<G>o back to Main Menu
<P>revious Menu (Messages Menu)