git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4515 42af7a65-404d-4744-a932-0658087f49c3
10 lines
212 B
C
10 lines
212 B
C
#ifndef _SERCOMM_CONS_H
|
|
#define _SERCOMM_CONS_H
|
|
|
|
/* how large buffers do we allocate? */
|
|
#define SERCOMM_CONS_ALLOC 256
|
|
|
|
int sercomm_puts(const char *s);
|
|
int sercomm_putchar(int c);
|
|
|
|
#endif /* _SERCOMM_CONS_H */
|