diff --git a/examples/ftp/Makefile.atari.defines b/examples/ftp/Makefile.atari.defines new file mode 100644 index 000000000..7f438d1d1 --- /dev/null +++ b/examples/ftp/Makefile.atari.defines @@ -0,0 +1 @@ +DEFINES = WITH_CLIENT,WITH_DNS,WITH_GUI diff --git a/platform/atari/contiki-conf.h b/platform/atari/contiki-conf.h index dd4c57cc2..fe8a8b6d2 100644 --- a/platform/atari/contiki-conf.h +++ b/platform/atari/contiki-conf.h @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * $Id: contiki-conf.h,v 1.2 2010/10/01 20:27:06 oliverschmidt Exp $ + * $Id: contiki-conf.h,v 1.3 2010/10/16 11:42:40 oliverschmidt Exp $ */ #ifndef __CONTIKI_CONF_H__ @@ -52,6 +52,9 @@ #define EMAIL_CONF_HEIGHT 19 #define EMAIL_CONF_ERASE 0 +#define FTP_CONF_WIDTH 18 +#define FTP_CONF_HEIGHT 21 + #define IRC_CONF_WIDTH 40 #define IRC_CONF_HEIGHT 23 diff --git a/platform/atari/contiki-main.c b/platform/atari/contiki-main.c index fc2035fa8..1cae202dc 100644 --- a/platform/atari/contiki-main.c +++ b/platform/atari/contiki-main.c @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * $Id: contiki-main.c,v 1.2 2010/10/02 22:07:24 oliverschmidt Exp $ + * $Id: contiki-main.c,v 1.3 2010/10/16 11:42:40 oliverschmidt Exp $ */ #include "contiki-net.h" @@ -56,6 +56,23 @@ PROCINIT(&etimer_process, RESOLV_PROCESS &tcpip_process); +/*-----------------------------------------------------------------------------------*/ +void * __fastcall__ +opendir(void *) +{ + return NULL; +} +/*-----------------------------------------------------------------------------------*/ +void * __fastcall__ +readdir(void *) +{ + return NULL; +} +/*-----------------------------------------------------------------------------------*/ +void __fastcall__ +closedir(void *) +{ +} /*-----------------------------------------------------------------------------------*/ void main(void)