├── .cproject ├── .project ├── ChangeLog.txt ├── License.txt ├── Makefile ├── PinoutDIP28.png ├── PinoutQFP48.png ├── PinoutQFP48_LPC1100XL.PNG ├── Readme.txt ├── core ├── adc │ ├── adc.c │ └── adc.h ├── cmd │ ├── cmd.c │ └── cmd.h ├── cpu │ ├── cpu.c │ └── cpu.h ├── gpio │ ├── gpio.c │ └── gpio.h ├── i2c │ ├── i2c.c │ └── i2c.h ├── iap │ ├── iap.c │ └── iap.h ├── libc │ ├── stdio.c │ └── string.c ├── pmu │ ├── pmu.c │ └── pmu.h ├── pwm │ ├── pwm.c │ ├── pwm.h │ └── pwm_100us_50percent.png ├── ssp │ ├── ssp.c │ └── ssp.h ├── systick │ ├── systick.c │ └── systick.h ├── timer16 │ ├── timer16.c │ └── timer16.h ├── timer32 │ ├── timer32.c │ └── timer32.h ├── uart │ ├── uart.c │ ├── uart.h │ └── uart_buf.c └── wdt │ ├── wdt.c │ └── wdt.h ├── drivers ├── dac │ └── mcp4725 │ │ ├── mcp4725.c │ │ └── mcp4725.h ├── displays │ ├── bitmap │ │ ├── ST7565 │ │ │ ├── ST7565.c │ │ │ └── ST7565.h │ │ ├── readme.txt │ │ └── ssd1306 │ │ │ ├── ssd1306.c │ │ │ └── ssd1306.h │ ├── smallfonts.c │ └── smallfonts.h ├── eeprom │ ├── eeprom.c │ ├── eeprom.h │ └── mcp24aa │ │ ├── mcp24aa.c │ │ └── mcp24aa.h ├── fatfs │ ├── ccsbcs.c │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ ├── integer.h │ └── mmc.c ├── motor │ └── stepper │ │ ├── stepper.c │ │ └── stepper.h ├── rf │ ├── chibi │ │ ├── chb.c │ │ ├── chb.h │ │ ├── chb_buf.c │ │ ├── chb_buf.h │ │ ├── chb_drvr.c │ │ ├── chb_drvr.h │ │ ├── chb_eeprom.c │ │ ├── chb_eeprom.h │ │ ├── chb_libpcap.c │ │ ├── chb_libpcap.h │ │ ├── chb_spi.c │ │ ├── chb_spi.h │ │ └── types.h │ └── pn532 │ │ ├── helpers │ │ ├── pn532_mifare.h │ │ ├── pn532_mifare_classic.c │ │ ├── pn532_mifare_classic.h │ │ ├── pn532_mifare_ultralight.c │ │ └── pn532_mifare_ultralight.h │ │ ├── pn532.c │ │ ├── pn532.h │ │ ├── pn532_bus.h │ │ ├── pn532_bus_i2c.c │ │ └── pn532_bus_uart.c ├── rsa │ ├── rsa.c │ └── rsa.h └── sensors │ ├── lm75b │ ├── lm75b.c │ └── lm75b.h │ └── tsl2561 │ ├── tsl2561.c │ └── tsl2561.h ├── lpc111x.h ├── lpc1xxx ├── LPC11xx_handlers.c ├── LPC1xxx_startup.c └── linkscript.ld ├── main.c ├── project ├── cmd_tbl.h ├── commands.c ├── commands.h ├── commands │ ├── cmd_chibi_addr.c │ ├── cmd_chibi_tx.c │ ├── cmd_deepsleep.c │ ├── cmd_i2ceeprom_read.c │ ├── cmd_i2ceeprom_write.c │ ├── cmd_lm75b_gettemp.c │ ├── cmd_reset.c │ ├── cmd_sd_dir.c │ └── cmd_sysinfo.c └── readme.txt ├── projectconfig.h ├── sysdefs.h ├── sysinit.c ├── sysinit.h └── tools ├── codelite_debug ├── CM3.zip └── README.txt ├── examples ├── basics │ ├── blinky │ │ ├── main.c │ │ └── readme.txt │ └── blinky_nonblocking │ │ ├── main.c │ │ └── readme.txt ├── chibi │ ├── receive │ │ ├── main.c │ │ └── readme.txt │ ├── sniffer_sd │ │ ├── main.c │ │ └── readme.txt │ ├── sniffer_wsbridge │ │ ├── main.c │ │ └── readme.txt │ ├── transmit │ │ ├── main.c │ │ └── readme.txt │ └── transmit_temp │ │ ├── main.c │ │ └── readme.txt ├── default │ ├── main.c │ └── readme.txt ├── lcd │ └── lpc1343tftlcd_uart │ │ ├── main.c │ │ └── readme.txt └── readme.txt ├── readme.txt ├── schematics ├── AT86RF212LPC1114_v1.6.pdf └── LPC1114BaseBoard_v1.3.pdf └── wsbridge └── v0.50 ├── Exe ├── Linux │ └── wsbridge └── Win │ └── wsbridge.exe ├── Linux ├── Makefile └── main.c └── Win ├── wsbridge.sln ├── wsbridge.suo └── wsbridge ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── wsbridge.csproj └── wsbridge.csproj.user /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/.cproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/.project -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/License.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/Makefile -------------------------------------------------------------------------------- /PinoutDIP28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/PinoutDIP28.png -------------------------------------------------------------------------------- /PinoutQFP48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/PinoutQFP48.png -------------------------------------------------------------------------------- /PinoutQFP48_LPC1100XL.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/PinoutQFP48_LPC1100XL.PNG -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/Readme.txt -------------------------------------------------------------------------------- /core/adc/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/adc/adc.c -------------------------------------------------------------------------------- /core/adc/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/adc/adc.h -------------------------------------------------------------------------------- /core/cmd/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/cmd/cmd.c -------------------------------------------------------------------------------- /core/cmd/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/cmd/cmd.h -------------------------------------------------------------------------------- /core/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/cpu/cpu.c -------------------------------------------------------------------------------- /core/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/cpu/cpu.h -------------------------------------------------------------------------------- /core/gpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/gpio/gpio.c -------------------------------------------------------------------------------- /core/gpio/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/gpio/gpio.h -------------------------------------------------------------------------------- /core/i2c/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/i2c/i2c.c -------------------------------------------------------------------------------- /core/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/i2c/i2c.h -------------------------------------------------------------------------------- /core/iap/iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/iap/iap.c -------------------------------------------------------------------------------- /core/iap/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/iap/iap.h -------------------------------------------------------------------------------- /core/libc/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/libc/stdio.c -------------------------------------------------------------------------------- /core/libc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/libc/string.c -------------------------------------------------------------------------------- /core/pmu/pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/pmu/pmu.c -------------------------------------------------------------------------------- /core/pmu/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/pmu/pmu.h -------------------------------------------------------------------------------- /core/pwm/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/pwm/pwm.c -------------------------------------------------------------------------------- /core/pwm/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/pwm/pwm.h -------------------------------------------------------------------------------- /core/pwm/pwm_100us_50percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/pwm/pwm_100us_50percent.png -------------------------------------------------------------------------------- /core/ssp/ssp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/ssp/ssp.c -------------------------------------------------------------------------------- /core/ssp/ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/ssp/ssp.h -------------------------------------------------------------------------------- /core/systick/systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/systick/systick.c -------------------------------------------------------------------------------- /core/systick/systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/systick/systick.h -------------------------------------------------------------------------------- /core/timer16/timer16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/timer16/timer16.c -------------------------------------------------------------------------------- /core/timer16/timer16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/timer16/timer16.h -------------------------------------------------------------------------------- /core/timer32/timer32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/timer32/timer32.c -------------------------------------------------------------------------------- /core/timer32/timer32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/timer32/timer32.h -------------------------------------------------------------------------------- /core/uart/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/uart/uart.c -------------------------------------------------------------------------------- /core/uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/uart/uart.h -------------------------------------------------------------------------------- /core/uart/uart_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/uart/uart_buf.c -------------------------------------------------------------------------------- /core/wdt/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/wdt/wdt.c -------------------------------------------------------------------------------- /core/wdt/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/core/wdt/wdt.h -------------------------------------------------------------------------------- /drivers/dac/mcp4725/mcp4725.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/dac/mcp4725/mcp4725.c -------------------------------------------------------------------------------- /drivers/dac/mcp4725/mcp4725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/dac/mcp4725/mcp4725.h -------------------------------------------------------------------------------- /drivers/displays/bitmap/ST7565/ST7565.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/displays/bitmap/ST7565/ST7565.c -------------------------------------------------------------------------------- /drivers/displays/bitmap/ST7565/ST7565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/displays/bitmap/ST7565/ST7565.h -------------------------------------------------------------------------------- /drivers/displays/bitmap/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/displays/bitmap/readme.txt -------------------------------------------------------------------------------- /drivers/displays/bitmap/ssd1306/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/displays/bitmap/ssd1306/ssd1306.c -------------------------------------------------------------------------------- /drivers/displays/bitmap/ssd1306/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/displays/bitmap/ssd1306/ssd1306.h -------------------------------------------------------------------------------- /drivers/displays/smallfonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/displays/smallfonts.c -------------------------------------------------------------------------------- /drivers/displays/smallfonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/displays/smallfonts.h -------------------------------------------------------------------------------- /drivers/eeprom/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/eeprom/eeprom.c -------------------------------------------------------------------------------- /drivers/eeprom/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/eeprom/eeprom.h -------------------------------------------------------------------------------- /drivers/eeprom/mcp24aa/mcp24aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/eeprom/mcp24aa/mcp24aa.c -------------------------------------------------------------------------------- /drivers/eeprom/mcp24aa/mcp24aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/eeprom/mcp24aa/mcp24aa.h -------------------------------------------------------------------------------- /drivers/fatfs/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/fatfs/ccsbcs.c -------------------------------------------------------------------------------- /drivers/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/fatfs/diskio.h -------------------------------------------------------------------------------- /drivers/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/fatfs/ff.c -------------------------------------------------------------------------------- /drivers/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/fatfs/ff.h -------------------------------------------------------------------------------- /drivers/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/fatfs/ffconf.h -------------------------------------------------------------------------------- /drivers/fatfs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/fatfs/integer.h -------------------------------------------------------------------------------- /drivers/fatfs/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/fatfs/mmc.c -------------------------------------------------------------------------------- /drivers/motor/stepper/stepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/motor/stepper/stepper.c -------------------------------------------------------------------------------- /drivers/motor/stepper/stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/motor/stepper/stepper.h -------------------------------------------------------------------------------- /drivers/rf/chibi/chb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb.c -------------------------------------------------------------------------------- /drivers/rf/chibi/chb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb.h -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_buf.c -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_buf.h -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_drvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_drvr.c -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_drvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_drvr.h -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_eeprom.c -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_eeprom.h -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_libpcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_libpcap.c -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_libpcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_libpcap.h -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_spi.c -------------------------------------------------------------------------------- /drivers/rf/chibi/chb_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/chb_spi.h -------------------------------------------------------------------------------- /drivers/rf/chibi/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/chibi/types.h -------------------------------------------------------------------------------- /drivers/rf/pn532/helpers/pn532_mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/helpers/pn532_mifare.h -------------------------------------------------------------------------------- /drivers/rf/pn532/helpers/pn532_mifare_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/helpers/pn532_mifare_classic.c -------------------------------------------------------------------------------- /drivers/rf/pn532/helpers/pn532_mifare_classic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/helpers/pn532_mifare_classic.h -------------------------------------------------------------------------------- /drivers/rf/pn532/helpers/pn532_mifare_ultralight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/helpers/pn532_mifare_ultralight.c -------------------------------------------------------------------------------- /drivers/rf/pn532/helpers/pn532_mifare_ultralight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/helpers/pn532_mifare_ultralight.h -------------------------------------------------------------------------------- /drivers/rf/pn532/pn532.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/pn532.c -------------------------------------------------------------------------------- /drivers/rf/pn532/pn532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/pn532.h -------------------------------------------------------------------------------- /drivers/rf/pn532/pn532_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/pn532_bus.h -------------------------------------------------------------------------------- /drivers/rf/pn532/pn532_bus_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/pn532_bus_i2c.c -------------------------------------------------------------------------------- /drivers/rf/pn532/pn532_bus_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rf/pn532/pn532_bus_uart.c -------------------------------------------------------------------------------- /drivers/rsa/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rsa/rsa.c -------------------------------------------------------------------------------- /drivers/rsa/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/rsa/rsa.h -------------------------------------------------------------------------------- /drivers/sensors/lm75b/lm75b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/sensors/lm75b/lm75b.c -------------------------------------------------------------------------------- /drivers/sensors/lm75b/lm75b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/sensors/lm75b/lm75b.h -------------------------------------------------------------------------------- /drivers/sensors/tsl2561/tsl2561.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/sensors/tsl2561/tsl2561.c -------------------------------------------------------------------------------- /drivers/sensors/tsl2561/tsl2561.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/drivers/sensors/tsl2561/tsl2561.h -------------------------------------------------------------------------------- /lpc111x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/lpc111x.h -------------------------------------------------------------------------------- /lpc1xxx/LPC11xx_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/lpc1xxx/LPC11xx_handlers.c -------------------------------------------------------------------------------- /lpc1xxx/LPC1xxx_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/lpc1xxx/LPC1xxx_startup.c -------------------------------------------------------------------------------- /lpc1xxx/linkscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/lpc1xxx/linkscript.ld -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/main.c -------------------------------------------------------------------------------- /project/cmd_tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/cmd_tbl.h -------------------------------------------------------------------------------- /project/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands.c -------------------------------------------------------------------------------- /project/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands.h -------------------------------------------------------------------------------- /project/commands/cmd_chibi_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_chibi_addr.c -------------------------------------------------------------------------------- /project/commands/cmd_chibi_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_chibi_tx.c -------------------------------------------------------------------------------- /project/commands/cmd_deepsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_deepsleep.c -------------------------------------------------------------------------------- /project/commands/cmd_i2ceeprom_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_i2ceeprom_read.c -------------------------------------------------------------------------------- /project/commands/cmd_i2ceeprom_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_i2ceeprom_write.c -------------------------------------------------------------------------------- /project/commands/cmd_lm75b_gettemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_lm75b_gettemp.c -------------------------------------------------------------------------------- /project/commands/cmd_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_reset.c -------------------------------------------------------------------------------- /project/commands/cmd_sd_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_sd_dir.c -------------------------------------------------------------------------------- /project/commands/cmd_sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/commands/cmd_sysinfo.c -------------------------------------------------------------------------------- /project/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/project/readme.txt -------------------------------------------------------------------------------- /projectconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/projectconfig.h -------------------------------------------------------------------------------- /sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/sysdefs.h -------------------------------------------------------------------------------- /sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/sysinit.c -------------------------------------------------------------------------------- /sysinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/sysinit.h -------------------------------------------------------------------------------- /tools/codelite_debug/CM3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/codelite_debug/CM3.zip -------------------------------------------------------------------------------- /tools/codelite_debug/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/codelite_debug/README.txt -------------------------------------------------------------------------------- /tools/examples/basics/blinky/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/basics/blinky/main.c -------------------------------------------------------------------------------- /tools/examples/basics/blinky/readme.txt: -------------------------------------------------------------------------------- 1 | Causes the LED to blink once per second -------------------------------------------------------------------------------- /tools/examples/basics/blinky_nonblocking/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/basics/blinky_nonblocking/main.c -------------------------------------------------------------------------------- /tools/examples/basics/blinky_nonblocking/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/basics/blinky_nonblocking/readme.txt -------------------------------------------------------------------------------- /tools/examples/chibi/receive/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/receive/main.c -------------------------------------------------------------------------------- /tools/examples/chibi/receive/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/receive/readme.txt -------------------------------------------------------------------------------- /tools/examples/chibi/sniffer_sd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/sniffer_sd/main.c -------------------------------------------------------------------------------- /tools/examples/chibi/sniffer_sd/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/sniffer_sd/readme.txt -------------------------------------------------------------------------------- /tools/examples/chibi/sniffer_wsbridge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/sniffer_wsbridge/main.c -------------------------------------------------------------------------------- /tools/examples/chibi/sniffer_wsbridge/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/sniffer_wsbridge/readme.txt -------------------------------------------------------------------------------- /tools/examples/chibi/transmit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/transmit/main.c -------------------------------------------------------------------------------- /tools/examples/chibi/transmit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/transmit/readme.txt -------------------------------------------------------------------------------- /tools/examples/chibi/transmit_temp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/transmit_temp/main.c -------------------------------------------------------------------------------- /tools/examples/chibi/transmit_temp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/chibi/transmit_temp/readme.txt -------------------------------------------------------------------------------- /tools/examples/default/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/default/main.c -------------------------------------------------------------------------------- /tools/examples/default/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/default/readme.txt -------------------------------------------------------------------------------- /tools/examples/lcd/lpc1343tftlcd_uart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/lcd/lpc1343tftlcd_uart/main.c -------------------------------------------------------------------------------- /tools/examples/lcd/lpc1343tftlcd_uart/readme.txt: -------------------------------------------------------------------------------- 1 | Shows a basic example of sending commands to the LPC1343 TFT LCD using UART. -------------------------------------------------------------------------------- /tools/examples/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/examples/readme.txt -------------------------------------------------------------------------------- /tools/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/readme.txt -------------------------------------------------------------------------------- /tools/schematics/AT86RF212LPC1114_v1.6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/schematics/AT86RF212LPC1114_v1.6.pdf -------------------------------------------------------------------------------- /tools/schematics/LPC1114BaseBoard_v1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/schematics/LPC1114BaseBoard_v1.3.pdf -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Exe/Linux/wsbridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Exe/Linux/wsbridge -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Exe/Win/wsbridge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Exe/Win/wsbridge.exe -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Linux/Makefile -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Linux/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Linux/main.c -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Win/wsbridge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Win/wsbridge.sln -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Win/wsbridge.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Win/wsbridge.suo -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Win/wsbridge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Win/wsbridge/Program.cs -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Win/wsbridge/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Win/wsbridge/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Win/wsbridge/wsbridge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Win/wsbridge/wsbridge.csproj -------------------------------------------------------------------------------- /tools/wsbridge/v0.50/Win/wsbridge/wsbridge.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microbuilder/LPC1114CodeBase/HEAD/tools/wsbridge/v0.50/Win/wsbridge/wsbridge.csproj.user --------------------------------------------------------------------------------