whitespace
This commit is contained in:
parent
36cff9839a
commit
7db31d1ae4
2 changed files with 37 additions and 36 deletions
|
|
@ -378,4 +378,3 @@ void bird_setup(void)
|
|||
|
||||
class_addfloat(bird_class, bird_float);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -61,9 +61,11 @@ typedef struct comport
|
|||
struct termios oldcom_termio; /* save the old com config */
|
||||
struct termios com_termio; /* for the new com config */
|
||||
#endif
|
||||
|
||||
t_symbol *serial_device;
|
||||
char serial_device_prefix[FILENAME_MAX];/* the device name without the number */
|
||||
short comport; /* holds the comport # */
|
||||
|
||||
t_float baud; /* holds the current baud rate */
|
||||
t_float data_bits; /* holds the current number of data bits */
|
||||
t_float parity_bit; /* holds the current parity */
|
||||
|
|
@ -71,6 +73,7 @@ typedef struct comport
|
|||
int xonxoff; /* nonzero if xonxoff handshaking is on */
|
||||
int ctsrts; /* nonzero if ctsrts handshaking is on */
|
||||
int hupcl; /* nonzero if hang-up on close is on */
|
||||
|
||||
short rxerrors; /* holds the rx line errors */
|
||||
t_clock *x_clock;
|
||||
int x_hit;
|
||||
|
|
@ -2054,4 +2057,3 @@ void comport_setup(void)
|
|||
"LGPL 1998-2015, Winfried Ritsch and others (see LICENSE.txt)\n"
|
||||
"Institute for Electronic Music - Graz");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue