Skip to content
This repository has been archived by the owner on Jan 7, 2024. It is now read-only.

Commit

Permalink
Code indentation. Library fixed (ref. issue #8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Visintin committed Nov 3, 2018
1 parent e6685b2 commit 6fb0f38
Show file tree
Hide file tree
Showing 2 changed files with 433 additions and 440 deletions.
220 changes: 115 additions & 105 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# termiWin
### ~ A termios porting for Windows ~

Current Version 1.1.3 (07/04/2018)
~ A termios porting for Windows ~

Current Version 1.1.4 (03/11/2018)

## Introduction

Expand All @@ -13,140 +14,146 @@ This is possible because termios’s functions have been rewritten to be compati
### The termios Structure

This is the main structure of the library and it’s often passed as argument to the functions, it has the following members:
* tcflag_t c_iflag; /\*input modes\*/</br>
* tcflag_t c_oflag; /\*output modes\*/</br>
* tcflag_t c_cflag; /\*control modes\*/</br>
* tcflag_t c_lflag; /\*local modes\*/</br>
* cc_t c_cc[NCCS]; /\*special character\*/</br>
where tcflag_t is defined as an unsigned integer.</br>

* tcflag_t c_iflag; /\*input modes\*/
* tcflag_t c_oflag; /\*output modes\*/
* tcflag_t c_cflag; /\*control modes\*/
* tcflag_t c_lflag; /\*local modes\*/
* cc_t c_cc[NCCS]; /\*special character\*/

where tcflag_t is defined as an unsigned integer.

The members of termios structure are used to set and retrieve the serial port configuration parameters.
There five types of flags, sorted by mode; they are implemented in the same way as they are in termios, except for some, which are not used.

#### Input modes flags

* INPCK – Not implemented, use PARENB instead.
* IGNPAR – Not implemented, disable PARENB instead.
* PARMRK – Not implemented, use PARENB instead.
* ISTRIP – Not implemented, use CS7 instead.
* IGNBRK – Not implemented.
* IGNCR – Not implemented.
* ICRNL – Not implemented.
* INLCR – Not implemented.
* IXOFF - If this bit is set, start/stop control on input is enabled. In other words, the computer sends STOP and START characters as necessary to prevent input from coming in faster than programs are reading it. The idea is that the actual terminal hardware that is generating the input data responds to a STOP character by suspending transmission, and to a START character by resuming transmission.
* IXON - If this bit is set, start/stop control on output is enabled. In other words, if the computer receives a STOP character, it suspends output until a START character is received. In this case, the STOP and START characters are never passed to the application program. If this bit is not set, then START and STOP can be read as ordinary characters.
* INPCK – Not implemented, use PARENB instead.
* IGNPAR – Not implemented, disable PARENB instead.
* PARMRK – Not implemented, use PARENB instead.
* ISTRIP – Not implemented, use CS7 instead.
* IGNBRK – Not implemented.
* IGNCR – Not implemented.
* ICRNL – Not implemented.
* INLCR – Not implemented.
* IXOFF - If this bit is set, start/stop control on input is enabled. In other words, the computer sends STOP and START characters as necessary to prevent input from coming in faster than programs are reading it. The idea is that the actual terminal hardware that is generating the input data responds to a STOP character by suspending transmission, and to a START character by resuming transmission.
* IXON - If this bit is set, start/stop control on output is enabled. In other words, if the computer receives a STOP character, it suspends output until a START character is received. In this case, the STOP and START characters are never passed to the application program. If this bit is not set, then START and STOP can be read as ordinary characters.

#### Local modes flags

Since there’s no way to implement them in Windows, they have asbolutely no effect using termiWin, but you can keep the same you use in Linux for compatibilty.

#### Control modes flags

* CSTOPB - If this bit is set, two stop bits are used. Otherwise, only one stop bit is used.
* PARENB - If this bit is set, generation and detection of a parity bit are enabled.
* PARODD - This bit is only useful if PARENB is set. If PARODD is set, odd parity is used, otherwise even parity is used.
* CSIZE - This is a mask for the number of bits per character.
* CS5 - This specifies five bits per byte.
* CS6 – This specifies six bits per byte.
* CS7 – This specifies seven bits per byte.
* CS8 – This specifies eight bits per byte.
* CLOCAL – Is used in termios for ignoring the data carrier detected, but in Windows it can't be implemented
* CREAD – In termios, if not set, no character will be received, but in Windows it can't be implemented
* CSTOPB - If this bit is set, two stop bits are used. Otherwise, only one stop bit is used.
* PARENB - If this bit is set, generation and detection of a parity bit are enabled.
* PARODD - This bit is only useful if PARENB is set. If PARODD is set, odd parity is used, otherwise even parity is used.
* CSIZE - This is a mask for the number of bits per character.
* CS5 - This specifies five bits per byte.
* CS6 – This specifies six bits per byte.
* CS7 – This specifies seven bits per byte.
* CS8 – This specifies eight bits per byte.
* CLOCAL – Is used in termios for ignoring the data carrier detected, but in Windows it can't be implemented
* CREAD – In termios, if not set, no character will be received, but in Windows it can't be implemented

#### Output modes flags

Since there’s no way to implement them in Windows, they have asbolutely no effect using termiWin, but you can keep the same you use in Linux for compatibilty.

#### Special character array

* VEOF – Is the EOF character to be used during the communication.
* VEOL – Not implemented.
* VERASE – Not implemented.
* VINTR – Interrupt character.
* VKILL – Not implemented.
* VMIN – If set to 0, the port is set to not-blocking, otherwise to blocking.
* VQUIT – Not implemented.
* VSTART – Not implemented.
* VSTOP – Not implemented.
* VSUSP – Not implemented.
* VTIME – Timeout for reading operations when COM is set to not-blocking.
* VEOF – Is the EOF character to be used during the communication.
* VEOL – Not implemented.
* VERASE – Not implemented.
* VINTR – Interrupt character.
* VKILL – Not implemented.
* VMIN – If set to 0, the port is set to not-blocking, otherwise to blocking.
* VQUIT – Not implemented.
* VSTART – Not implemented.
* VSTOP – Not implemented.
* VSUSP – Not implemented.
* VTIME – Timeout for reading operations when COM is set to not-blocking.

### Serial configuration functions

#### Int tcgetattr(int fd, struct termios \*termios_p);
#### Int tcgetattr(int fd, struct termios \*termios_p)

Sets in the internal DCB structures the current serial port parameters, it
always has to be invoked before using tcsetattr.
Returns 0 if succeded, otherwise -1.

#### int tcsetattr(int fd, int optional_actions, struct termios \*termios_p);
#### int tcsetattr(int fd, int optional_actions, struct termios \*termios_p)

Reads the flags set in the termios structure and sets the properly
parameters in the DCB structure and eventually it applies the parameters to the serial port.
Reads the flags set in the termios structure and sets the properly
parameters in the DCB structure and eventually it applies the parameters to the serial port.
Returns 0 if succeded, otherwise -1.

#### int tcsendbreak(int fd, int duration);
#### int tcsendbreak(int fd, int duration)

Sends a break character to the serial port; duration is not implemented.
Sends a break character to the serial port; duration is not implemented.
Returns 0 if succeded, otherwise -1.

#### int tcdrain(int fd);
#### int tcdrain(int fd)

Waits until all output written to the serial port has been transmitted.
Waits until all output written to the serial port has been transmitted.
Returns 0 if succeded, otherwise -1.

#### Int tcflush(int fd, int queue_selector);
#### Int tcflush(int fd, int queue_selector)

Discards data on serial port. queue_selector can assume the following values:
* TCIFLUSH (discards data received but still not read).
* TCOFLUSH (discards data written but still not transmitted),
* TCIOFLUSH (discards both data received but still not read and data written but still not transmitted).
Discards data on serial port. queue_selector can assume the following values:

* TCIFLUSH (discards data received but still not read).
* TCOFLUSH (discards data written but still not transmitted),
* TCIOFLUSH (discards both data received but still not read and data written but still not transmitted).

Returns 0 if succeded, otherwise -1.

#### Int tcflow(int fd, int action);
#### Int tcflow(int fd, int action)

Suspends transmission or receptions of data on serial port based on action. Action can assume the following values:

* TCOON restarts suspended output.
* TCIOFF transmits a STOP character.
* TCION transmits a START character.
* TCOOF suspends output.

Suspends transmission or receptions of data on serial port based on action. Action can assume the following values:
* TCOON restarts suspended output.
* TCIOFF transmits a STOP character.
* TCION transmits a START character.
* TCOOF suspends output.
Returns 0 if succeded, otherwise -1.

Returns 0 if succeded, otherwise -1.
#### Void cfmakeraw(struct termios \*termios_p)

#### Void cfmakeraw(struct termios \*termios_p);
Sets but doesn’t commit the following options for the serial port:

Sets but doesn’t commit the following options for the serial port:
* Charset: 8 bits
* StopBits: one stop bit
* Parity: no parity
* Charset: 8 bits
* StopBits: one stop bit
* Parity: no parity

Use tcsetattr to commit them.

#### speed_t cfgetispeed(const struct termios \*termios_p);
#### speed_t cfgetispeed(const struct termios \*termios_p)

Returns the input speed, speed can assume the same values of termios (B9600, B115200, …).

Returns the input speed, speed can assume the same values of termios (B9600, B115200, …).
#### speed_t cfgetospeed(const struct termios \*termios_p)

#### speed_t cfgetospeed(const struct termios \*termios_p);
returns the output speed, speed can assume the same values of termios (B9600, B115200, …).

returns the output speed, speed can assume the same values of termios (B9600, B115200, …).
#### int cfsetispeed(struct termios \*termios_p, speed_t speed)

#### int cfsetispeed(struct termios \*termios_p, speed_t speed);
Sets, but doesn’t commits the parameter of speed for the serial port (in Windows there’s no distinction between
input/output /control), speed can assume the same values of termios (B9600, B115200, …).

Sets, but doesn’t commits the parameter of speed for the serial port (in Windows there’s no distinction between
input/output /control), speed can assume the same values of termios (B9600, B115200, …).
Returns 0 if succeded, otherwise -1.

#### int cfsetospeed(struct termios \*termios_p, speed_t speed);
#### int cfsetospeed(struct termios \*termios_p, speed_t speed)

Sets, but doesn’t commits the parameter of speed for the serial port (in Windows there’s no distinction between input/output
/control), speed can assume the same values of termios (B9600, B115200, ...).
Returns 0 if succeded, otherwise -1.
/control), speed can assume the same values of termios (B9600, B115200, ...).
Returns 0 if succeded, otherwise -1.

#### int cfsetsspeed(struct termios \*termios_p, speed_t speed);
#### int cfsetsspeed(struct termios \*termios_p, speed_t speed)

Sets, but doesn’t commits the parameter of speed for the serial port (in Windows there’s no distinction between input/output
/control), speed can assume the same values of termios (B9600, B115200, ...).
/control), speed can assume the same values of termios (B9600, B115200, ...).
Returns 0 if succeded, otherwise -1.

#### Supported speed
Expand All @@ -168,42 +175,42 @@ The supported speeds are the the following (not all speeds could be implemented
### Serial transmission/receiving - open/close Functions

**You can use open/close/write/read/select instead of these names by default. If it causes to you conflicts with another library you can deactivate these definitions defining in your project:**
`C

```C
#define TERMIWIN_DONOTREDEFINE
`
```

#### Int openSerial(char* portname, int opt);
#### Int openSerial(char* portname, int opt)

Open the serial port which name is portname with opt set for the port to be read only, write only or both read/write (O_RDONLY,
O_WRONLY, O_RDWR). Returns the file descriptor (fd is actually useless in Windows with serial ports, but is set for
compatibilty). The function can be called using open instead of openSerial (for termios compatibilty).
The portname must be in the format "COMnumber" (e.g. COM2, COM11).
The portname must be in the format "COMnumber" (e.g. COM2, COM11).

#### Int closeSerial(int fd);
#### Int closeSerial(int fd)

Closes the serial port.
Returns 0 if succeded, otherwise -1. The function can be called using close instead of closeSerial
(for termios compatibilty).
Closes the serial port.
Returns 0 if succeded, otherwise -1. The function can be called using close instead of closeSerial. (for termios compatibilty).

#### Int writeToSerial(int fd, char* buffer, int count);
#### Int writeToSerial(int fd, char* buffer, int count)

Writes to serial “count” characters contained in buffer.
Returns the number of transmitted characters or -1 if transmission failed.
Writes to serial “count” characters contained in buffer.
Returns the number of transmitted characters or -1 if transmission failed.
The function can be called using write instead of writeToSerial (for termios compatibilty).

#### Int readFromSerial(int fd, char* buffer, int count);
#### Int readFromSerial(int fd, char* buffer, int count)

Reads “count” bytes from serial port and put them into buffer.
Returns the number of read bytes or -1 if read failed.
Reads “count” bytes from serial port and put them into buffer.
Returns the number of read bytes or -1 if read failed.
The function can be called using read instead of readFromSerial (for termios compatibilty).

#### Int selectSerial(int nfds, fd_set \*readfds, fd_set \*writefds, fd_set \*exceptfds, struct timeval \*timeout);
#### Int selectSerial(int nfds, fd_set \*readfds, fd_set \*writefds, fd_set \*exceptfds, struct timeval \*timeout)

It behaves as termios select.
Returns the file descriptor ready for the chosen operation or -1 if failed.
It behaves as termios select.
Returns the file descriptor ready for the chosen operation or -1 if failed.
The function can be called using select instead of selectSerial (for termios compatibility).

#### HANDLE getHandle();
#### HANDLE getHandle()

Returns the HANDLE from the COM structure.

Expand All @@ -213,27 +220,30 @@ At the moment is not possible to have more than one serial communication at the

---

## What is termiWin intended for?
## What is termiWin intended for

termiWin is just a simple library which executes termios functions using Windows libsock functions, because of that, any particular behaviour in the communication with the serial device, could not work properly. **termiWin is intended just for simple communications**.

termiWin is just a simple library which executes termios functions using Windows libsock functions, because of that, any particular behaviour in the communication with the serial device, could not work properly. **termiWin is intended just for simple communications**.
When termiWin *can be* a good choice? ✅

* ✅ - When you have to do a quick project without particular requirements.
* ✅ - When you don't need performance and high reliability.
* ✅ - When the communication between you and the serial device doesn't require a particular configuration.

When termiWin *can be* a good choice? ✅
* ✅ - When you have to do a quick project without particular requirements.
* ✅ - When you don't need performance and high reliability.
* ✅ - When the communication between you and the serial device doesn't require a particular configuration.
When termiWin **Is NOT** a good choice? ❌

When termiWin **Is NOT** a good choice? ❌
* ❌ - When you need multiple device communications. termiWin just doesn't support this feature at the moment.
* ❌ - When you need performance - since termiWin has to convert termios to windows instructions, it won't be faster than a program with windows instructions wrote by the developer.
* ❌ - When you require particular configuration and to use particular functions (such as tcdrain, tcflush etc) - they could work, but I can't assure
* ❌ - When you need multiple device communications. termiWin just doesn't support this feature at the moment.
* ❌ - When you need performance - since termiWin has to convert termios to windows instructions, it won't be faster than a program with windows instructions wrote by the developer.
* ❌ - When you require particular configuration and to use particular functions (such as tcdrain, tcflush etc) - they could work, but I can't assure

---

## Contributions

Everybody can contribute to this project, indeed any improvement will be appreciated.

### Is termiWin still supported?
### Is termiWin still supported

Well, I'm not working on it anymore, but I will answer to your questions and I will submit pull requests if they can be an improvement to the library.

## License
Expand Down
Loading

0 comments on commit 6fb0f38

Please sign in to comment.