Re: [M100] Why not transfer with Telcom?

2021-02-25 Thread Brian K. White

On 2/25/21 9:08 PM, AvantGuard Systems wrote:
I can use Telcom and connect to BBS's. When on a session you have the 
options to (I forget the exact terminology on the screen) UPLOAD, DOWNLOAD.


TELCOM has no file transfer ability. All it can do is capture text from 
the serial port to a file and it can read a file and send it out the 
serial port.


That is missing too many things. No binary data, no machine language 
programs, not even 8-bit text, no error detection, let alone error 
correction, it can't even tell when a file begins or ends out of any 
other data coming in the serial port, nor can tell the host side when 
sending a file.


You have to do all those kinds of things yourself with separate programs 
in a dozen laborious, inefficient, error-prone steps before and after 
the actual transfer, to manage to get a file transferred that way. 
(encode the file with some kind of utility, generate a checksum of 
either the original file or maybe the encoded file, start the capture on 
one end, start sending from the other end, somehow arrange to ensure 
that there is not a single byte of other junk included in the capture 
before or after the file contents, run a decoder program on the 
receiving end to unpack the encoded file back into it's real form, run a 
checksum program to verify that, delete the encoded version, have an 
empty machine so that the ram can all be used up on having both the file 
you want and the 2x size encoded copy of it and the decoder app all in 
ram at the same time (so no big files), and then how did you get the 
encoder or decoder app onto the 100 in the first place? Manually type it 
in? Cassette? TELCOM capture an ascii format BASIC program and just hope 
it wasn't corrupted?


You only do that once per reset simply because the system rom provides 
no other option besides the cassette interface (for instance TELCOM has 
no xmodem), and you physically have no choice. So you do that once, just 
to bootstrap some kind of software to do that job for real the rest of 
the time, until the next time you wipe the machine.


So if I can upload and download files, why can't I build my own FTP 
SERVER? or whatever server, put the program files on it and download 
them to the Model100?


I'm not sure what exactly is the question. Yes you can place files on a 
computer and download them to the 100. That's exactly all a TPDD 
emulator (akak tpdd server) does is exactly that.


It's not FTP though. FTP is a tcp/ip protocol. There is no such thing as 
tcp/ip on a 100.


--
bkw


Re: [M100] RS232 Wifi Modem

2021-02-25 Thread Joshua O'Keefe
I originally bought some cabling to do serial transfers to an Amiga, and
wound up dedicating this setup to a permanent TPDD emulation setup at my
desk.  Just to record it for posterity, here are the products I use daily:

StarTech.com USB to Serial RS232 Adapter - DB9 Serial DCE Adapter Cable
with FTDI – Null Modem - USB 1.1 / 2.0 – Bus-Powered (ICUSB232FTN), Black
https://smile.amazon.com/gp/product/B008634VJY/
This is a null-wired cable with an FTDI chip and DB9 at the far end.

StarTech.com DB9 to DB25 Serial Adapter - M/F - Serial adapter - DB-9 (M)
to DB-25 (F) - AT925MF
https://smile.amazon.com/gp/product/B87RYP/
This is your typical 9-to-25 adapter

StarTech.com DB25 Slimline Gender Changer M/M - Serial / parallel gender
changer - DB-25 (M) to DB-25 (M) - GC25SM
https://smile.amazon.com/gp/product/B00066HP5G/
This is the usual M/M adapter, for my 102's upside down connector


Re: [M100] RS232 Wifi Modem

2021-02-25 Thread Brian K. White

On 2/25/21 8:59 PM, AvantGuard Systems wrote:

I ordered these earlier. Are they what I need?




https://is.gd/APPfOB  (StarTech.com DB9 to DB25 
Serial Cable Adapter - F/M - Serial adapter - DB-9 (F) to DB-25 (M) - 
AT925FM,Beige)


Not entirely nor elegantly, but it could be part of an ungainly stack of 
adapters that works.


This is only a 9-to-25 adapter, but you still need null-modem. So if you 
were to use this you would have to add a male/female mini null-modem 
adapter:

https://www.amazon.com/dp/B001TIP9AS/
and then stick the usb adapter onto that. It would make a 5 inch long 
rigid stack of connectors all hanging off the serial port sticking 
straight back... You could do that but that's terrible.



https://is.gd/vPYLed   (Sabrent USB 2.0 to Serial 
(9-Pin) DB-9 RS-232 Converter Cable, Prolific Chipset)



This will work, but it's not ideal, because it's based on a Prolific 
chip instead of an FTDI chip.


But, if you already ordered this, it's ok it will most likely work fine.


I would get this cable:
https://www.pccables.com/products/00103.html

That plus the usb adapter you already got is all you need.

Unless you're talking about Android and then you also need an OTG cable. 
But for a laptop or computer with a USB-A port, that's all you need.


The cables on that Model T Serial Cable page are not random. They have a 
particular combination of wiring and connectors that most cables don't have.


--
bkw


Re: [M100] Why not transfer with Telcom?

2021-02-25 Thread John R. Hogerhuis
In fact sending and receiving plain text is a common use case. In
particular it's important for bootstrapping a TPDD client.

That and the existence of tsdos ROM and REX is why I've never added a
bootstrap injector to LaddieAlpha.

Plain text is not related to FTP though. Ftp is a file transfer protocol
based on TCP/IP. And there is no TCP implementation for the model 100 as
far as I know.

If you want to serve files as plain ascii one way would be to put Linux
getty on a serial port and connect to that with TELCOM. Set capture and cat
the file.

-- John.

>
>


Re: [M100] Why not transfer with Telcom?

2021-02-25 Thread Joshua O'Keefe
On Feb 25, 2021, at 6:08 PM, AvantGuard Systems 
 wrote:
> So if I can upload and download files, why can't I build my own FTP SERVER? 
> or whatever server, put the program files on it and download them to the 
> Model100?

Unfortunately many programs are not plain ASCII text (BASIC is stored 
tokenized, and ML programs are pure binary) so TELCOM does not suffice.  If you 
want to transfer more than text, TS-DOS and a TPDD emulator is the most user 
friendly option.

[M100] Why not transfer with Telcom?

2021-02-25 Thread AvantGuard Systems
I can use Telcom and connect to BBS's. When on a session you have the
options to (I forget the exact terminology on the screen) UPLOAD, DOWNLOAD.

So if I can upload and download files, why can't I build my own FTP SERVER?
or whatever server, put the program files on it and download them to the
Model100?

 Curtis


Re: [M100] RS232 Wifi Modem

2021-02-25 Thread AvantGuard Systems
1 more questions (but there will likely be many more)

Will I need some special program on the Model100 in order to access the
"server." If so, what program?

 Curtis

On Thu, Feb 25, 2021 at 5:35 PM Brian K. White  wrote:

> On 2/25/21 6:55 PM, AvantGuard Systems wrote:
> > Steve, I found the mComm 2.5. It's for Windows. I see It's install
> > program is called Setup250.exe!
> > Ok, I have a Windows computer I can use. But maybe the linux one will
> > work as well.
>
> On linux you would use the python version of mComm, or dlplus, or
> LaddieAlpha since it does run with mono.
>
> I personally use dlplus on linux, but I will probably switch over to
> python mComm sooner or later because the python version can be made
> fully cross-platform more easily, and python is easier to hack on. It
> already is cross-platform, but I mean even with nice user-friendly
> packaging.
>
>  > Any additional instructions for getting the ModelT to connect to the
>  > computer running mcomm?
>
> This is how you connect it:
> http://tandy.wiki/Model_T_Serial_Cable
>
> That is the entire directions is just, ensure you have the right wiring
> in the serial cable, and these are several known-good cables you can buy
> already made, or follow that table to make your own, though the parts
> cost more than a full pre-made cable does.
>
> --
> bkw
>


Re: [M100] RS232 Wifi Modem

2021-02-25 Thread AvantGuard Systems
I ordered these earlier. Are they what I need?

https://is.gd/APPfOB (StarTech.com DB9 to DB25 Serial Cable Adapter - F/M -
Serial adapter - DB-9 (F) to DB-25 (M) - AT925FM,Beige)
https://is.gd/vPYLed  (Sabrent USB 2.0 to Serial (9-Pin) DB-9 RS-232
Converter Cable, Prolific Chipset)

 Curtis

On Thu, Feb 25, 2021 at 5:35 PM Brian K. White  wrote:

> On 2/25/21 6:55 PM, AvantGuard Systems wrote:
> > Steve, I found the mComm 2.5. It's for Windows. I see It's install
> > program is called Setup250.exe!
> > Ok, I have a Windows computer I can use. But maybe the linux one will
> > work as well.
>
> On linux you would use the python version of mComm, or dlplus, or
> LaddieAlpha since it does run with mono.
>
> I personally use dlplus on linux, but I will probably switch over to
> python mComm sooner or later because the python version can be made
> fully cross-platform more easily, and python is easier to hack on. It
> already is cross-platform, but I mean even with nice user-friendly
> packaging.
>
>  > Any additional instructions for getting the ModelT to connect to the
>  > computer running mcomm?
>
> This is how you connect it:
> http://tandy.wiki/Model_T_Serial_Cable
>
> That is the entire directions is just, ensure you have the right wiring
> in the serial cable, and these are several known-good cables you can buy
> already made, or follow that table to make your own, though the parts
> cost more than a full pre-made cable does.
>
> --
> bkw
>


Re: [M100] RS232 Wifi Modem

2021-02-25 Thread Brian K. White

On 2/25/21 6:55 PM, AvantGuard Systems wrote:
Steve, I found the mComm 2.5. It's for Windows. I see It's install 
program is called Setup250.exe!
Ok, I have a Windows computer I can use. But maybe the linux one will 
work as well.


On linux you would use the python version of mComm, or dlplus, or 
LaddieAlpha since it does run with mono.


I personally use dlplus on linux, but I will probably switch over to 
python mComm sooner or later because the python version can be made 
fully cross-platform more easily, and python is easier to hack on. It 
already is cross-platform, but I mean even with nice user-friendly 
packaging.


> Any additional instructions for getting the ModelT to connect to the
> computer running mcomm?

This is how you connect it:
http://tandy.wiki/Model_T_Serial_Cable

That is the entire directions is just, ensure you have the right wiring 
in the serial cable, and these are several known-good cables you can buy 
already made, or follow that table to make your own, though the parts 
cost more than a full pre-made cable does.


--
bkw


Re: [M100] RS232 Wifi Modem

2021-02-25 Thread John R. Hogerhuis
On Thu, Feb 25, 2021 at 3:55 PM AvantGuard Systems <
cavaug...@avantguardsystems.com> wrote:

> Steve, I found the mComm 2.5. It's for Windows. I see It's install
> program is called Setup250.exe!
> Ok, I have a Windows computer I can use. But maybe the linux one will work
> as well.
>
>>
>>>
There are mComm versions for Windows and Android.

dlplus targets Linux.

LaddieAlpha runs on most versions of Windows, Linux, OSX on .NET or Mono.
It even ran on Windows for a while (I don't think it does any more because
it  is compiled against newer .NET run times than existed for 98).

All do pretty much the same thing though dlplus and mComm have bootstrap
injectors. For LaddieAlpha you either use TS-DOS ROM or you have to
bootstrap with a terminal program.

Basically, you need some software on the Model T to be the client while
whatever program you pick for the other side is the server.

-- John.


Re: [M100] RS232 Wifi Modem

2021-02-25 Thread AvantGuard Systems
Steve, I found the mComm 2.5. It's for Windows. I see It's install
program is called Setup250.exe!
Ok, I have a Windows computer I can use. But maybe the linux one will work
as well.

Any additional instructions for getting the ModelT to connect to the
computer running mcomm?

 Curtis Vaughan  |  Computer Consultant
   AvantGuard Computer and Security Systems
   Phone: (206) 423-6979 ▪ Web: www.avantguardsystems.com


On Thu, Feb 25, 2021 at 3:45 PM AvantGuard Systems <
cavaug...@avantguardsystems.com> wrote:

> Steve,
> I like your set up. I see mcomm 1.20 on club100, but not a 2.50 version. I
> am running linux.
>
> http://www.club100.org/memfiles/index.php?=0==Kurt%20McCullum/mComm%20Python
>
>  Curtis Vaughan  |  Computer Consultant
>AvantGuard Computer and Security Systems
>Phone: (206) 423-6979 ▪ Web: www.avantguardsystems.com
>
>
> On Wed, Feb 24, 2021 at 3:20 PM Steve Baker 
> wrote:
>
>> Hello Curtis!
>>
>> You’re pursuing quite an adventure there, that’s for sure! I’m not sure
>> what your “ideal” situation would be, but if my setup helps then I’d be
>> happy to make a quick video and provide links to the standard cables that I
>> use (no need to rewire or create anything).
>>
>> For transferring files back and forth between the Model T and the
>> computer, my setup is from the Model T —> DB25 Male to DB9 Female cable —>
>> DB9 male to USB cable —> USB port in my computer —> mComm 2.50 program
>> (which is a really good one).
>>
>> It’s super easy to send and receive files using this setup, but if your
>> preference is to use an Android device or something, then sorry I can’t
>> help as I have not yet connected to anything fun like that. So… let me know
>> if this setup would be of any interest to you.
>>
>> Cheers and thanks,
>> Steve
>>
>>
>> --
>> Greetings from Steve Baker
>> “Gravity brings me down…”
>>
>>
>>
>> On Feb 24, 2021, at 3:43 PM, AvantGuard Systems <
>> cavaug...@avantguardsystems.com> wrote:
>>
>> Now I'm re-reading the Club100 instructions and it looks like I have to
>> use the RS232 jack. That really changes things.
>> The instructions say the best solution is to solder the wires to the DB25
>> connector. Where? The pin out makes no sense to me.
>>
>>
>>  Curtis
>>
>> On Wed, Feb 24, 2021 at 11:45 AM AvantGuard Systems <
>> cavaug...@avantguardsystems.com> wrote:
>>
>>> OK, so it seems like the easiest thing for me to try for now is using an
>>> Android device, which I have plenty of. I've installed the mcomm program
>>> from Club100's website. Now I just have to figure out the proper pin out
>>> for a DB9 cable. Let me explain.
>>> I have a Cisco DB9 to RJ45 cord.
>>> The pin out is explained here:
>>> https://allpinouts.org/pinouts/cables/serial/cisco-console-rj45-to-db9-pin/
>>> When I look at the instructions on Club100 it looks like only pins 2-8
>>> are used.
>>>
>>> HOWEVER! I'm no electrician, but I tested each pin for the DB9 to RJ45
>>> and here's how they came out. First item is the DB9 pin and the second the
>>> RJ45 from the top (the side without the clip).
>>>
>>> 1 > 2
>>> 2 nowhere
>>> 3 > 6
>>> 4 > 7
>>> 5 > 4
>>> 6 > 2
>>> 7 > 8
>>> 8 > 1
>>> 9 nowhere
>>>
>>> Looking at various Cisco charts however, it seems to me that I'm reading
>>> things completely wrong. That the RJ45 should be read not from left to
>>> right, but the other way. And this lines up more with various Cisco docs.
>>> So that get us:
>>>
>>> 1 > 7
>>> 2 nowhere
>>> 3 > 3
>>> 4 > 2
>>> 5 > 5
>>> 6 > 7
>>> 7 > 1
>>> 8 > 8
>>> 9 nowhere
>>>
>>> My question is what is the right pin out as I could rewire however I
>>> want easily. Cut off the old jack and put in a new one.
>>>
>>> Thanks!
>>>
>>>  Curtis
>>>
>>> On Tue, Feb 23, 2021 at 4:58 PM Brian K. White 
>>> wrote:
>>>
 On 2/23/21 6:38 PM, AvantGuard Systems wrote:
 > Now, I'm wondering whether there's a way to transfer files from my
 > computer to the M100.

 Many ways.

 How to decide which of the many ways depends on what your priorities
 are, convenience or cost, and on what you have available for a modern
 machine.

 For instance one super convenient option is there is an Android app
 that
 is both a TPDD server and TPDD client installer/bootstrapper. You don't
 have to buy anything but the serial cable and usb adapter, but you
 always need that anyway. But that's only super convenient if you happen
 to have an Android phone or tablet. And I suppose only if moving files
 to a phone instead of your real computer is good enough, maybe via
 google drive.

 The generally most convenient and robust way is a serial cable and a
 TPDD emulator and a REX#.

 Whatever other software or hardware you use, you pretty much always
 need
 this cable:
 http://tandy.wiki/Model_T_Serial_Cable

 Then there are several different things you can do that are all
 different levels 

Re: [M100] RS232 Wifi Modem

2021-02-25 Thread AvantGuard Systems
Steve,
I like your set up. I see mcomm 1.20 on club100, but not a 2.50 version. I
am running linux.
http://www.club100.org/memfiles/index.php?=0==Kurt%20McCullum/mComm%20Python

 Curtis Vaughan  |  Computer Consultant
   AvantGuard Computer and Security Systems
   Phone: (206) 423-6979 ▪ Web: www.avantguardsystems.com


On Wed, Feb 24, 2021 at 3:20 PM Steve Baker  wrote:

> Hello Curtis!
>
> You’re pursuing quite an adventure there, that’s for sure! I’m not sure
> what your “ideal” situation would be, but if my setup helps then I’d be
> happy to make a quick video and provide links to the standard cables that I
> use (no need to rewire or create anything).
>
> For transferring files back and forth between the Model T and the
> computer, my setup is from the Model T —> DB25 Male to DB9 Female cable —>
> DB9 male to USB cable —> USB port in my computer —> mComm 2.50 program
> (which is a really good one).
>
> It’s super easy to send and receive files using this setup, but if your
> preference is to use an Android device or something, then sorry I can’t
> help as I have not yet connected to anything fun like that. So… let me know
> if this setup would be of any interest to you.
>
> Cheers and thanks,
> Steve
>
>
> --
> Greetings from Steve Baker
> “Gravity brings me down…”
>
>
>
> On Feb 24, 2021, at 3:43 PM, AvantGuard Systems <
> cavaug...@avantguardsystems.com> wrote:
>
> Now I'm re-reading the Club100 instructions and it looks like I have to
> use the RS232 jack. That really changes things.
> The instructions say the best solution is to solder the wires to the DB25
> connector. Where? The pin out makes no sense to me.
>
>
>  Curtis
>
> On Wed, Feb 24, 2021 at 11:45 AM AvantGuard Systems <
> cavaug...@avantguardsystems.com> wrote:
>
>> OK, so it seems like the easiest thing for me to try for now is using an
>> Android device, which I have plenty of. I've installed the mcomm program
>> from Club100's website. Now I just have to figure out the proper pin out
>> for a DB9 cable. Let me explain.
>> I have a Cisco DB9 to RJ45 cord.
>> The pin out is explained here:
>> https://allpinouts.org/pinouts/cables/serial/cisco-console-rj45-to-db9-pin/
>> When I look at the instructions on Club100 it looks like only pins 2-8
>> are used.
>>
>> HOWEVER! I'm no electrician, but I tested each pin for the DB9 to RJ45
>> and here's how they came out. First item is the DB9 pin and the second the
>> RJ45 from the top (the side without the clip).
>>
>> 1 > 2
>> 2 nowhere
>> 3 > 6
>> 4 > 7
>> 5 > 4
>> 6 > 2
>> 7 > 8
>> 8 > 1
>> 9 nowhere
>>
>> Looking at various Cisco charts however, it seems to me that I'm reading
>> things completely wrong. That the RJ45 should be read not from left to
>> right, but the other way. And this lines up more with various Cisco docs.
>> So that get us:
>>
>> 1 > 7
>> 2 nowhere
>> 3 > 3
>> 4 > 2
>> 5 > 5
>> 6 > 7
>> 7 > 1
>> 8 > 8
>> 9 nowhere
>>
>> My question is what is the right pin out as I could rewire however I want
>> easily. Cut off the old jack and put in a new one.
>>
>> Thanks!
>>
>>  Curtis
>>
>> On Tue, Feb 23, 2021 at 4:58 PM Brian K. White 
>> wrote:
>>
>>> On 2/23/21 6:38 PM, AvantGuard Systems wrote:
>>> > Now, I'm wondering whether there's a way to transfer files from my
>>> > computer to the M100.
>>>
>>> Many ways.
>>>
>>> How to decide which of the many ways depends on what your priorities
>>> are, convenience or cost, and on what you have available for a modern
>>> machine.
>>>
>>> For instance one super convenient option is there is an Android app that
>>> is both a TPDD server and TPDD client installer/bootstrapper. You don't
>>> have to buy anything but the serial cable and usb adapter, but you
>>> always need that anyway. But that's only super convenient if you happen
>>> to have an Android phone or tablet. And I suppose only if moving files
>>> to a phone instead of your real computer is good enough, maybe via
>>> google drive.
>>>
>>> The generally most convenient and robust way is a serial cable and a
>>> TPDD emulator and a REX#.
>>>
>>> Whatever other software or hardware you use, you pretty much always need
>>> this cable:
>>> http://tandy.wiki/Model_T_Serial_Cable
>>>
>>> Then there are several different things you can do that are all
>>> different levels of convenient, reliable, binary-safe, expensive,
>>> requiring special cables or parts or software, etc.
>>>
>>> You can use just the plain built-in telcom app and teraterm-pro or putty
>>> or really any serial comm program on the modern machine to transfer
>>> plain text. This gets you text documents and *some* basic programs but
>>> not all, maybe not all database/spreadsheet files either, definitely no
>>> tokenized basic and no binary executables.
>>> The advantage here is you don't have to buy anything but the serial
>>> cable and usb-serial adapter, and don't have to somehow get software
>>> installed onto the 100 the first time before you can start using it. But
>>> it's limited 

Re: [M100] REXCPM 2M vs 4M

2021-02-25 Thread Jim Anderson
> -Original Message-
> Correct Jim, it hasn't been fixed yet. After Easter I can get back to
> it.

That'll be awesome, thanks for the update!  For now, it's incentive to keep my 
CP/M file count from bloating out of control :)







jim



Re: [M100] REXCPM 2M vs 4M

2021-02-25 Thread Philip Avery

Correct Jim, it hasn't been fixed yet. After Easter I can get back to it.

Philip

On 26/02/2021 11:56 am, Jim Anderson wrote:

-Original Message-
For the record, I did end up successfully upgrading a 2M REXCPM to 4M
using the RMLV3216AGSA linked below.

This reminds me... did I miss an announcement, or is the release of a CP/M 
image for the 4MB REX with increased directory entries still pending?  The 
current image linked on http://bitchin100.com/wiki/index.php?title=M100_CP/M is 
CPM410.BK which is the same filename as I have, so unless it's posted somewhere 
else I guess it hasn't been fixed yet.







 jim





Re: [M100] REXCPM 2M vs 4M

2021-02-25 Thread Jim Anderson
> -Original Message-
> For the record, I did end up successfully upgrading a 2M REXCPM to 4M
> using the RMLV3216AGSA linked below.

This reminds me... did I miss an announcement, or is the release of a CP/M 
image for the 4MB REX with increased directory entries still pending?  The 
current image linked on http://bitchin100.com/wiki/index.php?title=M100_CP/M is 
CPM410.BK which is the same filename as I have, so unless it's posted somewhere 
else I guess it hasn't been fixed yet.







jim



Re: [M100] REXCPM 2M vs 4M

2021-02-25 Thread Brian K. White



For the record, I did end up successfully upgrading a 2M REXCPM to 4M 
using the RMLV3216AGSA linked below.


The only special note other than "how to desoldering alloy" and "how to 
drag solder" was that the epoxy holding the copper on the pcb is weak. 
Be exceedingly gentle wicking up the desoldering alloy, don't scrub, and 
even with gentle wiping, only move in the same direction as the the 
pads, don't wipe them sideways. Blot-lift-move-blot instead. One of the 
teeny pads for the sram shifted sideways on me even though I was being 
careful. I was able to nudge it back into place eever so carefully 
without breaking the trace and solder the new chip.


Other than that it was straightforward. The pin-1 corner is marked on 
the silkscreen, and there was nothing special to do, just solder the 
chip and load the same firmware, only using the 4M cpm file.


Thus do I publicly waive any hint of warranty on my rexcpm. ;)

Also the dlplus bootstrap option can be used for rxctst.DO too.
dl -b./rxctst.DO    and   RUN "COM:98N1EN"   and it runs all the tests 
on the rexcpm.


--
bkw


On 6/29/20 9:29 PM, Brian K. White wrote:


$56 for a single
https://www.digikey.com/product-detail/en/cypress-semiconductor-corp/CY62177EV30LL-55ZXI/428-3278-ND/2188331 



This looks compatible for $26 for a single
https://www.digikey.com/product-detail/en/renesas-electronics-america/RMLV3216AGSA-5S2-AA0/RMLV3216AGSA-5S2-AA0-ND/9650085 



$32 at Mouser
https://www.mouser.com/Semiconductors/Memory-ICs/SRAM/_/N-4bzpt?P=1z0w8ge

It even seems to have a lower standby current. The Cypress data sheet 
says 3uA and the Renesas says 0.6uA


If I buy one of these myself and solder it, will that be enough other 
than re-programming?


$26 is a lot, and I wouldn't expect you to buy 100 of them for $2400 
but, if I want it, and assuming a perfect solder job, is there 
anything else besides a reflash required to make it work?


Obviously, it's a given that all concept of warranty and liability 
goes out the window instantly.







--
bkw



Re: [M100] printer port

2021-02-25 Thread Ken Pettit

I can already confirm that this works.

This is exactly how I did it back when I actually had time to sell 
things through Club100 (prior to having kids that is).  I manufactured 
and sold probably 2 dozen new printer cables by doing this very same 
proceedure.  I would purchase 25 foot rolls of x26 flat ribbon cable, 
IDC 26 female connectors and Centronics connectors and crimp them 
myself.  They work great.


Ken

On 2/25/21 12:13 AM, jonathan.y...@telia.com wrote:

Hi,

I think I actually did try that once and it did work but it was ages 
ago when I had a printer with a parallel port.  Wait, the HP LJ IV 
still has one it still works(30 year-old printer.) If I 
can find one of those parallel port cables floating around I can try 
and confirm it.


Jonathan

Ursprungligt meddelande
Från : jho...@pobox.com
Datum : 2021-02-25 - 03:50 (CEST)
Till : m...@bitchin100.com
Ämne : Re: [M100] printer port



On Wed, Feb 24, 2021 at 6:48 PM Brian K. White <
b.kenyo...@gmail.com
mailto:b.kenyo...@gmail.com');return
false;>> wrote:

On 2/24/21 9:34 PM, John R. Hogerhuis wrote:
> The thickened plot: that LPT port connector wiring... is
some kind of
> "standard" such that that the typical parallel port
motherboard IDC
> connector to DB-25F used in building a PC works with the
Model T. As in,
> you an connect that ribbon table to the Model T, and then to
a printer
> cable.

wat?  That's pretty neat.


Yep. But for hearing it from others and then having tried it
myself, I'd have figured it was pure Baloney Sandwich.

-- John.






Re: [M100] printer port

2021-02-25 Thread jonathan.y...@telia.com
Hi,
I think I actually did try that once and it did work but it was ages ago when I 
had a printer with a parallel port.  Wait, the HP LJ IV still has one it still 
works(30 year-old printer.) If I can find one of those parallel 
port cables floating around I can try and confirm it.
Jonathan
Ursprungligt meddelande
Från : jho...@pobox.com
Datum : 2021-02-25 - 03:50 (CEST)
Till : m...@bitchin100.com
Ämne : Re: [M100] printer port
 
  
 
 
 
  
   On Wed, Feb 24, 2021 at 6:48 PM Brian K. White <
   b.kenyo...@gmail.com> wrote:
   
  
  
   On 2/24/21 9:34 PM, John R. Hogerhuis wrote:
   
 > The thickened plot: that LPT port connector wiring... is some kind of 
   
 > "standard" such that that the typical parallel port motherboard IDC 
   
 > connector to DB-25F used in building a PC works with the Model T. As in, 
   
 > you an connect that ribbon table to the Model T, and then to a printer 
   
 > cable.
   
   
 wat?  That's pretty neat.
   
   
  
  
   
  
  
   Yep. But for hearing it from others and then having tried it myself, I'd 
have figured it was pure Baloney Sandwich. 
   
   
-- John.