summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/termios_setinitialbaud.c
blob: 3b8853f6a8abb0931b83738f6e713dc893e7cd6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
 *  @file
 *
 *  @brief Sets the Initial Baud in the Termios Context
 *  @ingroup TermiostypesSupport
 */

/*
 *  COPYRIGHT (c) 1989-2008.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
  #include "config.h"
#endif

#include <rtems/termiostypes.h>

int rtems_termios_set_initial_baud(
  struct rtems_termios_tty *tty,
  rtems_termios_baud_t baud
)
{
  int rv = 0;
  speed_t spd = rtems_termios_number_to_baud(baud);

  if ( spd != 0 ) {
    tty->termios.c_ispeed = spd;
    tty->termios.c_ospeed = spd;
  } else {
    rv = -1;
  }

  return rv;
}