├── LICENSE.md ├── README.md └── src ├── lib ├── core │ ├── ntconf.h │ ├── ntint.h │ ├── ntlibc.c │ ├── ntlibc.h │ ├── ntshell.c │ ├── ntshell.h │ ├── text_editor.c │ ├── text_editor.h │ ├── text_history.c │ ├── text_history.h │ ├── vtrecv.c │ ├── vtrecv.h │ ├── vtsend.c │ └── vtsend.h └── util │ ├── ntopt.c │ ├── ntopt.h │ ├── ntstdio.c │ └── ntstdio.h └── sample └── target ├── acb-bf592 ├── Makefile ├── chip.c ├── chip.h ├── main.c ├── uart.c └── uart.h └── nxp-lpc824 ├── lpc_chip_8xx ├── .cproject ├── .project ├── inc │ ├── acmp_8xx.h │ ├── chip.h │ ├── clock_8xx.h │ ├── cmsis.h │ ├── core_cm0plus.h │ ├── core_cmFunc.h │ ├── core_cmInstr.h │ ├── crc_8xx.h │ ├── error.h │ ├── error_8xx.h │ ├── fmc_8xx.h │ ├── gpio_8xx.h │ ├── i2c_common_8xx.h │ ├── i2cm_8xx.h │ ├── i2cs_8xx.h │ ├── iap.h │ ├── inmux_8xx.h │ ├── iocon_8xx.h │ ├── lpc_types.h │ ├── mrt_8xx.h │ ├── pinint_8xx.h │ ├── pmu_8xx.h │ ├── ring_buffer.h │ ├── rom_i2c_8xx.h │ ├── rom_pwr_8xx.h │ ├── rom_uart_8xx.h │ ├── romapi_8xx.h │ ├── sct_8xx.h │ ├── sct_pwm_8xx.h │ ├── spi_8xx.h │ ├── spi_common_8xx.h │ ├── spim_8xx.h │ ├── spis_8xx.h │ ├── stopwatch.h │ ├── swm_8xx.h │ ├── sys_config.h │ ├── syscon_8xx.h │ ├── uart_8xx.h │ ├── wkt_8xx.h │ └── wwdt_8xx.h ├── src │ ├── acmp_8xx.c │ ├── chip_8xx.c │ ├── clock_8xx.c │ ├── crc_8xx.c │ ├── gpio_8xx.c │ ├── i2c_common_8xx.c │ ├── i2cm_8xx.c │ ├── i2cs_8xx.c │ ├── iap.c │ ├── iocon_8xx.c │ ├── pinint_8xx.c │ ├── pmu_8xx.c │ ├── ring_buffer.c │ ├── sct_8xx.c │ ├── sct_pwm_8xx.c │ ├── spi_8xx.c │ ├── spim_8xx.c │ ├── spis_8xx.c │ ├── stopwatch_8xx.c │ ├── swm_8xx.c │ ├── syscon_8xx.c │ ├── sysinit_8xx.c │ ├── uart_8xx.c │ ├── wkt_8xx.c │ └── wwdt_8xx.c └── version.txt └── lpc_monitor ├── .cproject ├── .project └── src ├── cr_startup_lpc82x.c ├── crp.c ├── main.c ├── mtb.c ├── sysinit.c ├── uart.c ├── uart.h ├── usrcmd.c └── usrcmd.h /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/README.md -------------------------------------------------------------------------------- /src/lib/core/ntconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/ntconf.h -------------------------------------------------------------------------------- /src/lib/core/ntint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/ntint.h -------------------------------------------------------------------------------- /src/lib/core/ntlibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/ntlibc.c -------------------------------------------------------------------------------- /src/lib/core/ntlibc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/ntlibc.h -------------------------------------------------------------------------------- /src/lib/core/ntshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/ntshell.c -------------------------------------------------------------------------------- /src/lib/core/ntshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/ntshell.h -------------------------------------------------------------------------------- /src/lib/core/text_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/text_editor.c -------------------------------------------------------------------------------- /src/lib/core/text_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/text_editor.h -------------------------------------------------------------------------------- /src/lib/core/text_history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/text_history.c -------------------------------------------------------------------------------- /src/lib/core/text_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/text_history.h -------------------------------------------------------------------------------- /src/lib/core/vtrecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/vtrecv.c -------------------------------------------------------------------------------- /src/lib/core/vtrecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/vtrecv.h -------------------------------------------------------------------------------- /src/lib/core/vtsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/vtsend.c -------------------------------------------------------------------------------- /src/lib/core/vtsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/core/vtsend.h -------------------------------------------------------------------------------- /src/lib/util/ntopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/util/ntopt.c -------------------------------------------------------------------------------- /src/lib/util/ntopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/util/ntopt.h -------------------------------------------------------------------------------- /src/lib/util/ntstdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/util/ntstdio.c -------------------------------------------------------------------------------- /src/lib/util/ntstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/lib/util/ntstdio.h -------------------------------------------------------------------------------- /src/sample/target/acb-bf592/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/acb-bf592/Makefile -------------------------------------------------------------------------------- /src/sample/target/acb-bf592/chip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/acb-bf592/chip.c -------------------------------------------------------------------------------- /src/sample/target/acb-bf592/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/acb-bf592/chip.h -------------------------------------------------------------------------------- /src/sample/target/acb-bf592/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/acb-bf592/main.c -------------------------------------------------------------------------------- /src/sample/target/acb-bf592/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/acb-bf592/uart.c -------------------------------------------------------------------------------- /src/sample/target/acb-bf592/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/acb-bf592/uart.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/.cproject -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/.project -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/acmp_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/acmp_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/chip.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/clock_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/clock_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/cmsis.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/core_cm0plus.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/core_cmFunc.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/core_cmInstr.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/crc_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/crc_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/error.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/error_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/error_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/fmc_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/fmc_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/gpio_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/gpio_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/i2c_common_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/i2c_common_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/i2cm_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/i2cm_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/i2cs_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/i2cs_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/iap.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/inmux_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/inmux_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/iocon_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/iocon_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/lpc_types.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/mrt_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/mrt_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/pinint_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/pinint_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/pmu_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/pmu_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/ring_buffer.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/rom_i2c_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/rom_i2c_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/rom_pwr_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/rom_pwr_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/rom_uart_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/rom_uart_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/romapi_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/romapi_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/sct_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/sct_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/sct_pwm_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/sct_pwm_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spi_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spi_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spi_common_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spi_common_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spim_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spim_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spis_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/spis_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/stopwatch.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/swm_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/swm_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/sys_config.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/syscon_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/syscon_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/uart_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/uart_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/wkt_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/wkt_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/wwdt_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/inc/wwdt_8xx.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/acmp_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/acmp_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/chip_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/chip_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/clock_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/clock_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/crc_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/crc_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/gpio_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/gpio_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/i2c_common_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/i2c_common_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/i2cm_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/i2cm_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/i2cs_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/i2cs_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/iap.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/iocon_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/iocon_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/pinint_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/pinint_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/pmu_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/pmu_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/ring_buffer.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/sct_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/sct_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/sct_pwm_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/sct_pwm_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/spi_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/spi_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/spim_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/spim_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/spis_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/spis_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/stopwatch_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/stopwatch_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/swm_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/swm_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/syscon_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/syscon_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/sysinit_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/sysinit_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/uart_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/uart_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/wkt_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/wkt_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/src/wwdt_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_chip_8xx/src/wwdt_8xx.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_chip_8xx/version.txt: -------------------------------------------------------------------------------- 1 | LPCOPEN VERSION: 2_15 2 | RELEASE DATE: 3 | Thu 01/08/2015 4 | -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/.cproject -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/.project -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/cr_startup_lpc82x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/cr_startup_lpc82x.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/crp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/crp.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/main.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/mtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/mtb.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/sysinit.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/uart.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/uart.h -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/usrcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/usrcmd.c -------------------------------------------------------------------------------- /src/sample/target/nxp-lpc824/lpc_monitor/src/usrcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiabrian/ntshell/HEAD/src/sample/target/nxp-lpc824/lpc_monitor/src/usrcmd.h --------------------------------------------------------------------------------