Initial commit Most of the code received basic testing. Most of the code comes from...
authorNathael Pajani <nathael.pajani@ed3l.fr>
Wed, 15 Jun 2016 16:41:56 +0000 (18:41 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Fri, 10 Feb 2023 18:02:59 +0000 (19:02 +0100)
commit5cf6e6f244251ebfacd70a1b163886ec2e4f2c1d
treee4936cb5070fc52167fb3ce1c2ec44723b43c8fc
Initial commit Most of the code received basic testing. Most of the code comes from the LPC1224 support code.
50 files changed:
.gitignore [new file with mode: 0644]
LICENCE [new file with mode: 0644]
Makefile [new file with mode: 0644]
README [new file with mode: 0644]
core/bootstrap.c [new file with mode: 0644]
core/fault_handlers.c [new file with mode: 0644]
core/pio.c [new file with mode: 0644]
core/rom_helpers.c [new file with mode: 0644]
core/system.c [new file with mode: 0644]
core/systick.c [new file with mode: 0644]
core/watchdog.c [new file with mode: 0644]
drivers/adc.c [new file with mode: 0644]
drivers/gpio.c [new file with mode: 0644]
drivers/i2c.c [new file with mode: 0644]
drivers/serial.c [new file with mode: 0644]
extdrv/tmp101_temp_sensor.c [new file with mode: 0644]
extdrv/ws2812.c [new file with mode: 0644]
include/core/iap.h [new file with mode: 0644]
include/core/lpc_core.h [new file with mode: 0644]
include/core/lpc_regs.h [new file with mode: 0644]
include/core/pio.h [new file with mode: 0644]
include/core/system.h [new file with mode: 0644]
include/core/systick.h [new file with mode: 0644]
include/core/watchdog.h [new file with mode: 0644]
include/drivers/adc.h [new file with mode: 0644]
include/drivers/gpio.h [new file with mode: 0644]
include/drivers/i2c.h [new file with mode: 0644]
include/drivers/serial.h [new file with mode: 0644]
include/extdrv/tmp101_temp_sensor.h [new file with mode: 0644]
include/extdrv/ws2812.h [new file with mode: 0644]
include/lib/errno.h [new file with mode: 0644]
include/lib/font.h [new file with mode: 0644]
include/lib/list.h [new file with mode: 0644]
include/lib/protocols/dtplug/defs.h [new file with mode: 0644]
include/lib/protocols/dtplug/slave.h [new file with mode: 0644]
include/lib/stddef.h [new file with mode: 0644]
include/lib/stdint.h [new file with mode: 0644]
include/lib/stdio.h [new file with mode: 0644]
include/lib/stdlib.h [new file with mode: 0644]
include/lib/string.h [new file with mode: 0644]
include/lib/time.h [new file with mode: 0644]
include/lib/utils.h [new file with mode: 0644]
lib/font.c [new file with mode: 0644]
lib/protocols/dtplug/slave.c [new file with mode: 0644]
lib/stdlib.c [new file with mode: 0644]
lib/string.c [new file with mode: 0644]
lib/time.c [new file with mode: 0644]
lib/uprintf.c [new file with mode: 0644]
lib/utils.c [new file with mode: 0644]
lib/vsprintf.c [new file with mode: 0644]