~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/amigaos/rs232.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
  return 0;
72
72
}
73
73
 
 
74
/* set the status lines of the RS232 device */
 
75
int rs232_set_status(int fd, enum rs232handshake_out status)
 
76
{
 
77
    return -1;
 
78
}
 
79
 
 
80
/* get the status lines of the RS232 device */
 
81
enum rs232handshake_in rs232_get_status(int fd)
 
82
{
 
83
    /*! \todo dummy */
 
84
    return RS232_HSI_CTS | RS232_HSI_DSR;
 
85
}
 
86
 
 
87
/* set the bps rate of the physical device */
 
88
void rs232_set_bps(int fd, unsigned int bps)
 
89
{
 
90
}
 
91
 
74
92
int rs232_resources_init(void)
75
93
{
76
94
  return 0;