projects
/
btb
/
d2x.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
apply patch from bluecow to fix hmiplay sync issues and lack of midi reset (d1x r1.5)
[btb/d2x.git]
/
arch
/
dos
/
serial.c
1
// dummy serial code because of linux serial stuff
2
#include "serial.h"
3
4
void com_write(char *buffer, int len)
5
{
6
}
7
8
int com_read(char *buffer, int len, int timeout_value)
9
{
10
return 0;
11
}
12
13
int com_getdcd()
14
{
15
return 0;
16
}
17
18
int com_readline(int timeout, char *input_buffer, int len)
19
{
20
return 0;
21
}