Why Doesn't stdaux Exist When Programming Serial Ports in C?

Click For Summary
SUMMARY

The discussion clarifies that the term "stdaux" is not a valid reference for serial port programming in C, as confirmed by users utilizing Dev-C++ on Windows and gcc on Linux. Instead, programming serial ports requires using the Windows API for Windows systems and specific libraries for Linux. Key configurations include setting the data rate to 9600 baud, 8 data bits, no parity, and 1 stop bit. The conversation emphasizes the necessity of including appropriate header files to interface with the serial port hardware effectively.

PREREQUISITES
  • Understanding of serial port communication standards
  • Familiarity with C programming language
  • Knowledge of Windows API for serial communication
  • Experience with Linux serial port libraries
NEXT STEPS
  • Research "Windows API serial port programming" for Windows applications
  • Explore "Linux serial port programming libraries" for Linux applications
  • Learn about "serial port configuration parameters" such as baud rate and data bits
  • Investigate "C header files for serial communication" to find useful libraries
USEFUL FOR

Software developers, particularly those working with embedded systems or hardware interfacing, as well as anyone interested in programming serial ports in C on either Windows or Linux platforms.

Grotesque Puppet
Messages
41
Reaction score
0
In my C book it says that the serial port is stdaux, but when I make a program to send data to stdaux the compiler (Dev-C++ in Windows and gcc in linux) says that stdaux doesn't exist :frown: Can anyone explain or point me toward a good tutorial about using the serial ports in C?

Thanks
 
Computer science news on Phys.org
using serial ports

Hi

The serial port has been around and in use over 50 years. Some of the standards may seem odd, like signal names? why all those pins if we only use 3? Whats with data set ready, CTS, DCD? Realize those were for older systems and teletype equipment.

What we use today is a simple interface, it assumes the cable is fine and it tends to easily spout data across.

From the program, what you need to do is configure and talk to the communications chip that drives the serial port, it handles moving the data.

You have to set the data rate, start/stop bits usually 9600 baud, 8 bits no parity 1 stop, so its 9600, 8, N, 1 almost all the time.

To approach 100K speeds it can take some extra work; but generally I find it easiest to begin at 9600 to establish the link, then try for higher data rates.

Your program will have to have some include file like a .h to "drive" the serial port chip. you could call the stdaux function, which would then have to figure out how to program/talk to the serial port chip. COM1/2 are fixed addresses in a PC, locked into the hardware. If I recall you get 8 bytes to address, one of those is the actual data, another is a status byte, another a config byte? something like that.

You would, depending on your include file, either write bytes or write to a buffer area (or read) The functionality comes from that file, you could write your own but there should be great ones out in virtual cyberspace
 
Last edited:

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
69
Views
11K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K
Replies
73
Views
7K
  • · Replies 3 ·
Replies
3
Views
5K
  • · Replies 1 ·
Replies
1
Views
3K