├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.mkd ├── LICENSE ├── Makefile ├── README.mkd ├── arduino ├── .gitignore ├── Makefile └── baudsetter.ino ├── atcommander ├── atcommander.c └── atcommander.h ├── lpc17xx ├── .gdbinit ├── .gitignore ├── LPC17xx-baremetal.ld ├── LPC17xx-base.ld ├── LPC17xx-bootloader.ld ├── Makefile ├── flash.cfg ├── flash.sh ├── gdb.cfg ├── main.c └── startup.c ├── runtests.sh ├── script └── bootstrap.sh └── tests └── tests.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .DS_Store 3 | *~ 4 | *.bin 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/CHANGELOG.mkd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/Makefile -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/README.mkd -------------------------------------------------------------------------------- /arduino/.gitignore: -------------------------------------------------------------------------------- 1 | build-cli 2 | -------------------------------------------------------------------------------- /arduino/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/arduino/Makefile -------------------------------------------------------------------------------- /arduino/baudsetter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/arduino/baudsetter.ino -------------------------------------------------------------------------------- /atcommander/atcommander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/atcommander/atcommander.c -------------------------------------------------------------------------------- /atcommander/atcommander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/atcommander/atcommander.h -------------------------------------------------------------------------------- /lpc17xx/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/.gdbinit -------------------------------------------------------------------------------- /lpc17xx/.gitignore: -------------------------------------------------------------------------------- 1 | *.map 2 | *.elf 3 | -------------------------------------------------------------------------------- /lpc17xx/LPC17xx-baremetal.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/LPC17xx-baremetal.ld -------------------------------------------------------------------------------- /lpc17xx/LPC17xx-base.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/LPC17xx-base.ld -------------------------------------------------------------------------------- /lpc17xx/LPC17xx-bootloader.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/LPC17xx-bootloader.ld -------------------------------------------------------------------------------- /lpc17xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/Makefile -------------------------------------------------------------------------------- /lpc17xx/flash.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/flash.cfg -------------------------------------------------------------------------------- /lpc17xx/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/flash.sh -------------------------------------------------------------------------------- /lpc17xx/gdb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/gdb.cfg -------------------------------------------------------------------------------- /lpc17xx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/main.c -------------------------------------------------------------------------------- /lpc17xx/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/lpc17xx/startup.c -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/runtests.sh -------------------------------------------------------------------------------- /script/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/script/bootstrap.sh -------------------------------------------------------------------------------- /tests/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openxc/AT-commander/HEAD/tests/tests.c --------------------------------------------------------------------------------