├── .cproject ├── .gitignore ├── .gitmodules ├── .project ├── .settings ├── language.settings.xml └── org.eclipse.cdt.core.prefs ├── LICENSE ├── Makefile ├── README.md ├── bsp ├── E21 │ ├── boot │ │ ├── Makefile │ │ ├── boot.S │ │ └── linker.lds │ ├── memory.lds │ ├── memory.ods │ ├── multizone.cfg │ ├── newlib │ │ ├── crt0.S │ │ ├── mtvec.s │ │ ├── newlib.c │ │ └── newlib.mk │ ├── openocd.cfg │ ├── platform.h │ └── run_zone1_in_ram.txt ├── E31 │ ├── boot │ │ ├── Makefile │ │ ├── boot.S │ │ └── linker.lds │ ├── memory.lds │ ├── memory.ods │ ├── multizone.cfg │ ├── newlib │ │ ├── crt0.S │ │ ├── mtvec.s │ │ ├── newlib.c │ │ └── newlib.mk │ ├── openocd.cfg │ └── platform.h ├── FE310 │ ├── boot │ │ ├── Makefile │ │ ├── boot.S │ │ └── linker.lds │ ├── memory.lds │ ├── memory.ods │ ├── mtvec.s │ ├── multizone.cfg │ ├── newlib │ │ ├── crt0.S │ │ ├── newlib.c │ │ └── newlib.mk │ └── platform.h ├── S51 │ ├── boot │ │ ├── Makefile │ │ ├── boot.S │ │ └── linker.lds │ ├── memory.lds │ ├── memory.ods │ ├── multizone.cfg │ ├── newlib │ │ ├── crt0.S │ │ ├── mtvec.s │ │ ├── newlib.c │ │ └── newlib.mk │ ├── openocd.cfg │ └── platform.h └── X300 │ ├── boot │ ├── Makefile │ ├── boot.S │ └── linker.lds │ ├── memory.lds │ ├── memory.ods │ ├── multizone.cfg │ ├── newlib │ ├── crt0.S │ ├── mtvec.s │ ├── newlib.c │ └── newlib.mk │ ├── openocd.cfg │ └── platform.h ├── ext ├── FreeRTOSConfig.h └── freertos.patch ├── manual.pdf ├── multizone-sdk-FE310.launch ├── multizone-sdk.launch ├── multizone.h ├── multizone.jar ├── zone1 ├── Makefile ├── linker.lds ├── main.c ├── printf.c ├── printf.h └── strtok.c ├── zone2 ├── Makefile ├── linker.lds └── main.c ├── zone3.1 ├── Makefile ├── linker.lds ├── main.c ├── owi_sequence.c └── owi_sequence.h ├── zone3 ├── Makefile ├── linker.lds ├── main.c ├── owi_sequence.c └── owi_sequence.h └── zone4 ├── Makefile ├── linker.lds └── main.c /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/README.md -------------------------------------------------------------------------------- /bsp/E21/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/boot/Makefile -------------------------------------------------------------------------------- /bsp/E21/boot/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/boot/boot.S -------------------------------------------------------------------------------- /bsp/E21/boot/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/boot/linker.lds -------------------------------------------------------------------------------- /bsp/E21/memory.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/memory.lds -------------------------------------------------------------------------------- /bsp/E21/memory.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/memory.ods -------------------------------------------------------------------------------- /bsp/E21/multizone.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/multizone.cfg -------------------------------------------------------------------------------- /bsp/E21/newlib/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/newlib/crt0.S -------------------------------------------------------------------------------- /bsp/E21/newlib/mtvec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/newlib/mtvec.s -------------------------------------------------------------------------------- /bsp/E21/newlib/newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/newlib/newlib.c -------------------------------------------------------------------------------- /bsp/E21/newlib/newlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/newlib/newlib.mk -------------------------------------------------------------------------------- /bsp/E21/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/openocd.cfg -------------------------------------------------------------------------------- /bsp/E21/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/platform.h -------------------------------------------------------------------------------- /bsp/E21/run_zone1_in_ram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E21/run_zone1_in_ram.txt -------------------------------------------------------------------------------- /bsp/E31/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/boot/Makefile -------------------------------------------------------------------------------- /bsp/E31/boot/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/boot/boot.S -------------------------------------------------------------------------------- /bsp/E31/boot/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/boot/linker.lds -------------------------------------------------------------------------------- /bsp/E31/memory.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/memory.lds -------------------------------------------------------------------------------- /bsp/E31/memory.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/memory.ods -------------------------------------------------------------------------------- /bsp/E31/multizone.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/multizone.cfg -------------------------------------------------------------------------------- /bsp/E31/newlib/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/newlib/crt0.S -------------------------------------------------------------------------------- /bsp/E31/newlib/mtvec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/newlib/mtvec.s -------------------------------------------------------------------------------- /bsp/E31/newlib/newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/newlib/newlib.c -------------------------------------------------------------------------------- /bsp/E31/newlib/newlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/newlib/newlib.mk -------------------------------------------------------------------------------- /bsp/E31/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/openocd.cfg -------------------------------------------------------------------------------- /bsp/E31/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/E31/platform.h -------------------------------------------------------------------------------- /bsp/FE310/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/boot/Makefile -------------------------------------------------------------------------------- /bsp/FE310/boot/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/boot/boot.S -------------------------------------------------------------------------------- /bsp/FE310/boot/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/boot/linker.lds -------------------------------------------------------------------------------- /bsp/FE310/memory.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/memory.lds -------------------------------------------------------------------------------- /bsp/FE310/memory.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/memory.ods -------------------------------------------------------------------------------- /bsp/FE310/mtvec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/mtvec.s -------------------------------------------------------------------------------- /bsp/FE310/multizone.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/multizone.cfg -------------------------------------------------------------------------------- /bsp/FE310/newlib/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/newlib/crt0.S -------------------------------------------------------------------------------- /bsp/FE310/newlib/newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/newlib/newlib.c -------------------------------------------------------------------------------- /bsp/FE310/newlib/newlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/newlib/newlib.mk -------------------------------------------------------------------------------- /bsp/FE310/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/FE310/platform.h -------------------------------------------------------------------------------- /bsp/S51/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/boot/Makefile -------------------------------------------------------------------------------- /bsp/S51/boot/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/boot/boot.S -------------------------------------------------------------------------------- /bsp/S51/boot/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/boot/linker.lds -------------------------------------------------------------------------------- /bsp/S51/memory.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/memory.lds -------------------------------------------------------------------------------- /bsp/S51/memory.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/memory.ods -------------------------------------------------------------------------------- /bsp/S51/multizone.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/multizone.cfg -------------------------------------------------------------------------------- /bsp/S51/newlib/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/newlib/crt0.S -------------------------------------------------------------------------------- /bsp/S51/newlib/mtvec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/newlib/mtvec.s -------------------------------------------------------------------------------- /bsp/S51/newlib/newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/newlib/newlib.c -------------------------------------------------------------------------------- /bsp/S51/newlib/newlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/newlib/newlib.mk -------------------------------------------------------------------------------- /bsp/S51/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/openocd.cfg -------------------------------------------------------------------------------- /bsp/S51/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/S51/platform.h -------------------------------------------------------------------------------- /bsp/X300/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/boot/Makefile -------------------------------------------------------------------------------- /bsp/X300/boot/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/boot/boot.S -------------------------------------------------------------------------------- /bsp/X300/boot/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/boot/linker.lds -------------------------------------------------------------------------------- /bsp/X300/memory.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/memory.lds -------------------------------------------------------------------------------- /bsp/X300/memory.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/memory.ods -------------------------------------------------------------------------------- /bsp/X300/multizone.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/multizone.cfg -------------------------------------------------------------------------------- /bsp/X300/newlib/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/newlib/crt0.S -------------------------------------------------------------------------------- /bsp/X300/newlib/mtvec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/newlib/mtvec.s -------------------------------------------------------------------------------- /bsp/X300/newlib/newlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/newlib/newlib.c -------------------------------------------------------------------------------- /bsp/X300/newlib/newlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/newlib/newlib.mk -------------------------------------------------------------------------------- /bsp/X300/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/openocd.cfg -------------------------------------------------------------------------------- /bsp/X300/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/bsp/X300/platform.h -------------------------------------------------------------------------------- /ext/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/ext/FreeRTOSConfig.h -------------------------------------------------------------------------------- /ext/freertos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/ext/freertos.patch -------------------------------------------------------------------------------- /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/manual.pdf -------------------------------------------------------------------------------- /multizone-sdk-FE310.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/multizone-sdk-FE310.launch -------------------------------------------------------------------------------- /multizone-sdk.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/multizone-sdk.launch -------------------------------------------------------------------------------- /multizone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/multizone.h -------------------------------------------------------------------------------- /multizone.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/multizone.jar -------------------------------------------------------------------------------- /zone1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone1/Makefile -------------------------------------------------------------------------------- /zone1/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone1/linker.lds -------------------------------------------------------------------------------- /zone1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone1/main.c -------------------------------------------------------------------------------- /zone1/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone1/printf.c -------------------------------------------------------------------------------- /zone1/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone1/printf.h -------------------------------------------------------------------------------- /zone1/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone1/strtok.c -------------------------------------------------------------------------------- /zone2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone2/Makefile -------------------------------------------------------------------------------- /zone2/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone2/linker.lds -------------------------------------------------------------------------------- /zone2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone2/main.c -------------------------------------------------------------------------------- /zone3.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone3.1/Makefile -------------------------------------------------------------------------------- /zone3.1/linker.lds: -------------------------------------------------------------------------------- 1 | ../zone3/linker.lds -------------------------------------------------------------------------------- /zone3.1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone3.1/main.c -------------------------------------------------------------------------------- /zone3.1/owi_sequence.c: -------------------------------------------------------------------------------- 1 | ../zone3/owi_sequence.c -------------------------------------------------------------------------------- /zone3.1/owi_sequence.h: -------------------------------------------------------------------------------- 1 | ../zone3/owi_sequence.h -------------------------------------------------------------------------------- /zone3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone3/Makefile -------------------------------------------------------------------------------- /zone3/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone3/linker.lds -------------------------------------------------------------------------------- /zone3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone3/main.c -------------------------------------------------------------------------------- /zone3/owi_sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone3/owi_sequence.c -------------------------------------------------------------------------------- /zone3/owi_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone3/owi_sequence.h -------------------------------------------------------------------------------- /zone4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone4/Makefile -------------------------------------------------------------------------------- /zone4/linker.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone4/linker.lds -------------------------------------------------------------------------------- /zone4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hex-five/multizone-sdk/HEAD/zone4/main.c --------------------------------------------------------------------------------