Merge pull request #274 from oliverschmidt/master

Made use of Atari XL shadow RAM.
This commit is contained in:
Oliver Schmidt 2013-06-18 13:38:08 -07:00
commit af93e5fbd9
2 changed files with 9 additions and 2 deletions

View file

@ -37,6 +37,10 @@ CONTIKI_CPU = $(CONTIKI)/cpu/6502
include $(CONTIKI_CPU)/Makefile.6502
STARTADDR_FLAG = -S 0x2300
SHADOW_RAM_SOURCEFILES = tcpip.c uip.c uip_arp.c
# Set a target-specific variable value
${addprefix $(OBJECTDIR)/,${call oname, $(SHADOW_RAM_SOURCEFILES)}}: CFLAGS += --code-name SHADOW_RAM
ifeq ($(MAKECMDGOALS),disk)
ifndef DIR2ATR

View file

@ -59,9 +59,12 @@
#define WWW_CONF_WEBPAGE_WIDTH 40
#define WWW_CONF_WEBPAGE_HEIGHT 19
#define WWW_CONF_HISTORY_SIZE 0
#define WWW_CONF_HISTORY_SIZE 4
#define WWW_CONF_MAX_URLLEN 80
#define WWW_CONF_MAX_NUMPAGEWIDGETS 20
#define WWW_CONF_FORMS 0
#define WWW_CONF_FORMS 1
#define WWW_CONF_MAX_FORMACTIONLEN 20
#define WWW_CONF_MAX_INPUTNAMELEN 20
#define WWW_CONF_MAX_INPUTVALUELEN 20
#endif /* __CONTIKI_CONF_H__ */