xmodem.h
Go to the documentation of this file.00001
00041 #ifndef NET_XMODEM_H
00042 #define NET_XMODEM_H
00043
00044 #include <cfg/compiler.h>
00045 #include <kern/kfile.h>
00046
00052 #ifndef XMODEM_CHECK_ABORT
00053 #define XMODEM_CHECK_ABORT (false)
00054 #endif
00055
00056
00057
00063 #ifndef XMODEM_PROGRESS
00064 #define XMODEM_PROGRESS(msg, ...) kprintf(msg, ## __VA_ARGS__)
00065 #endif
00066
00067
00068
00069 struct Serial;
00070
00071 bool xmodem_recv(struct Serial *port, KFile *fd);
00072 bool xmodem_send(struct Serial *port, KFile *fd);
00073
00074 #endif