Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

PC Serial port 128kbps?

Status
Not open for further replies.

mike2002

Member level 2
Joined
Sep 16, 2002
Messages
47
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Location
c/c++ programming
Activity points
328
Does anybody know if I would be able to transfer data from microcontroller
to PC serial port with speed 128kbps? Cable length 6ft.
Any terminal program available to achieve this?

Thanks
 

On many PC serial ports, you configure the UART's baud rate generator with an integer code word calculated like this in C:

unsigned baudcode = (230400 / baud + 1) / 2;

The value 128k is not available. The nearest is 115.2k.

However, your particular serial interface may have more flexibility.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top