Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Serial mouse in COM1?  (Read 2378 times)

0 Members and 1 Guest are viewing this topic.

Cityscape

    Topic Starter


    Adviser

  • Running Debian 8, Linux Mint and Windows 10.
  • Thanked: 15
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Experienced
  • OS: Linux variant
Serial mouse in COM1?
« on: November 21, 2009, 04:11:40 PM »
I have an old 1993ish computer with no mouse port in it. Could I use a serial mouse? I have a COM1 port, is that the right kind of port for a serial mouse?

Allan

  • Moderator

  • Mastermind
  • Thanked: 1260
  • Experience: Guru
  • OS: Windows 10
Re: Serial mouse in COM1?
« Reply #1 on: November 21, 2009, 04:14:16 PM »
Yep

Cityscape

    Topic Starter


    Adviser

  • Running Debian 8, Linux Mint and Windows 10.
  • Thanked: 15
    • Yes
  • Certifications: List
  • Computer: Specs
  • Experience: Experienced
  • OS: Linux variant
Re: Serial mouse in COM1?
« Reply #2 on: November 21, 2009, 11:25:05 PM »
Okay, and what's the differance between a COM port and a LTP port?

BC_Programmer


    Mastermind
  • Typing is no substitute for thinking.
  • Thanked: 1140
    • Yes
    • Yes
    • BC-Programming.com
  • Certifications: List
  • Computer: Specs
  • Experience: Beginner
  • OS: Windows 11
Re: Serial mouse in COM1?
« Reply #3 on: November 22, 2009, 12:56:01 AM »
YOu mean physically or purpose-wise?

COM ports come in two varieties- a DB-15 (I think it's 15) male (wide) and a DB-9 male. LPT ports are DB-25 female (Line PrinTer, I believe it stands for) are for, at least initially, Parallel communications in one direction with the printer. Later enhancements 9such as ECP and EPP) allow both bidirectional communication with devices as well as the exchange of state information between the PC and the Parallel device.

Parallel Ports and Serial Ports transfer data just as their names suggest. a Parallel port sends data 1 byte at a time, through 8 lanes, each representing a bit. a clock control signal determines the speed of this exchange, which is generally is quite low, compared to more modern interfaces.

Serial ports, while possessing many pins, only communicate a single bit at a time. a large number of the lines in a serial connection  are unused, possibly integrated  for the future expansion. the Serial transfer speed is generally quite low; usually even lower then Parallel ports, but have been bidirection since their inception. The main reason for such low transfer speeds lies in the nature of the serial ports controller chip- the UART chip, which comes in a few revisions. The limited nature of the early chips and the fact that the architecture must remain compatible means that in general the Serial port is one of the slowest external transfer interfaces that a PC has, and in the early days, the only one.
I was trying to dereference Null Pointers before it was cool.