Merge pull request #274 from oliverschmidt/master
Made use of Atari XL shadow RAM.
This commit is contained in:
commit
af93e5fbd9
|
@ -37,6 +37,10 @@ CONTIKI_CPU = $(CONTIKI)/cpu/6502
|
||||||
include $(CONTIKI_CPU)/Makefile.6502
|
include $(CONTIKI_CPU)/Makefile.6502
|
||||||
|
|
||||||
STARTADDR_FLAG = -S 0x2300
|
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)
|
ifeq ($(MAKECMDGOALS),disk)
|
||||||
ifndef DIR2ATR
|
ifndef DIR2ATR
|
||||||
|
|
|
@ -59,9 +59,12 @@
|
||||||
|
|
||||||
#define WWW_CONF_WEBPAGE_WIDTH 40
|
#define WWW_CONF_WEBPAGE_WIDTH 40
|
||||||
#define WWW_CONF_WEBPAGE_HEIGHT 19
|
#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_URLLEN 80
|
||||||
#define WWW_CONF_MAX_NUMPAGEWIDGETS 20
|
#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__ */
|
#endif /* __CONTIKI_CONF_H__ */
|
||||||
|
|
Loading…
Reference in a new issue