├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── documentation └── PlataformasCIAA │ ├── LPC4337 │ ├── CIAA-NXP │ │ ├── CIAA-NXP Esquematico.pdf │ │ ├── CIAA-NXP Fabricante.txt │ │ ├── CIAA-NXP Folleto EXO.pdf │ │ └── CIAA-NXP V1.0 Especificaciones EXO.pdf │ ├── EDU-CIAA-NXP │ │ ├── EDU-CIAA-NXP Asignacion de pines v4r3_ES.pdf │ │ ├── EDU-CIAA-NXP Esquematico.pdf │ │ ├── EDU-CIAA-NXP Información general.pdf │ │ └── EDU-CIAA-NXP Mapeo de pines Firmata4CIAA v2.pdf │ └── Información del fabricante del microcontrolador LPC4337 │ │ ├── ES_LPC435X_3X_2X_1X_FLASH.pdf │ │ ├── LPC435X_3X_2X_1X.pdf │ │ ├── UM10503.pdf │ │ └── web.txt │ └── LPC54102 │ ├── Información del fabricante del microcontrolador LPC54102 │ ├── ES_LPC5410X.pdf │ ├── LPC5410X.pdf │ ├── UM10850.pdf │ └── web.txt │ └── Pico-CIAA │ ├── Guia_picoCIAAv1.0_rfz.pdf │ └── Pico-CIAA Fabricante.txt ├── etc ├── ld │ ├── lpc11u68.ld │ ├── lpc11u68_lib.ld │ ├── lpc11u68_mem.ld │ ├── lpc1769.ld │ ├── lpc1769_lib.ld │ ├── lpc1769_mem.ld │ ├── lpc1769_semihost_lib.ld │ ├── lpc4337_m0.ld │ ├── lpc4337_m0_lib.ld │ ├── lpc4337_m0_mem.ld │ ├── lpc4337_m4.ld │ ├── lpc4337_m4_RAM.ld │ ├── lpc4337_m4_lib.ld │ ├── lpc4337_m4_mem.ld │ ├── lpc54102_m0.ld │ ├── lpc54102_m0_lib.ld │ ├── lpc54102_m0_mem.ld │ ├── lpc54102_m4.ld │ ├── lpc54102_m4_lib.ld │ └── lpc54102_m4_mem.ld ├── openocd │ ├── lpc1769.cfg │ ├── lpc4337.cfg │ ├── lpc4337_.cfg │ ├── lpc4337_cd.cfg │ └── lpc54102_cd.cfg └── target │ ├── lpc11u68.mk │ ├── lpc1769.mk │ ├── lpc4337_m0.mk │ ├── lpc4337_m4.mk │ ├── lpc54102_m0.mk │ └── lpc54102_m4.mk ├── examples ├── adc_fir_dac │ ├── Makefile │ ├── inc │ │ ├── adc.h │ │ ├── bandpass.h │ │ ├── dac.h │ │ ├── fir_q31.h │ │ ├── lowpass.h │ │ └── main.h │ └── src │ │ ├── adc.c │ │ ├── asm_fir_q31.S │ │ ├── bandpass.c │ │ ├── dac.c │ │ ├── fir_q31.c │ │ ├── lowpass.c │ │ └── main.c ├── asm │ ├── conv │ │ ├── Makefile │ │ ├── inc │ │ │ ├── conv.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── conv.c │ │ │ ├── corr.S │ │ │ └── newlib_stubs.c │ ├── first │ │ ├── Makefile │ │ ├── inc │ │ │ ├── add.h │ │ │ ├── main.h │ │ │ └── zero.h │ │ └── src │ │ │ ├── SysTick_Handler.S │ │ │ ├── add.S │ │ │ ├── main.c │ │ │ └── zero.S │ └── packer │ │ ├── Makefile │ │ ├── inc │ │ ├── pack.h │ │ ├── packer.h │ │ └── samples.h │ │ └── src │ │ ├── pack.S │ │ ├── packer.c │ │ └── samples.c ├── blinky │ ├── Makefile │ ├── inc │ │ └── main.h │ └── src │ │ └── main.c ├── blinky_osek │ ├── Makefile │ ├── blinky_osek.oil │ ├── gen │ │ └── .gitignore │ ├── inc │ │ └── blinking.h │ └── src │ │ └── blinking.c ├── blinky_ram │ ├── Makefile │ ├── inc │ │ └── blinky_ram.h │ └── src │ │ └── blinky_ram.c ├── blinky_rit │ ├── Makefile │ ├── inc │ │ └── main.h │ └── src │ │ └── main.c ├── boot │ ├── Makefile │ ├── README.md │ ├── inc │ │ └── boot.h │ ├── prepare_image.py │ └── src │ │ └── boot.c ├── freertos_blinky │ ├── Makefile │ ├── inc │ │ ├── FreeRTOSConfig.h │ │ ├── main.h │ │ └── newlib_stubs.h │ └── src │ │ ├── main.c │ │ └── newlib_stubs.c ├── i2c │ ├── .gitignore │ ├── Makefile │ ├── inc │ │ └── i2c.h │ └── src │ │ └── i2c.c ├── mpu │ ├── Makefile │ ├── inc │ │ ├── main.h │ │ └── mpu.h │ └── src │ │ ├── main.c │ │ └── mpu.c ├── multicore │ ├── blinky_m0 │ │ ├── Makefile │ │ ├── inc │ │ │ └── main.h │ │ └── src │ │ │ └── main.c │ └── blinky_m4 │ │ ├── Makefile │ │ ├── inc │ │ └── main.h │ │ └── src │ │ └── main.c ├── pwm │ ├── .gitignore │ ├── Makefile │ ├── inc │ │ └── main.h │ ├── pwm.doxyfile │ └── src │ │ └── main.c ├── sd_spi │ ├── Makefile │ ├── README.md │ ├── inc │ │ └── sd_spi.h │ └── src │ │ └── sd_spi.c ├── start_m0 │ ├── Makefile │ ├── inc │ │ └── main.h │ └── src │ │ └── main.c ├── statechart │ ├── Application.-sct │ ├── Blink.-sct │ ├── BlinkTimeEvent.-sct │ ├── Button.-sct │ ├── IdleBlink.-sct │ ├── Makefile │ ├── Porton.-sct │ ├── gen │ │ ├── .gitignore │ │ └── README │ ├── inc │ │ ├── TimerTicks.h │ │ └── main.h │ ├── prefix.sgen │ └── src │ │ ├── TimerTicks.c │ │ └── main.c ├── tcpecho │ ├── .gitignore │ ├── Makefile │ ├── inc │ │ ├── FreeRTOSConfig.h │ │ ├── lpc_17xx40xx_emac_config.h │ │ ├── lpc_18xx43xx_emac_config.h │ │ ├── lwipopts.h │ │ ├── newlib_stubs.h │ │ └── tcpecho.h │ ├── src │ │ ├── cr_redlib_heap_fix.c │ │ ├── lwip_tcpecho_freertos.c │ │ ├── newlib_stubs.c │ │ └── tcpecho.c │ └── tcpecho.doxyfile ├── trilat │ ├── Makefile │ ├── inc │ │ └── main.h │ └── src │ │ └── main.c ├── usb_cdc │ ├── .gitignore │ ├── Makefile │ ├── inc │ │ ├── FreeRTOSConfig.h │ │ ├── app_usbd_cfg.h │ │ ├── cdc_vcom.h │ │ ├── lcd.h │ │ ├── main.h │ │ └── newlib_stubs.h │ └── src │ │ ├── cdc_desc.c │ │ ├── cdc_main.c │ │ ├── cdc_vcom.c │ │ ├── lcd.c │ │ ├── main.c │ │ └── newlib_stubs.c ├── usb_msc_host │ ├── Makefile │ ├── inc │ │ ├── MassStorageHost.h │ │ └── fsusb_cfg.h │ └── src │ │ └── MassStorageHost.c └── usb_rom_cdc │ ├── .gitignore │ ├── Makefile │ ├── inc │ ├── app_usbd_cfg.h │ └── cdc_vcom.h │ └── src │ ├── cdc_desc.c │ ├── cdc_main.c │ └── cdc_vcom.c ├── modules ├── lpc11u68 │ ├── base │ │ ├── Makefile │ │ ├── inc │ │ │ ├── cr_mtb_buffer.h │ │ │ ├── cr_section_macros.h │ │ │ └── crp.h │ │ └── src │ │ │ ├── aeabi_romdiv_patch.s │ │ │ ├── cr_startup_lpc11u6x.c │ │ │ ├── mtb.c │ │ │ └── sysinit.c │ ├── board │ │ ├── Makefile │ │ ├── inc │ │ │ ├── board.h │ │ │ └── board_api.h │ │ └── src │ │ │ ├── board.c │ │ │ ├── board_sysinit.c │ │ │ └── retarget.h │ ├── chip │ │ ├── Makefile │ │ ├── inc │ │ │ ├── adc_11u6x.h │ │ │ ├── chip.h │ │ │ ├── clock_11u6x.h │ │ │ ├── cmsis.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── crc_11u6x.h │ │ │ ├── dma_11u6x.h │ │ │ ├── error.h │ │ │ ├── fmc_11u6x.h │ │ │ ├── gpio_11u6x.h │ │ │ ├── gpiogroup_11u6x.h │ │ │ ├── i2c_11u6x.h │ │ │ ├── i2c_common_11u6x.h │ │ │ ├── i2cm_11u6x.h │ │ │ ├── iap.h │ │ │ ├── iocon_11u6x.h │ │ │ ├── lpc_types.h │ │ │ ├── pinint_11u6x.h │ │ │ ├── pmu_11u6x.h │ │ │ ├── ring_buffer.h │ │ │ ├── rom_dma_11u6x.h │ │ │ ├── rom_i2c_11u6x.h │ │ │ ├── rom_pwr_11u6x.h │ │ │ ├── rom_uart_11u6x.h │ │ │ ├── romapi_11u6x.h │ │ │ ├── romdiv_11u6x.h │ │ │ ├── rtc_11u6x.h │ │ │ ├── sct_11u6x.h │ │ │ ├── ssp_11u6x.h │ │ │ ├── stopwatch.h │ │ │ ├── sys_config.h │ │ │ ├── syscon_11u6x.h │ │ │ ├── timer_11u6x.h │ │ │ ├── uart_0_11u6x.h │ │ │ ├── uart_n_11u6x.h │ │ │ ├── usbd │ │ │ │ ├── usbd.h │ │ │ │ ├── usbd_adc.h │ │ │ │ ├── usbd_cdc.h │ │ │ │ ├── usbd_cdcuser.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_desc.h │ │ │ │ ├── usbd_dfu.h │ │ │ │ ├── usbd_dfuuser.h │ │ │ │ ├── usbd_hid.h │ │ │ │ ├── usbd_hiduser.h │ │ │ │ ├── usbd_hw.h │ │ │ │ ├── usbd_msc.h │ │ │ │ ├── usbd_mscuser.h │ │ │ │ └── usbd_rom_api.h │ │ │ ├── usbd_11u6x.h │ │ │ └── wwdt_11u6x.h │ │ └── src │ │ │ ├── adc_11u6x.c │ │ │ ├── chip_11u6x.c │ │ │ ├── clock_11u6x.c │ │ │ ├── crc_11u6x.c │ │ │ ├── dma_11u6x.c │ │ │ ├── gpio_11u6x.c │ │ │ ├── gpiogroup_11u6x.c │ │ │ ├── i2c_11u6x.c │ │ │ ├── i2cm_11u6x.c │ │ │ ├── iocon_11u6x.c │ │ │ ├── pinint_11u6x.c │ │ │ ├── pmu_11u6x.c │ │ │ ├── ring_buffer.c │ │ │ ├── romdiv_11u6x.c │ │ │ ├── rtc_11u6x.c │ │ │ ├── sct_11u6x.c │ │ │ ├── ssp_11u6x.c │ │ │ ├── stopwatch_11u6.c │ │ │ ├── syscon_11u6x.c │ │ │ ├── sysinit_11u6x.c │ │ │ ├── timer_11u6x.c │ │ │ ├── uart_0_11u6x.c │ │ │ ├── uart_n_11u6x.c │ │ │ └── wwdt_11u6x.c │ └── freertos │ │ ├── Makefile │ │ ├── inc │ │ ├── FreeRTOS.h │ │ ├── FreeRTOSCommonHooks.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── list.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── portmacro.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── task.h │ │ └── timers.h │ │ └── src │ │ ├── FreeRTOSCommonHooks.c │ │ ├── heap_3.c │ │ ├── list.c │ │ ├── port.c │ │ ├── queue.c │ │ └── tasks.c ├── lpc1769 │ ├── base │ │ ├── Makefile │ │ ├── inc │ │ │ └── crp.h │ │ └── src │ │ │ ├── cr_startup_lpc175x_6x.c │ │ │ └── sysinit.c │ ├── board │ │ ├── Makefile │ │ ├── inc │ │ │ ├── board.h │ │ │ ├── board_api.h │ │ │ └── lpc_phy.h │ │ └── src │ │ │ ├── board.c │ │ │ ├── board_sysinit.c │ │ │ ├── lpc_phy_smsc87x0.c │ │ │ └── retarget.h │ ├── chip │ │ ├── Makefile │ │ ├── inc │ │ │ ├── adc_17xx_40xx.h │ │ │ ├── can_17xx_40xx.h │ │ │ ├── chip.h │ │ │ ├── chip_lpc175x_6x.h │ │ │ ├── chip_lpc177x_8x.h │ │ │ ├── chip_lpc407x_8x.h │ │ │ ├── clock_17xx_40xx.h │ │ │ ├── cmp_17xx_40xx.h │ │ │ ├── cmsis.h │ │ │ ├── cmsis_175x_6x.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── crc_17xx_40xx.h │ │ │ ├── dac_17xx_40xx.h │ │ │ ├── eeprom_17xx_40xx.h │ │ │ ├── emc_17xx_40xx.h │ │ │ ├── enet_17xx_40xx.h │ │ │ ├── error.h │ │ │ ├── fmc_17xx_40xx.h │ │ │ ├── gpdma_17xx_40xx.h │ │ │ ├── gpio_17xx_40xx.h │ │ │ ├── gpioint_17xx_40xx.h │ │ │ ├── i2c_17xx_40xx.h │ │ │ ├── i2s_17xx_40xx.h │ │ │ ├── iap.h │ │ │ ├── iocon_17xx_40xx.h │ │ │ ├── lcd_17xx_40xx.h │ │ │ ├── lpc_types.h │ │ │ ├── mcpwm_17xx_40xx.h │ │ │ ├── pmu_17xx_40xx.h │ │ │ ├── qei_17xx_40xx.h │ │ │ ├── ring_buffer.h │ │ │ ├── ritimer_17xx_40xx.h │ │ │ ├── romapi_17xx_40xx.h │ │ │ ├── rtc_17xx_40xx.h │ │ │ ├── sdc_17xx_40xx.h │ │ │ ├── sdmmc_17xx_40xx.h │ │ │ ├── spi_17xx_40xx.h │ │ │ ├── spifi_17xx_40xx.h │ │ │ ├── ssp_17xx_40xx.h │ │ │ ├── stopwatch.h │ │ │ ├── sys_config.h │ │ │ ├── sysctl_17xx_40xx.h │ │ │ ├── timer_17xx_40xx.h │ │ │ ├── uart_17xx_40xx.h │ │ │ ├── usb_17xx_40xx.h │ │ │ ├── usbd │ │ │ │ ├── usbd.h │ │ │ │ ├── usbd_adc.h │ │ │ │ ├── usbd_cdc.h │ │ │ │ ├── usbd_cdcuser.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_desc.h │ │ │ │ ├── usbd_dfu.h │ │ │ │ ├── usbd_dfuuser.h │ │ │ │ ├── usbd_hid.h │ │ │ │ ├── usbd_hiduser.h │ │ │ │ ├── usbd_hw.h │ │ │ │ ├── usbd_msc.h │ │ │ │ ├── usbd_mscuser.h │ │ │ │ └── usbd_rom_api.h │ │ │ └── wwdt_17xx_40xx.h │ │ ├── libs │ │ │ ├── libusbd_175x_6x_lib.a │ │ │ ├── libusbd_177x_8x_lib.a │ │ │ └── libusbd_40xx_lib.a │ │ └── src │ │ │ ├── adc_17xx_40xx.c │ │ │ ├── can_17xx_40xx.c │ │ │ ├── chip_17xx_40xx.c │ │ │ ├── clock_17xx_40xx.c │ │ │ ├── cmp_17xx_40xx.c │ │ │ ├── crc_17xx_40xx.c │ │ │ ├── dac_17xx_40xx.c │ │ │ ├── eeprom_17xx_40xx.c │ │ │ ├── emc_17xx_40xx.c │ │ │ ├── enet_17xx_40xx.c │ │ │ ├── gpdma_17xx_40xx.c │ │ │ ├── gpio_17xx_40xx.c │ │ │ ├── gpioint_17xx_40xx.c │ │ │ ├── i2c_17xx_40xx.c │ │ │ ├── i2s_17xx_40xx.c │ │ │ ├── iap.c │ │ │ ├── iocon_17xx_40xx.c │ │ │ ├── lcd_17xx_40xx.c │ │ │ ├── pmu_17xx_40xx.c │ │ │ ├── ring_buffer.c │ │ │ ├── ritimer_17xx_40xx.c │ │ │ ├── rtc_17xx_40xx.c │ │ │ ├── sdc_17xx_40xx.c │ │ │ ├── sdmmc_17xx_40xx.c │ │ │ ├── spi_17xx_40xx.c │ │ │ ├── ssp_17xx_40xx.c │ │ │ ├── stopwatch_17xx_40xx.c │ │ │ ├── sysctl_17xx_40xx.c │ │ │ ├── sysinit_17xx_40xx.c │ │ │ ├── timer_17xx_40xx.c │ │ │ ├── uart_17xx_40xx.c │ │ │ └── wwdt_17xx_40xx.c │ ├── dsp │ │ ├── Makefile │ │ ├── inc │ │ │ ├── arm │ │ │ │ └── arm_math.h │ │ │ ├── arm_math.h │ │ │ └── math_helper.h │ │ └── lib │ │ │ └── libCMSIS_DSPLIB_CM3.a │ ├── freertos │ │ ├── Makefile │ │ ├── inc │ │ │ ├── FreeRTOS.h │ │ │ ├── FreeRTOSCommonHooks.h │ │ │ ├── StackMacros.h │ │ │ ├── croutine.h │ │ │ ├── list.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── portmacro.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── task.h │ │ │ └── timers.h │ │ └── src │ │ │ ├── FreeRTOSCommonHooks.c │ │ │ ├── heap_3.c │ │ │ ├── list.c │ │ │ ├── port.c │ │ │ ├── queue.c │ │ │ └── tasks.c │ └── lwip │ │ ├── Makefile │ │ ├── inc │ │ ├── arch │ │ │ ├── cc.h │ │ │ ├── lpc17xx_40xx_emac.h │ │ │ ├── lpc_arch.h │ │ │ ├── perf.h │ │ │ └── sys_arch.h │ │ ├── ipv4 │ │ │ └── lwip │ │ │ │ ├── autoip.h │ │ │ │ ├── icmp.h │ │ │ │ ├── igmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── inet_chksum.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip_addr.h │ │ │ │ └── ip_frag.h │ │ ├── lwip │ │ │ ├── api.h │ │ │ ├── api_msg.h │ │ │ ├── arch.h │ │ │ ├── debug.h │ │ │ ├── def.h │ │ │ ├── dhcp.h │ │ │ ├── dns.h │ │ │ ├── err.h │ │ │ ├── init.h │ │ │ ├── mem.h │ │ │ ├── memp.h │ │ │ ├── memp_std.h │ │ │ ├── netbuf.h │ │ │ ├── netdb.h │ │ │ ├── netif.h │ │ │ ├── netifapi.h │ │ │ ├── opt.h │ │ │ ├── pbuf.h │ │ │ ├── raw.h │ │ │ ├── sio.h │ │ │ ├── snmp.h │ │ │ ├── snmp_asn1.h │ │ │ ├── snmp_msg.h │ │ │ ├── snmp_structs.h │ │ │ ├── sockets.h │ │ │ ├── stats.h │ │ │ ├── sys.h │ │ │ ├── tcp.h │ │ │ ├── tcp_impl.h │ │ │ ├── tcpip.h │ │ │ ├── timers.h │ │ │ └── udp.h │ │ ├── netif │ │ │ ├── etharp.h │ │ │ ├── ppp_oe.h │ │ │ └── slipif.h │ │ └── posix │ │ │ ├── netdb.h │ │ │ └── sys │ │ │ └── socket.h │ │ └── src │ │ ├── FILES │ │ ├── api │ │ ├── api_lib.c │ │ ├── api_msg.c │ │ ├── err.c │ │ ├── netbuf.c │ │ ├── netdb.c │ │ ├── netifapi.c │ │ ├── sockets.c │ │ └── tcpip.c │ │ ├── arch │ │ ├── lpc17xx_40xx_emac.c │ │ ├── lpc_debug.c │ │ └── sys_arch_freertos.c │ │ ├── core │ │ ├── def.c │ │ ├── dhcp.c │ │ ├── dns.c │ │ ├── init.c │ │ ├── ipv4 │ │ │ ├── autoip.c │ │ │ ├── icmp.c │ │ │ ├── igmp.c │ │ │ ├── inet.c │ │ │ ├── inet_chksum.c │ │ │ ├── ip.c │ │ │ ├── ip_addr.c │ │ │ └── ip_frag.c │ │ ├── mem.c │ │ ├── memp.c │ │ ├── netif.c │ │ ├── pbuf.c │ │ ├── raw.c │ │ ├── stats.c │ │ ├── sys.c │ │ ├── tcp.c │ │ ├── tcp_in.c │ │ ├── tcp_out.c │ │ ├── timers.c │ │ └── udp.c │ │ └── netif │ │ ├── FILES │ │ ├── etharp.c │ │ └── ethernetif.c ├── lpc4337_m0 │ ├── base │ │ ├── Makefile │ │ ├── inc │ │ │ └── .gitignore │ │ └── src │ │ │ ├── cr_startup_lpc43xx-m0app.c │ │ │ └── sysinit.c │ ├── board │ │ ├── Makefile │ │ ├── inc │ │ │ ├── board.h │ │ │ ├── board_api.h │ │ │ ├── lcd_st7565s.h │ │ │ ├── lpc_phy.h │ │ │ ├── retarget.h │ │ │ └── wm8904.h │ │ └── src │ │ │ ├── board.c │ │ │ ├── board_sysinit.c │ │ │ ├── lcd_st7565s.c │ │ │ ├── lpc_phy_smsc87x0.c │ │ │ └── wm8904.c │ ├── chip │ │ ├── Makefile │ │ ├── inc │ │ │ ├── adc_18xx_43xx.h │ │ │ ├── aes_18xx_43xx.h │ │ │ ├── atimer_18xx_43xx.h │ │ │ ├── ccan_18xx_43xx.h │ │ │ ├── cguccu_18xx_43xx.h │ │ │ ├── chip.h │ │ │ ├── chip_clocks.h │ │ │ ├── chip_lpc18xx.h │ │ │ ├── chip_lpc43xx.h │ │ │ ├── clock_18xx_43xx.h │ │ │ ├── cmsis.h │ │ │ ├── config_m0app │ │ │ │ ├── cmsis_43xx_m0app.h │ │ │ │ └── sys_config.h │ │ │ ├── config_m0sub │ │ │ │ ├── cmsis_43xx_m0sub.h │ │ │ │ └── sys_config.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── creg_18xx_43xx.h │ │ │ ├── dac_18xx_43xx.h │ │ │ ├── eeprom_18xx_43xx.h │ │ │ ├── emc_18xx_43xx.h │ │ │ ├── enet_18xx_43xx.h │ │ │ ├── error.h │ │ │ ├── evrt_18xx_43xx.h │ │ │ ├── fmc_18xx_43xx.h │ │ │ ├── gima_18xx_43xx.h │ │ │ ├── gpdma_18xx_43xx.h │ │ │ ├── gpio_18xx_43xx.h │ │ │ ├── gpiogroup_18xx_43xx.h │ │ │ ├── hsadc_18xx_43xx.h │ │ │ ├── i2c_18xx_43xx.h │ │ │ ├── i2c_common_18xx_43xx.h │ │ │ ├── i2cm_18xx_43xx.h │ │ │ ├── i2s_18xx_43xx.h │ │ │ ├── iap.h │ │ │ ├── iap_18xx_43xx.h │ │ │ ├── lcd_18xx_43xx.h │ │ │ ├── lpc_types.h │ │ │ ├── mcpwm_18xx_43xx.h │ │ │ ├── otp_18xx_43xx.h │ │ │ ├── pinint_18xx_43xx.h │ │ │ ├── pmc_18xx_43xx.h │ │ │ ├── qei_18xx_43xx.h │ │ │ ├── rgu_18xx_43xx.h │ │ │ ├── ring_buffer.h │ │ │ ├── ritimer_18xx_43xx.h │ │ │ ├── romapi_18xx_43xx.h │ │ │ ├── rtc_18xx_43xx.h │ │ │ ├── sct_18xx_43xx.h │ │ │ ├── sct_pwm_18xx_43xx.h │ │ │ ├── scu_18xx_43xx.h │ │ │ ├── sdif_18xx_43xx.h │ │ │ ├── sdio_18xx_43xx.h │ │ │ ├── sdmmc.h │ │ │ ├── sdmmc_18xx_43xx.h │ │ │ ├── sgpio_18xx_43xx.h │ │ │ ├── spi_18xx_43xx.h │ │ │ ├── ssp_18xx_43xx.h │ │ │ ├── stopwatch.h │ │ │ ├── timer_18xx_43xx.h │ │ │ ├── uart_18xx_43xx.h │ │ │ ├── usbd │ │ │ │ ├── usbd.h │ │ │ │ ├── usbd_adc.h │ │ │ │ ├── usbd_cdc.h │ │ │ │ ├── usbd_cdcuser.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_desc.h │ │ │ │ ├── usbd_dfu.h │ │ │ │ ├── usbd_dfuuser.h │ │ │ │ ├── usbd_hid.h │ │ │ │ ├── usbd_hiduser.h │ │ │ │ ├── usbd_hw.h │ │ │ │ ├── usbd_msc.h │ │ │ │ ├── usbd_mscuser.h │ │ │ │ └── usbd_rom_api.h │ │ │ ├── usbhs_18xx_43xx.h │ │ │ └── wwdt_18xx_43xx.h │ │ └── src │ │ │ ├── adc_18xx_43xx.c │ │ │ ├── aes_18xx_43xx.c │ │ │ ├── atimer_18xx_43xx.c │ │ │ ├── ccan_18xx_43xx.c │ │ │ ├── chip_18xx_43xx.c │ │ │ ├── clock_18xx_43xx.c │ │ │ ├── dac_18xx_43xx.c │ │ │ ├── eeprom_18xx_43xx.c │ │ │ ├── emc_18xx_43xx.c │ │ │ ├── enet_18xx_43xx.c │ │ │ ├── evrt_18xx_43xx.c │ │ │ ├── gpdma_18xx_43xx.c │ │ │ ├── gpio_18xx_43xx.c │ │ │ ├── gpiogroup_18xx_43xx.c │ │ │ ├── hsadc_18xx_43xx.c │ │ │ ├── i2c_18xx_43xx.c │ │ │ ├── i2cm_18xx_43xx.c │ │ │ ├── i2s_18xx_43xx.c │ │ │ ├── iap_18xx_43xx.c │ │ │ ├── lcd_18xx_43xx.c │ │ │ ├── otp_18xx_43xx.c │ │ │ ├── pinint_18xx_43xx.c │ │ │ ├── pmc_18xx_43xx.c │ │ │ ├── ring_buffer.c │ │ │ ├── ritimer_18xx_43xx.c │ │ │ ├── rtc_18xx_43xx.c │ │ │ ├── sct_18xx_43xx.c │ │ │ ├── sct_pwm_18xx_43xx.c │ │ │ ├── sdif_18xx_43xx.c │ │ │ ├── sdio_18xx_43xx.c │ │ │ ├── sdmmc_18xx_43xx.c │ │ │ ├── spi_18xx_43xx.c │ │ │ ├── ssp_18xx_43xx.c │ │ │ ├── stopwatch_18xx_43xx.c │ │ │ ├── sysinit_18xx_43xx.c │ │ │ ├── timer_18xx_43xx.c │ │ │ ├── uart_18xx_43xx.c │ │ │ └── wwdt_18xx_43xx.c │ └── dsp │ │ ├── Makefile │ │ ├── inc │ │ ├── arm │ │ │ └── arm_math.h │ │ ├── arm_math.h │ │ └── math_helper.h │ │ └── lib │ │ └── libCMSIS_DSPLIB_CM0.a ├── lpc4337_m4 │ ├── base │ │ ├── Makefile │ │ ├── inc │ │ │ └── cr_start_m0.h │ │ └── src │ │ │ ├── cr_start_m0.c │ │ │ ├── cr_startup_lpc43xx.c │ │ │ └── sysinit.c │ ├── board │ │ ├── Makefile │ │ ├── inc │ │ │ ├── board.h │ │ │ ├── board_api.h │ │ │ ├── lpc_phy.h │ │ │ └── mem_tests.h │ │ └── src │ │ │ ├── board.c │ │ │ ├── board_sysinit.c │ │ │ ├── lpc_phy_smsc87x0.c │ │ │ ├── mem_tests.c │ │ │ └── retarget.h │ ├── chip │ │ ├── Makefile │ │ ├── inc │ │ │ ├── adc_18xx_43xx.h │ │ │ ├── aes_18xx_43xx.h │ │ │ ├── atimer_18xx_43xx.h │ │ │ ├── ccan_18xx_43xx.h │ │ │ ├── cguccu_18xx_43xx.h │ │ │ ├── chip.h │ │ │ ├── chip_clocks.h │ │ │ ├── chip_lpc18xx.h │ │ │ ├── chip_lpc43xx.h │ │ │ ├── clock_18xx_43xx.h │ │ │ ├── cmsis.h │ │ │ ├── cmsis_43xx.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm4_simd.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── creg_18xx_43xx.h │ │ │ ├── dac_18xx_43xx.h │ │ │ ├── eeprom_18xx_43xx.h │ │ │ ├── emc_18xx_43xx.h │ │ │ ├── enet_18xx_43xx.h │ │ │ ├── error.h │ │ │ ├── evrt_18xx_43xx.h │ │ │ ├── fmc_18xx_43xx.h │ │ │ ├── fpu_init.h │ │ │ ├── gima_18xx_43xx.h │ │ │ ├── gpdma_18xx_43xx.h │ │ │ ├── gpio_18xx_43xx.h │ │ │ ├── gpiogroup_18xx_43xx.h │ │ │ ├── hsadc_18xx_43xx.h │ │ │ ├── i2c_18xx_43xx.h │ │ │ ├── i2c_common_18xx_43xx.h │ │ │ ├── i2cm_18xx_43xx.h │ │ │ ├── i2s_18xx_43xx.h │ │ │ ├── iap.h │ │ │ ├── iap_18xx_43xx.h │ │ │ ├── lcd_18xx_43xx.h │ │ │ ├── lpc_types.h │ │ │ ├── mcpwm_18xx_43xx.h │ │ │ ├── otp_18xx_43xx.h │ │ │ ├── pinint_18xx_43xx.h │ │ │ ├── pmc_18xx_43xx.h │ │ │ ├── qei_18xx_43xx.h │ │ │ ├── rgu_18xx_43xx.h │ │ │ ├── ring_buffer.h │ │ │ ├── ritimer_18xx_43xx.h │ │ │ ├── romapi_18xx_43xx.h │ │ │ ├── rtc_18xx_43xx.h │ │ │ ├── sct_18xx_43xx.h │ │ │ ├── sct_pwm_18xx_43xx.h │ │ │ ├── scu_18xx_43xx.h │ │ │ ├── sdif_18xx_43xx.h │ │ │ ├── sdio_18xx_43xx.h │ │ │ ├── sdmmc.h │ │ │ ├── sdmmc_18xx_43xx.h │ │ │ ├── sgpio_18xx_43xx.h │ │ │ ├── spi_18xx_43xx.h │ │ │ ├── ssp_18xx_43xx.h │ │ │ ├── stopwatch.h │ │ │ ├── sys_config.h │ │ │ ├── timer_18xx_43xx.h │ │ │ ├── uart_18xx_43xx.h │ │ │ ├── usbd │ │ │ │ ├── usbd.h │ │ │ │ ├── usbd_adc.h │ │ │ │ ├── usbd_cdc.h │ │ │ │ ├── usbd_cdcuser.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_desc.h │ │ │ │ ├── usbd_dfu.h │ │ │ │ ├── usbd_dfuuser.h │ │ │ │ ├── usbd_hid.h │ │ │ │ ├── usbd_hiduser.h │ │ │ │ ├── usbd_hw.h │ │ │ │ ├── usbd_msc.h │ │ │ │ ├── usbd_mscuser.h │ │ │ │ └── usbd_rom_api.h │ │ │ ├── usbhs_18xx_43xx.h │ │ │ └── wwdt_18xx_43xx.h │ │ └── src │ │ │ ├── adc_18xx_43xx.c │ │ │ ├── aes_18xx_43xx.c │ │ │ ├── atimer_18xx_43xx.c │ │ │ ├── ccan_18xx_43xx.c │ │ │ ├── chip_18xx_43xx.c │ │ │ ├── clock_18xx_43xx.c │ │ │ ├── dac_18xx_43xx.c │ │ │ ├── eeprom_18xx_43xx.c │ │ │ ├── emc_18xx_43xx.c │ │ │ ├── enet_18xx_43xx.c │ │ │ ├── evrt_18xx_43xx.c │ │ │ ├── fpu_init.c │ │ │ ├── gpdma_18xx_43xx.c │ │ │ ├── gpio_18xx_43xx.c │ │ │ ├── gpiogroup_18xx_43xx.c │ │ │ ├── hsadc_18xx_43xx.c │ │ │ ├── i2c_18xx_43xx.c │ │ │ ├── i2cm_18xx_43xx.c │ │ │ ├── i2s_18xx_43xx.c │ │ │ ├── iap_18xx_43xx.c │ │ │ ├── lcd_18xx_43xx.c │ │ │ ├── otp_18xx_43xx.c │ │ │ ├── pinint_18xx_43xx.c │ │ │ ├── pmc_18xx_43xx.c │ │ │ ├── ring_buffer.c │ │ │ ├── ritimer_18xx_43xx.c │ │ │ ├── rtc_18xx_43xx.c │ │ │ ├── sct_18xx_43xx.c │ │ │ ├── sct_pwm_18xx_43xx.c │ │ │ ├── sdif_18xx_43xx.c │ │ │ ├── sdio_18xx_43xx.c │ │ │ ├── sdmmc_18xx_43xx.c │ │ │ ├── spi_18xx_43xx.c │ │ │ ├── ssp_18xx_43xx.c │ │ │ ├── stopwatch_18xx_43xx.c │ │ │ ├── sysinit_18xx_43xx.c │ │ │ ├── timer_18xx_43xx.c │ │ │ ├── uart_18xx_43xx.c │ │ │ └── wwdt_18xx_43xx.c │ ├── ciaa │ │ ├── Makefile │ │ ├── inc │ │ │ ├── ciaaAIN.h │ │ │ ├── ciaaAOUT.h │ │ │ ├── ciaaI2C.h │ │ │ ├── ciaaIO.h │ │ │ ├── ciaaNVM.h │ │ │ └── ciaaUART.h │ │ └── src │ │ │ ├── ciaaAIN.c │ │ │ ├── ciaaAOUT.c │ │ │ ├── ciaaI2C.c │ │ │ ├── ciaaIO.c │ │ │ ├── ciaaNVM.c │ │ │ └── ciaaUART.c │ ├── dsp │ │ ├── Makefile │ │ ├── inc │ │ │ ├── arm │ │ │ │ └── arm_math.h │ │ │ ├── arm_math.h │ │ │ └── math_helper.h │ │ └── lib │ │ │ └── libCMSIS_DSPLIB_CM4.a │ ├── fatfs │ │ ├── Makefile │ │ ├── inc │ │ │ ├── diskio.h │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ ├── integer.h │ │ │ └── rtc.h │ │ └── src │ │ │ ├── ff.c │ │ │ ├── fs_usb.c │ │ │ └── rtc.c │ ├── fatfs_ssp │ │ ├── Makefile │ │ ├── inc │ │ │ ├── diskio.h │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ ├── integer.h │ │ │ └── rtc.h │ │ └── src │ │ │ ├── ff.c │ │ │ ├── mmc.c │ │ │ └── rtc.c │ ├── freertos │ │ ├── Makefile │ │ ├── inc │ │ │ ├── FreeRTOS.h │ │ │ ├── FreeRTOSCommonHooks.h │ │ │ ├── StackMacros.h │ │ │ ├── croutine.h │ │ │ ├── event_groups.h │ │ │ ├── list.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── portmacro.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── task.h │ │ │ └── timers.h │ │ └── src │ │ │ ├── FreeRTOSCommonHooks.c │ │ │ ├── croutine.c │ │ │ ├── event_groups.c │ │ │ ├── heap_4.c │ │ │ ├── list.c │ │ │ ├── port.c │ │ │ ├── queue.c │ │ │ ├── redlib_memfix.c │ │ │ ├── tasks.c │ │ │ └── timers.c │ ├── lpcusblib │ │ ├── Common │ │ │ ├── Attributes.h │ │ │ ├── Common.h │ │ │ ├── CompilerSpecific.h │ │ │ └── Endianness.h │ │ ├── Drivers │ │ │ └── USB │ │ │ │ ├── Class │ │ │ │ ├── AudioClass.h │ │ │ │ ├── CDCClass.h │ │ │ │ ├── Common │ │ │ │ │ ├── AudioClassCommon.h │ │ │ │ │ ├── CDCClassCommon.h │ │ │ │ │ ├── HIDClassCommon.h │ │ │ │ │ ├── HIDParser.c │ │ │ │ │ ├── HIDParser.h │ │ │ │ │ ├── HIDReportData.h │ │ │ │ │ ├── MIDIClassCommon.h │ │ │ │ │ ├── MassStorageClassCommon.h │ │ │ │ │ ├── PrinterClassCommon.h │ │ │ │ │ ├── RNDISClassCommon.h │ │ │ │ │ └── StillImageClassCommon.h │ │ │ │ ├── HIDClass.h │ │ │ │ ├── Host │ │ │ │ │ ├── AudioClassHost.h │ │ │ │ │ ├── CDCClassHost.h │ │ │ │ │ ├── HIDClassHost.h │ │ │ │ │ ├── MIDIClassHost.h │ │ │ │ │ ├── MassStorageClassHost.c │ │ │ │ │ ├── MassStorageClassHost.h │ │ │ │ │ ├── PrinterClassHost.h │ │ │ │ │ ├── RNDISClassHost.h │ │ │ │ │ └── StillImageClassHost.h │ │ │ │ ├── MIDIClass.h │ │ │ │ ├── MassStorageClass.h │ │ │ │ ├── PrinterClass.h │ │ │ │ ├── RNDISClass.h │ │ │ │ └── StillImageClass.h │ │ │ │ ├── Core │ │ │ │ ├── ConfigDescriptor.c │ │ │ │ ├── ConfigDescriptor.h │ │ │ │ ├── Events.h │ │ │ │ ├── HAL │ │ │ │ │ ├── HAL.h │ │ │ │ │ └── LPC18XX │ │ │ │ │ │ ├── HAL_LPC18xx.c │ │ │ │ │ │ └── HAL_LPC18xx.h │ │ │ │ ├── HCD │ │ │ │ │ ├── EHCI │ │ │ │ │ │ ├── EHCI.c │ │ │ │ │ │ └── EHCI.h │ │ │ │ │ ├── HCD.c │ │ │ │ │ └── HCD.h │ │ │ │ ├── Host.c │ │ │ │ ├── Host.h │ │ │ │ ├── HostStandardReq.c │ │ │ │ ├── HostStandardReq.h │ │ │ │ ├── OTG.h │ │ │ │ ├── Pipe.c │ │ │ │ ├── Pipe.h │ │ │ │ ├── PipeStream.c │ │ │ │ ├── PipeStream.h │ │ │ │ ├── StdDescriptors.h │ │ │ │ ├── StdRequestType.h │ │ │ │ ├── USBController.c │ │ │ │ ├── USBController.h │ │ │ │ ├── USBInterrupt.h │ │ │ │ ├── USBMemory.c │ │ │ │ ├── USBMemory.h │ │ │ │ ├── USBMode.h │ │ │ │ ├── USBTask.c │ │ │ │ └── USBTask.h │ │ │ │ └── USB.h │ │ ├── LPCUSBlibConfig.h │ │ ├── License.txt │ │ ├── Makefile │ │ ├── Readme.txt │ │ └── Version.h │ ├── lwip │ │ ├── Makefile │ │ ├── inc │ │ │ ├── arch │ │ │ │ ├── cc.h │ │ │ │ ├── lpc18xx_43xx_emac.h │ │ │ │ ├── lpc_arch.h │ │ │ │ ├── perf.h │ │ │ │ └── sys_arch.h │ │ │ ├── ipv4 │ │ │ │ └── lwip │ │ │ │ │ ├── autoip.h │ │ │ │ │ ├── icmp.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ └── ip_frag.h │ │ │ ├── lwip │ │ │ │ ├── api.h │ │ │ │ ├── api_msg.h │ │ │ │ ├── arch.h │ │ │ │ ├── debug.h │ │ │ │ ├── def.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dns.h │ │ │ │ ├── err.h │ │ │ │ ├── init.h │ │ │ │ ├── mem.h │ │ │ │ ├── memp.h │ │ │ │ ├── memp_std.h │ │ │ │ ├── netbuf.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netif.h │ │ │ │ ├── netifapi.h │ │ │ │ ├── opt.h │ │ │ │ ├── pbuf.h │ │ │ │ ├── raw.h │ │ │ │ ├── sio.h │ │ │ │ ├── snmp.h │ │ │ │ ├── snmp_asn1.h │ │ │ │ ├── snmp_msg.h │ │ │ │ ├── snmp_structs.h │ │ │ │ ├── sockets.h │ │ │ │ ├── stats.h │ │ │ │ ├── sys.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcp_impl.h │ │ │ │ ├── tcpip.h │ │ │ │ ├── timers.h │ │ │ │ └── udp.h │ │ │ ├── netif │ │ │ │ ├── etharp.h │ │ │ │ ├── ppp_oe.h │ │ │ │ └── slipif.h │ │ │ └── posix │ │ │ │ ├── netdb.h │ │ │ │ └── sys │ │ │ │ └── socket.h │ │ └── src │ │ │ ├── FILES │ │ │ ├── api │ │ │ ├── api_lib.c │ │ │ ├── api_msg.c │ │ │ ├── err.c │ │ │ ├── netbuf.c │ │ │ ├── netdb.c │ │ │ ├── netifapi.c │ │ │ ├── sockets.c │ │ │ └── tcpip.c │ │ │ ├── arch │ │ │ ├── lpc18xx_43xx_emac.c │ │ │ ├── lpc_debug.c │ │ │ └── sys_arch_freertos.c │ │ │ ├── core │ │ │ ├── def.c │ │ │ ├── dhcp.c │ │ │ ├── dns.c │ │ │ ├── init.c │ │ │ ├── ipv4 │ │ │ │ ├── autoip.c │ │ │ │ ├── icmp.c │ │ │ │ ├── igmp.c │ │ │ │ ├── inet.c │ │ │ │ ├── inet_chksum.c │ │ │ │ ├── ip.c │ │ │ │ ├── ip_addr.c │ │ │ │ └── ip_frag.c │ │ │ ├── mem.c │ │ │ ├── memp.c │ │ │ ├── netif.c │ │ │ ├── pbuf.c │ │ │ ├── raw.c │ │ │ ├── stats.c │ │ │ ├── sys.c │ │ │ ├── tcp.c │ │ │ ├── tcp_in.c │ │ │ ├── tcp_out.c │ │ │ ├── timers.c │ │ │ └── udp.c │ │ │ └── netif │ │ │ ├── FILES │ │ │ ├── etharp.c │ │ │ └── ethernetif.c │ ├── osek │ │ ├── Makefile │ │ ├── doc │ │ │ ├── Documentation_rtos │ │ │ ├── FreeOSEK.doc │ │ │ └── FreeOSEK.req │ │ ├── gen │ │ │ ├── inc │ │ │ │ ├── Os_Cfg.h.php │ │ │ │ ├── Os_Internal_Cfg.h.php │ │ │ │ └── cortexM4 │ │ │ │ │ └── Os_Internal_Arch_Cfg.h.php │ │ │ ├── src │ │ │ │ ├── Os_Cfg.c.php │ │ │ │ ├── Os_Internal_Cfg.c.php │ │ │ │ └── cortexM4 │ │ │ │ │ └── Os_Internal_Arch_Cfg.c.php │ │ │ └── tst │ │ │ │ ├── config_test.php │ │ │ │ └── example.oil │ │ ├── generator │ │ │ ├── config.php │ │ │ ├── generator.php │ │ │ ├── multicore.php │ │ │ └── oilParser.php │ │ ├── inc │ │ │ ├── Compiler.h │ │ │ ├── Os_Internal.h │ │ │ ├── Types.h │ │ │ ├── Types_Arch.h │ │ │ ├── cortexM4 │ │ │ │ ├── Os_Arch.h │ │ │ │ ├── Os_Internal_Arch.h │ │ │ │ ├── StartOs_Arch_SysTick.h │ │ │ │ ├── k60_120 │ │ │ │ │ └── Os_Internal_Arch_Cpu.h │ │ │ │ └── lpc43xx │ │ │ │ │ └── Os_Internal_Arch_Cpu.h │ │ │ └── os.h │ │ ├── src │ │ │ ├── ActivateTask.c │ │ │ ├── CancelAlarm.c │ │ │ ├── ChainTask.c │ │ │ ├── ClearEvent.c │ │ │ ├── GetActiveApplicationMode.c │ │ │ ├── GetAlarm.c │ │ │ ├── GetAlarmBase.c │ │ │ ├── GetEvent.c │ │ │ ├── GetResource.c │ │ │ ├── GetTaskID.c │ │ │ ├── GetTaskState.c │ │ │ ├── Os.c │ │ │ ├── Os_Internal.c │ │ │ ├── ReleaseResource.c │ │ │ ├── Schedule.c │ │ │ ├── SetAbsAlarm.c │ │ │ ├── SetEvent.c │ │ │ ├── SetRelAlarm.c │ │ │ ├── ShutdownOS.c │ │ │ ├── StartOS.c │ │ │ ├── TerminateTask.c │ │ │ ├── WaitEvent.c │ │ │ └── cortexM4 │ │ │ │ ├── Os_Arch.c │ │ │ │ ├── Os_Internal_Arch.c │ │ │ │ ├── PendSV.S │ │ │ │ ├── StartOs_Arch.c │ │ │ │ └── StartOs_Arch_SysTick.c │ │ └── tst │ │ │ ├── ctest │ │ │ ├── bin │ │ │ │ └── ctest.pl │ │ │ ├── cfg │ │ │ │ ├── ctestcases.cfg │ │ │ │ └── testcases.cfg │ │ │ ├── dbg │ │ │ │ ├── cortexM0 │ │ │ │ │ └── gcc │ │ │ │ │ │ └── debug.scr │ │ │ │ ├── cortexM4 │ │ │ │ │ └── gcc │ │ │ │ │ │ └── debug.scr │ │ │ │ └── x86 │ │ │ │ │ └── gcc │ │ │ │ │ └── debug.scr │ │ │ ├── doc │ │ │ │ └── ctest.pl │ │ │ ├── etc │ │ │ │ ├── OpenDRV.oil │ │ │ │ ├── ctest_al_01.oil │ │ │ │ ├── ctest_al_02.oil │ │ │ │ ├── ctest_al_03.oil │ │ │ │ ├── ctest_al_04.oil │ │ │ │ ├── ctest_al_05.oil │ │ │ │ ├── ctest_al_06.oil │ │ │ │ ├── ctest_al_07.oil │ │ │ │ ├── ctest_eh_01.oil │ │ │ │ ├── ctest_eh_02.oil │ │ │ │ ├── ctest_em_01.oil │ │ │ │ ├── ctest_em_02.oil │ │ │ │ ├── ctest_em_03.oil │ │ │ │ ├── ctest_em_04.oil │ │ │ │ ├── ctest_ip_01.oil │ │ │ │ ├── ctest_ip_03.oil │ │ │ │ ├── ctest_ip_04.oil │ │ │ │ ├── ctest_rm_01.oil │ │ │ │ ├── ctest_rm_02.oil │ │ │ │ ├── ctest_rm_03.oil │ │ │ │ ├── ctest_rm_04.oil │ │ │ │ ├── ctest_rm_05.oil │ │ │ │ ├── ctest_tm_01.oil │ │ │ │ ├── ctest_tm_02.oil │ │ │ │ ├── ctest_tm_03.oil │ │ │ │ ├── ctest_tm_04.oil │ │ │ │ ├── ctest_tm_05.oil │ │ │ │ ├── ctest_tm_06.oil │ │ │ │ ├── ctest_tm_07.oil │ │ │ │ ├── ctest_tm_08.oil │ │ │ │ ├── ctest_tm_09.oil │ │ │ │ ├── ctest_tm_10.oil │ │ │ │ ├── ctest_tm_11.oil │ │ │ │ ├── ctest_tm_12.oil │ │ │ │ ├── ctest_tm_13.oil │ │ │ │ ├── ctest_tm_14.oil │ │ │ │ ├── ctest_tm_15.oil │ │ │ │ └── itest_ip_01.oil │ │ │ ├── gen │ │ │ │ └── inc │ │ │ │ │ └── ctest_cfg.h.php │ │ │ ├── inc │ │ │ │ ├── cortexM0 │ │ │ │ │ └── ctest_arch.h │ │ │ │ ├── cortexM4 │ │ │ │ │ └── ctest_arch.h │ │ │ │ ├── ctest.h │ │ │ │ ├── ctest_al_01.h │ │ │ │ ├── ctest_al_02.h │ │ │ │ ├── ctest_al_03.h │ │ │ │ ├── ctest_al_04.h │ │ │ │ ├── ctest_al_05.h │ │ │ │ ├── ctest_al_06.h │ │ │ │ ├── ctest_al_07.h │ │ │ │ ├── ctest_eh_01.h │ │ │ │ ├── ctest_eh_02.h │ │ │ │ ├── ctest_em_01.h │ │ │ │ ├── ctest_em_02.h │ │ │ │ ├── ctest_em_03.h │ │ │ │ ├── ctest_em_04.h │ │ │ │ ├── ctest_ip_01.h │ │ │ │ ├── ctest_ip_03.h │ │ │ │ ├── ctest_ip_04.h │ │ │ │ ├── ctest_rm_01.h │ │ │ │ ├── ctest_rm_02.h │ │ │ │ ├── ctest_rm_03.h │ │ │ │ ├── ctest_rm_04.h │ │ │ │ ├── ctest_rm_05.h │ │ │ │ ├── ctest_tm_01.h │ │ │ │ ├── ctest_tm_02.h │ │ │ │ ├── ctest_tm_03.h │ │ │ │ ├── ctest_tm_04.h │ │ │ │ ├── ctest_tm_05.h │ │ │ │ ├── ctest_tm_06.h │ │ │ │ ├── ctest_tm_07.h │ │ │ │ ├── ctest_tm_08.h │ │ │ │ ├── ctest_tm_09.h │ │ │ │ ├── ctest_tm_10.h │ │ │ │ ├── ctest_tm_11.h │ │ │ │ ├── ctest_tm_12.h │ │ │ │ ├── ctest_tm_13.h │ │ │ │ ├── ctest_tm_14.h │ │ │ │ ├── ctest_tm_15.h │ │ │ │ ├── itest_ip_01.h │ │ │ │ └── x86 │ │ │ │ │ └── ctest_arch.h │ │ │ ├── mak │ │ │ │ ├── Makefile │ │ │ │ ├── cortexM0 │ │ │ │ │ └── lpc43xx │ │ │ │ │ │ └── lpc4337 │ │ │ │ │ │ └── Makefile │ │ │ │ └── cortexM4 │ │ │ │ │ └── lpc43xx │ │ │ │ │ └── lpc4337 │ │ │ │ │ └── Makefile │ │ │ └── src │ │ │ │ ├── cortexM0 │ │ │ │ └── ctest_arch.c │ │ │ │ ├── cortexM4 │ │ │ │ └── ctest_arch.c │ │ │ │ ├── ctest_al_01.c │ │ │ │ ├── ctest_al_02.c │ │ │ │ ├── ctest_al_03.c │ │ │ │ ├── ctest_al_04.c │ │ │ │ ├── ctest_al_05.c │ │ │ │ ├── ctest_al_06.c │ │ │ │ ├── ctest_al_07.c │ │ │ │ ├── ctest_eh_01.c │ │ │ │ ├── ctest_eh_02.c │ │ │ │ ├── ctest_em_01.c │ │ │ │ ├── ctest_em_02.c │ │ │ │ ├── ctest_em_03.c │ │ │ │ ├── ctest_em_04.c │ │ │ │ ├── ctest_ip_01.c │ │ │ │ ├── ctest_ip_03.c │ │ │ │ ├── ctest_ip_04.c │ │ │ │ ├── ctest_rm_01.c │ │ │ │ ├── ctest_rm_02.c │ │ │ │ ├── ctest_rm_03.c │ │ │ │ ├── ctest_rm_04.c │ │ │ │ ├── ctest_rm_05.c │ │ │ │ ├── ctest_rst.c │ │ │ │ ├── ctest_tm_01.c │ │ │ │ ├── ctest_tm_02.c │ │ │ │ ├── ctest_tm_03.c │ │ │ │ ├── ctest_tm_04.c │ │ │ │ ├── ctest_tm_05.c │ │ │ │ ├── ctest_tm_06.c │ │ │ │ ├── ctest_tm_07.c │ │ │ │ ├── ctest_tm_08.c │ │ │ │ ├── ctest_tm_09.c │ │ │ │ ├── ctest_tm_10.c │ │ │ │ ├── ctest_tm_11.c │ │ │ │ ├── ctest_tm_12.c │ │ │ │ ├── ctest_tm_13.c │ │ │ │ ├── ctest_tm_14.c │ │ │ │ ├── ctest_tm_15.c │ │ │ │ └── itest_ip_01.c │ │ │ └── mtst │ │ │ └── mtst01 │ │ │ ├── etc │ │ │ ├── OpenDRV.oil │ │ │ ├── OpenGEN.oil │ │ │ ├── mtst01.oil │ │ │ ├── seENC.oil │ │ │ └── testsuite.oil │ │ │ ├── inc │ │ │ └── main.h │ │ │ ├── mak │ │ │ └── Makefile │ │ │ └── src │ │ │ └── main.c │ ├── sapi │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PeripheralMap_CIAA-NXP.txt │ │ ├── PeripheralMap_EDU-CIAA-NXP.txt │ │ ├── README.md │ │ ├── api_reference_es.md │ │ ├── documentation │ │ │ ├── docs │ │ │ │ ├── api.md │ │ │ │ ├── assets │ │ │ │ │ ├── img │ │ │ │ │ │ ├── 7-segment-display.png │ │ │ │ │ │ ├── keypad.png │ │ │ │ │ │ └── sapi-modulos-capas.png │ │ │ │ │ └── pdf │ │ │ │ │ │ ├── EDU-CIAA-NXP_Pinout_A4_v4r3_ES.pdf │ │ │ │ │ │ ├── sAPI-01-Introducción.pdf │ │ │ │ │ │ ├── sAPI-02-Diseño.pdf │ │ │ │ │ │ ├── sAPI-03-API.pdf │ │ │ │ │ │ ├── sAPI-04-Utilización.pdf │ │ │ │ │ │ └── sAPI-05-Ejemplos.pdf │ │ │ │ ├── diseno.md │ │ │ │ ├── ejemplos.md │ │ │ │ ├── index.md │ │ │ │ └── utilizacion.md │ │ │ └── mkdocs.yml │ │ ├── inc │ │ │ ├── sapi.h │ │ │ ├── sapi_7_segment_display.h │ │ │ ├── sapi_adc.h │ │ │ ├── sapi_board.h │ │ │ ├── sapi_circularBuffer.h │ │ │ ├── sapi_consolePrint.h │ │ │ ├── sapi_convert.h │ │ │ ├── sapi_cyclesCounter.h │ │ │ ├── sapi_dac.h │ │ │ ├── sapi_datatypes.h │ │ │ ├── sapi_debugPrint.h │ │ │ ├── sapi_delay.h │ │ │ ├── sapi_dht11.h │ │ │ ├── sapi_esp8266.h │ │ │ ├── sapi_gpio.h │ │ │ ├── sapi_i2c.h │ │ │ ├── sapi_keypad.h │ │ │ ├── sapi_lcd.h │ │ │ ├── sapi_magnetometer_hmc5883l.h │ │ │ ├── sapi_magnetometer_qmc5883l.h │ │ │ ├── sapi_peripheral_map.h │ │ │ ├── sapi_print.h │ │ │ ├── sapi_pwm.h │ │ │ ├── sapi_rgb.h │ │ │ ├── sapi_rtc.h │ │ │ ├── sapi_sct.h │ │ │ ├── sapi_servo.h │ │ │ ├── sapi_sleep.h │ │ │ ├── sapi_spi.h │ │ │ ├── sapi_stdio.h │ │ │ ├── sapi_tick.h │ │ │ ├── sapi_timer.h │ │ │ ├── sapi_uart.h │ │ │ └── sapi_ultrasonic_hcsr04.h │ │ ├── src │ │ │ ├── sapi_7_segment_display.c │ │ │ ├── sapi_adc.c │ │ │ ├── sapi_board.c │ │ │ ├── sapi_circularBuffer.c │ │ │ ├── sapi_convert.c │ │ │ ├── sapi_cyclesCounter.c │ │ │ ├── sapi_dac.c │ │ │ ├── sapi_datatypes.c │ │ │ ├── sapi_delay.c │ │ │ ├── sapi_dht11.c │ │ │ ├── sapi_esp8266.c │ │ │ ├── sapi_gpio.c │ │ │ ├── sapi_i2c.c │ │ │ ├── sapi_keypad.c │ │ │ ├── sapi_lcd.c │ │ │ ├── sapi_magnetometer_hmc5883l.c │ │ │ ├── sapi_magnetometer_qmc5883l.c │ │ │ ├── sapi_print.c │ │ │ ├── sapi_pwm.c │ │ │ ├── sapi_rgb.c │ │ │ ├── sapi_rtc.c │ │ │ ├── sapi_sct.c │ │ │ ├── sapi_servo.c │ │ │ ├── sapi_sleep.c │ │ │ ├── sapi_spi.c │ │ │ ├── sapi_stdio.c │ │ │ ├── sapi_tick.c │ │ │ ├── sapi_timer.c │ │ │ ├── sapi_uart.c │ │ │ └── sapi_ultrasonic_hcsr04.c │ │ └── version.md │ └── sapi_rtos │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PeripheralMap_CIAA-NXP.txt │ │ ├── PeripheralMap_EDU-CIAA-NXP.txt │ │ ├── README.md │ │ ├── api_reference_es.md │ │ ├── documentation │ │ ├── docs │ │ │ ├── api.md │ │ │ ├── assets │ │ │ │ ├── img │ │ │ │ │ ├── 7-segment-display.png │ │ │ │ │ ├── keypad.png │ │ │ │ │ └── sapi-modulos-capas.png │ │ │ │ └── pdf │ │ │ │ │ ├── EDU-CIAA-NXP_Pinout_A4_v4r3_ES.pdf │ │ │ │ │ ├── sAPI-01-Introducción.pdf │ │ │ │ │ ├── sAPI-02-Diseño.pdf │ │ │ │ │ ├── sAPI-03-API.pdf │ │ │ │ │ ├── sAPI-04-Utilización.pdf │ │ │ │ │ └── sAPI-05-Ejemplos.pdf │ │ │ ├── diseno.md │ │ │ ├── ejemplos.md │ │ │ ├── index.md │ │ │ └── utilizacion.md │ │ └── mkdocs.yml │ │ ├── inc │ │ ├── sapi.h │ │ ├── sapi_7_segment_display.h │ │ ├── sapi_adc.h │ │ ├── sapi_board.h │ │ ├── sapi_circularBuffer.h │ │ ├── sapi_consolePrint.h │ │ ├── sapi_convert.h │ │ ├── sapi_cyclesCounter.h │ │ ├── sapi_dac.h │ │ ├── sapi_datatypes.h │ │ ├── sapi_debugPrint.h │ │ ├── sapi_delay.h │ │ ├── sapi_dht11.h │ │ ├── sapi_esp8266.h │ │ ├── sapi_gpio.h │ │ ├── sapi_i2c.h │ │ ├── sapi_keypad.h │ │ ├── sapi_lcd.h │ │ ├── sapi_magnetometer_hmc5883l.h │ │ ├── sapi_magnetometer_qmc5883l.h │ │ ├── sapi_peripheral_map.h │ │ ├── sapi_print.h │ │ ├── sapi_rtc.h │ │ ├── sapi_sleep.h │ │ ├── sapi_spi.h │ │ ├── sapi_stdio.h │ │ └── sapi_uart.h │ │ ├── src │ │ ├── sapi_7_segment_display.c │ │ ├── sapi_adc.c │ │ ├── sapi_board.c │ │ ├── sapi_circularBuffer.c │ │ ├── sapi_convert.c │ │ ├── sapi_cyclesCounter.c │ │ ├── sapi_dac.c │ │ ├── sapi_datatypes.c │ │ ├── sapi_dht11.c │ │ ├── sapi_esp8266.c │ │ ├── sapi_gpio.c │ │ ├── sapi_i2c.c │ │ ├── sapi_keypad.c │ │ ├── sapi_lcd.c │ │ ├── sapi_magnetometer_hmc5883l.c │ │ ├── sapi_magnetometer_qmc5883l.c │ │ ├── sapi_print.c │ │ ├── sapi_rtc.c │ │ ├── sapi_sleep.c │ │ ├── sapi_spi.c │ │ ├── sapi_stdio.c │ │ └── sapi_uart.c │ │ └── version.md ├── lpc54102_m0 │ ├── base │ │ ├── Makefile │ │ ├── inc │ │ │ └── crp.h │ │ └── src │ │ │ ├── cr_startup_lpc5410x-m0.c │ │ │ └── sysinit.c │ ├── board │ │ ├── Makefile │ │ ├── inc │ │ │ ├── board.h │ │ │ ├── board_api.h │ │ │ └── retarget.h │ │ └── src │ │ │ ├── board.c │ │ │ └── board_sysinit.c │ └── chip │ │ ├── Makefile │ │ ├── inc │ │ ├── adc_5410x.h │ │ ├── chip.h │ │ ├── clock_5410x.h │ │ ├── cmsis.h │ │ ├── cmsis_5410x.h │ │ ├── cmsis_5410x_m0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm4.h │ │ ├── core_cm4_simd.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cpuctrl_5410x.h │ │ ├── crc_5410x.h │ │ ├── dma_5410x.h │ │ ├── error.h │ │ ├── fifo_5410x.h │ │ ├── fpu_init.h │ │ ├── gpio_5410x.h │ │ ├── gpiogroup_5410x.h │ │ ├── i2c_common_5410x.h │ │ ├── i2cm_5410x.h │ │ ├── i2cs_5410x.h │ │ ├── iap.h │ │ ├── inmux_5410x.h │ │ ├── iocon_5410x.h │ │ ├── lpc_types.h │ │ ├── mailbox_5410x.h │ │ ├── mrt_5410x.h │ │ ├── pdm_api.h │ │ ├── pinint_5410x.h │ │ ├── pintable_5410x.h │ │ ├── pll_5410x.h │ │ ├── pmu_5410x.h │ │ ├── power_lib_5410x.h │ │ ├── ring_buffer.h │ │ ├── ritimer_5410x.h │ │ ├── romapi_5410x.h │ │ ├── rtc_5410x.h │ │ ├── rtc_ut.h │ │ ├── sct_5410x.h │ │ ├── sct_pwm_5410x.h │ │ ├── spi_common_5410x.h │ │ ├── spim_5410x.h │ │ ├── spis_5410x.h │ │ ├── stopwatch.h │ │ ├── syscon_5410x.h │ │ ├── timer_5410x.h │ │ ├── uart_5410x.h │ │ ├── utick_5410x.h │ │ └── wwdt_5410x.h │ │ ├── libs │ │ ├── libpower.a │ │ ├── libpower_m0.a │ │ └── libpower_m4f_hard.a │ │ └── src │ │ ├── adc_5410x.c │ │ ├── chip_5410x.c │ │ ├── clock_5410x.c │ │ ├── crc_5410x.c │ │ ├── dma_5410x.c │ │ ├── fifo_5410x.c │ │ ├── fpu_init.c │ │ ├── gpio_5410x.c │ │ ├── gpiogroup_5410x.c │ │ ├── i2cm_5410x.c │ │ ├── i2cs_5410x.c │ │ ├── iap.c │ │ ├── iocon_5410x.c │ │ ├── pinint_5410x.c │ │ ├── pll_5410x.c │ │ ├── ring_buffer.c │ │ ├── ritimer_5410x.c │ │ ├── rtc_ut.c │ │ ├── sct_5410x.c │ │ ├── sct_pwm_5410x.c │ │ ├── spi_common_5410x.c │ │ ├── spim_5410x.c │ │ ├── spis_5410x.c │ │ ├── stopwatch_5410x.c │ │ ├── syscon_5410x.c │ │ ├── sysinit_5410x.c │ │ ├── timer_5410x.c │ │ ├── uart_5410x.c │ │ └── wwdt_5410x.c └── lpc54102_m4 │ ├── base │ ├── Makefile │ ├── inc │ │ └── crp.h │ └── src │ │ ├── cr_startup_lpc5410x.c │ │ └── sysinit.c │ ├── board │ ├── Makefile │ ├── inc │ │ ├── board.h │ │ ├── board_api.h │ │ └── retarget.h │ └── src │ │ ├── board.c │ │ └── board_sysinit.c │ ├── chip │ ├── Makefile │ ├── inc │ │ ├── adc_5410x.h │ │ ├── chip.h │ │ ├── clock_5410x.h │ │ ├── cmsis.h │ │ ├── cmsis_5410x.h │ │ ├── cmsis_5410x_m0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm4.h │ │ ├── core_cm4_simd.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── cpuctrl_5410x.h │ │ ├── crc_5410x.h │ │ ├── dma_5410x.h │ │ ├── error.h │ │ ├── fifo_5410x.h │ │ ├── fpu_init.h │ │ ├── gpio_5410x.h │ │ ├── gpiogroup_5410x.h │ │ ├── i2c_common_5410x.h │ │ ├── i2cm_5410x.h │ │ ├── i2cs_5410x.h │ │ ├── iap.h │ │ ├── inmux_5410x.h │ │ ├── iocon_5410x.h │ │ ├── lpc_types.h │ │ ├── mailbox_5410x.h │ │ ├── mrt_5410x.h │ │ ├── pdm_api.h │ │ ├── pinint_5410x.h │ │ ├── pintable_5410x.h │ │ ├── pll_5410x.h │ │ ├── pmu_5410x.h │ │ ├── power_lib_5410x.h │ │ ├── ring_buffer.h │ │ ├── ritimer_5410x.h │ │ ├── romapi_5410x.h │ │ ├── rtc_5410x.h │ │ ├── rtc_ut.h │ │ ├── sct_5410x.h │ │ ├── sct_pwm_5410x.h │ │ ├── spi_common_5410x.h │ │ ├── spim_5410x.h │ │ ├── spis_5410x.h │ │ ├── stopwatch.h │ │ ├── syscon_5410x.h │ │ ├── timer_5410x.h │ │ ├── uart_5410x.h │ │ ├── utick_5410x.h │ │ └── wwdt_5410x.h │ ├── libs │ │ ├── libpower.a │ │ ├── libpower_m0.a │ │ └── libpower_m4f_hard.a │ └── src │ │ ├── adc_5410x.c │ │ ├── chip_5410x.c │ │ ├── clock_5410x.c │ │ ├── crc_5410x.c │ │ ├── dma_5410x.c │ │ ├── fifo_5410x.c │ │ ├── fpu_init.c │ │ ├── gpio_5410x.c │ │ ├── gpiogroup_5410x.c │ │ ├── i2cm_5410x.c │ │ ├── i2cs_5410x.c │ │ ├── iap.c │ │ ├── iocon_5410x.c │ │ ├── pinint_5410x.c │ │ ├── pll_5410x.c │ │ ├── ring_buffer.c │ │ ├── ritimer_5410x.c │ │ ├── rtc_ut.c │ │ ├── sct_5410x.c │ │ ├── sct_pwm_5410x.c │ │ ├── spi_common_5410x.c │ │ ├── spim_5410x.c │ │ ├── spis_5410x.c │ │ ├── stopwatch_5410x.c │ │ ├── syscon_5410x.c │ │ ├── sysinit_5410x.c │ │ ├── timer_5410x.c │ │ ├── uart_5410x.c │ │ └── wwdt_5410x.c │ └── freertos │ ├── Makefile │ ├── inc │ ├── FreeRTOS.h │ ├── FreeRTOSCommonHooks.h │ ├── StackMacros.h │ ├── croutine.h │ ├── event_groups.h │ ├── list.h │ ├── mpu_wrappers.h │ ├── portable.h │ ├── portmacro.h │ ├── projdefs.h │ ├── queue.h │ ├── semphr.h │ ├── task.h │ └── timers.h │ └── src │ ├── FreeRTOSCommonHooks.c │ ├── croutine.c │ ├── heap_3.c │ ├── list.c │ ├── port.c │ ├── queue.c │ ├── sysinit.c │ ├── tasks.c │ └── timers.c ├── out ├── lpc11u68 │ ├── .gitignore │ └── obj │ │ └── .gitignore ├── lpc1769 │ ├── .gitignore │ └── obj │ │ └── .gitignore ├── lpc4337_m0 │ ├── .gitignore │ └── obj │ │ └── .gitignore ├── lpc4337_m4 │ ├── .gitignore │ └── obj │ │ └── .gitignore ├── lpc54102_m0 │ ├── .gitignore │ └── obj │ │ └── .gitignore └── lpc54102_m4 │ ├── .gitignore │ └── obj │ └── .gitignore ├── project.mk.template ├── projects ├── .gitignore └── README.md ├── sapi_examples ├── CIAA-Eclipse-C-Profile.xml ├── LICENSE ├── Linux-Tools-Path.txt ├── README.md ├── documentation │ ├── PeripheralMap_CIAA-NXP.txt │ ├── PeripheralMap_EDU-CIAA-NXP.txt │ ├── docs │ │ ├── api.md │ │ ├── assets │ │ │ ├── img │ │ │ │ ├── 7-segment-display.png │ │ │ │ ├── keypad.png │ │ │ │ └── sapi-modulos-capas.png │ │ │ └── pdf │ │ │ │ ├── EDU-CIAA-NXP_Pinout_A4_v4r3_ES.pdf │ │ │ │ ├── sAPI-01-Introducción.pdf │ │ │ │ ├── sAPI-02-Diseño.pdf │ │ │ │ ├── sAPI-03-API.pdf │ │ │ │ ├── sAPI-04-Utilización.pdf │ │ │ │ └── sAPI-05-Ejemplos.pdf │ │ ├── diseno.md │ │ ├── ejemplos.md │ │ ├── index.md │ │ └── utilizacion.md │ ├── mkdocs.yml │ ├── sAPI mapeo de perifericos EDU-CIAA-NXP.pdf │ └── sAPI_reference.pdf └── edu-ciaa-nxp │ ├── bare_metal │ ├── adc_dac_01 │ │ ├── EDU-CIAA-NXP Tiras de pines y Potenciómetro.pdf │ │ ├── Makefile │ │ ├── inc │ │ │ └── adc_dac.h │ │ └── src │ │ │ └── adc_dac.c │ ├── cycles_counter_01 │ │ ├── Makefile │ │ ├── inc │ │ │ └── cycles_counter_demo.h │ │ └── src │ │ │ └── cycles_counter_demo.c │ ├── gpio │ │ ├── gpio_01_switches_leds │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── switches_leds.h │ │ │ └── src │ │ │ │ └── switches_leds.c │ │ ├── gpio_02_blinky │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── blinky.h │ │ │ └── src │ │ │ │ └── blinky.c │ │ ├── gpio_03_blinky_switch │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── blinky_switch.h │ │ │ └── src │ │ │ │ └── blinky_switch.c │ │ └── gpio_04_led_sequences │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ └── led_sequences.h │ │ │ └── src │ │ │ └── led_sequences.c │ ├── keypad_7segment_01 │ │ ├── 7 segmentos EDU-CIAA.png │ │ ├── Makefile │ │ ├── Teclado Matricial EDU-CIAA.png │ │ ├── inc │ │ │ └── keypad_7segment.h │ │ └── src │ │ │ └── keypad_7segment.c │ ├── lcd_01 │ │ ├── LCD connection.png │ │ ├── Makefile │ │ └── src │ │ │ └── lcd.c │ ├── magnetometers │ │ ├── README_magnetometers_HMC-QMC.pdf │ │ ├── i2c_01_hmc5883l │ │ │ ├── HMC5883L_3-Axis_Digital_Compass_IC.pdf │ │ │ ├── HMC5883L_EDU-CIAA.png │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── hmc5883l.h │ │ │ └── src │ │ │ │ └── i2c_hmc5883l.c │ │ └── i2c_02_qmc5883l │ │ │ ├── Makefile │ │ │ ├── QMC5883L-Datasheet-1.0.pdf │ │ │ ├── QMC5883L_EDU-CIAA.png │ │ │ └── src │ │ │ └── i2c_qmc5883l.c │ ├── pwm │ │ ├── pwm_01 │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── pwm.h │ │ │ └── src │ │ │ │ └── pwm.c │ │ └── pwm_02_rgb_controller_uart │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ └── rgb_controller_uart.h │ │ │ └── src │ │ │ └── rgb_controller_uart.c │ ├── rtc_01 │ │ ├── Makefile │ │ ├── inc │ │ │ └── rtc.h │ │ └── src │ │ │ └── rtc.c │ ├── servo_01 │ │ ├── Makefile │ │ ├── inc │ │ │ └── servo.h │ │ └── src │ │ │ └── servo.c │ ├── spi_01_sdCard_fatFileSystem │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── SD SPI.png │ │ ├── inc │ │ │ └── sd_spi.h │ │ └── src │ │ │ └── sd_spi.c │ ├── stdio_01_printf_sprintf │ │ ├── Makefile │ │ ├── inc │ │ │ └── stdio_printf_sprintf.h │ │ └── src │ │ │ └── stdio_printf_sprintf.c │ ├── temperature_humidity_sensors │ │ └── dht11_01 │ │ │ ├── Makefile │ │ │ ├── dht11.pdf │ │ │ └── src │ │ │ └── dht11_01.c │ ├── tick_01_tickHook │ │ ├── Makefile │ │ ├── inc │ │ │ └── tickHook.h │ │ └── src │ │ │ └── tickHook.c │ ├── uart │ │ ├── uart_01_echo │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── uart.h │ │ │ └── src │ │ │ │ └── uart.c │ │ ├── uart_02_receive_string_blocking │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── uart_receive_string_blocking.h │ │ │ └── src │ │ │ │ └── uart_receive_string_blocking.c │ │ └── uart_03_receive_string │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ └── uart_receive_string.h │ │ │ └── src │ │ │ └── uart_receive_string.c │ ├── ultrasonicSensors │ │ └── ultrasonicSensor_HCSR04_01 │ │ │ ├── Conexión EDU-CIAA - HC-SR04.png │ │ │ ├── HCSR04.pdf │ │ │ ├── Makefile │ │ │ └── src │ │ │ └── ultrasonicSensor_HCSR04.c │ └── wifi_esp01_esp8266 │ │ ├── 01_uart_bridge │ │ ├── Makefile │ │ ├── inc │ │ │ └── uartBridge_ESP8266.h │ │ └── src │ │ │ └── uartBridge_ESP8266.c │ │ ├── 02_http_server │ │ ├── Makefile │ │ ├── inc │ │ │ └── esp8266_http_server.h │ │ └── src │ │ │ └── esp8266_http_server.c │ │ ├── 03_thingspeak │ │ ├── Comandos AT del ESP01 y conexion con Thinspeak.txt │ │ ├── Datos en Thingspeak.png │ │ ├── Makefile │ │ ├── Salida de terminal serie.txt │ │ └── src │ │ │ └── esp01_thingspeak.c │ │ ├── 0a-esp8266ex_datasheet_en_1.pdf │ │ ├── 4a-esp8266_at_instruction_set_en.pdf │ │ ├── Conexion ESP8266 y EDU-CIAA.png │ │ └── ESP8266ATCommandsSet.pdf │ ├── operating_systems │ ├── coperative │ │ ├── scheduler_01_seos │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── seos.h │ │ │ └── src │ │ │ │ └── seos.c │ │ ├── scheduler_02_seos_background_foreground │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ ├── seos_bakground_foreground.h │ │ │ │ ├── seos_bakground_foreground_app.h │ │ │ │ └── tasks.h │ │ │ └── src │ │ │ │ ├── seos_bakground_foreground.c │ │ │ │ ├── seos_bakground_foreground_app.c │ │ │ │ └── tasks.c │ │ ├── seos_Pont2014_01 │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ │ └── cooperative_os_scheduler_03_seos_Pont2014.h │ │ │ ├── libs │ │ │ │ └── seos_pont_2014 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── inc │ │ │ │ │ ├── cooperativeOs_isr.h │ │ │ │ │ └── cooperativeOs_scheduler.h │ │ │ │ │ └── src │ │ │ │ │ ├── cooperativeOs_isr.c │ │ │ │ │ └── cooperativeOs_scheduler.c │ │ │ └── src │ │ │ │ └── cooperative_os_scheduler_03_seos_Pont2014.c │ │ └── seos_pont_02_microwave │ │ │ ├── Makefile │ │ │ ├── inc │ │ │ └── main.h │ │ │ ├── libs │ │ │ └── seos_pont_2014 │ │ │ │ ├── Makefile │ │ │ │ ├── inc │ │ │ │ ├── cooperativeOs_isr.h │ │ │ │ └── cooperativeOs_scheduler.h │ │ │ │ └── src │ │ │ │ ├── cooperativeOs_isr.c │ │ │ │ └── cooperativeOs_scheduler.c │ │ │ └── src │ │ │ └── main.c │ ├── freeOSEK │ │ └── freeOSEK_01_blinky │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── freeOSEK_01_blinky.oil │ │ │ ├── gen │ │ │ ├── inc │ │ │ │ ├── Os_Cfg.h │ │ │ │ ├── Os_Internal_Cfg.h │ │ │ │ └── cortexM4 │ │ │ │ │ └── Os_Internal_Arch_Cfg.h │ │ │ └── src │ │ │ │ ├── Os_Cfg.c │ │ │ │ ├── Os_Internal_Cfg.c │ │ │ │ └── cortexM4 │ │ │ │ └── Os_Internal_Arch_Cfg.c │ │ │ ├── inc │ │ │ └── blinky.h │ │ │ └── src │ │ │ └── blinky.c │ └── freeRTOS │ │ ├── freeRTOS_01_blinky │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── freeRTOS_blinky.c │ │ │ └── newlib_stubs.c │ │ ├── freeRTOS_02_Queue │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── main.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── freeRTOS_Queue.c │ │ │ └── newlib_stubs.c │ │ ├── freeRTOS_03_ChanFatFS_SPI_SdCard_ADC_log │ │ ├── Makefile │ │ ├── README.md │ │ ├── SD SPI.png │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── newlib_stubs.h │ │ │ └── sd_spi.h │ │ └── src │ │ │ ├── freeRTOS_ChanFatFS_SPI_SdCard_ADC_log.c │ │ │ └── newlib_stubs.c │ │ └── freeRTOS_book │ │ ├── Example001 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example002 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example003 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example004 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example005 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example006 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example007 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example008 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example009 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example010 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example011 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example012 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example013 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example015 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example016 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example017 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example019 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example020 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example021 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ ├── Example022 │ │ ├── Makefile │ │ ├── README.md │ │ ├── inc │ │ │ ├── FreeRTOSConfig.h │ │ │ └── newlib_stubs.h │ │ └── src │ │ │ ├── main.c │ │ │ └── newlib_stubs.c │ │ └── README.md │ └── statecharts │ ├── statecharts_bare_metal │ ├── Application.-sct │ ├── Blink.-sct │ ├── BlinkTimeEvent.-sct │ ├── Button.-sct │ ├── IdleBlink.-sct │ ├── Makefile │ ├── Porton.-sct │ ├── gen │ │ ├── .gitignore │ │ └── README │ ├── inc │ │ ├── TimerTicks.h │ │ └── main.h │ ├── prefix.sgen │ └── src │ │ ├── TimerTicks.c │ │ └── main.c │ └── statecharts_os │ ├── coperative_os_examples │ └── proximamente │ ├── freeOSEK_examples │ └── proximamente │ └── freeRTOS_examples │ └── proximamente └── tools ├── .gitignore └── sapi-test-compilation.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/README.md -------------------------------------------------------------------------------- /documentation/PlataformasCIAA/LPC4337/CIAA-NXP/CIAA-NXP Fabricante.txt: -------------------------------------------------------------------------------- 1 | http://exo.com.ar/ciaa 2 | -------------------------------------------------------------------------------- /documentation/PlataformasCIAA/LPC54102/Pico-CIAA/Pico-CIAA Fabricante.txt: -------------------------------------------------------------------------------- 1 | http://www.picociaa.com 2 | -------------------------------------------------------------------------------- /etc/ld/lpc11u68.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc11u68.ld -------------------------------------------------------------------------------- /etc/ld/lpc11u68_lib.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc11u68_lib.ld -------------------------------------------------------------------------------- /etc/ld/lpc11u68_mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc11u68_mem.ld -------------------------------------------------------------------------------- /etc/ld/lpc1769.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc1769.ld -------------------------------------------------------------------------------- /etc/ld/lpc1769_lib.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc1769_lib.ld -------------------------------------------------------------------------------- /etc/ld/lpc1769_mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc1769_mem.ld -------------------------------------------------------------------------------- /etc/ld/lpc1769_semihost_lib.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc1769_semihost_lib.ld -------------------------------------------------------------------------------- /etc/ld/lpc4337_m0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc4337_m0.ld -------------------------------------------------------------------------------- /etc/ld/lpc4337_m0_lib.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc4337_m0_lib.ld -------------------------------------------------------------------------------- /etc/ld/lpc4337_m0_mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc4337_m0_mem.ld -------------------------------------------------------------------------------- /etc/ld/lpc4337_m4.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc4337_m4.ld -------------------------------------------------------------------------------- /etc/ld/lpc4337_m4_RAM.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc4337_m4_RAM.ld -------------------------------------------------------------------------------- /etc/ld/lpc4337_m4_lib.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc4337_m4_lib.ld -------------------------------------------------------------------------------- /etc/ld/lpc4337_m4_mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc4337_m4_mem.ld -------------------------------------------------------------------------------- /etc/ld/lpc54102_m0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc54102_m0.ld -------------------------------------------------------------------------------- /etc/ld/lpc54102_m0_lib.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc54102_m0_lib.ld -------------------------------------------------------------------------------- /etc/ld/lpc54102_m0_mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc54102_m0_mem.ld -------------------------------------------------------------------------------- /etc/ld/lpc54102_m4.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc54102_m4.ld -------------------------------------------------------------------------------- /etc/ld/lpc54102_m4_lib.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc54102_m4_lib.ld -------------------------------------------------------------------------------- /etc/ld/lpc54102_m4_mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/ld/lpc54102_m4_mem.ld -------------------------------------------------------------------------------- /etc/openocd/lpc1769.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/openocd/lpc1769.cfg -------------------------------------------------------------------------------- /etc/openocd/lpc4337.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/openocd/lpc4337.cfg -------------------------------------------------------------------------------- /etc/openocd/lpc4337_.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/openocd/lpc4337_.cfg -------------------------------------------------------------------------------- /etc/openocd/lpc4337_cd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/openocd/lpc4337_cd.cfg -------------------------------------------------------------------------------- /etc/openocd/lpc54102_cd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/openocd/lpc54102_cd.cfg -------------------------------------------------------------------------------- /etc/target/lpc11u68.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/target/lpc11u68.mk -------------------------------------------------------------------------------- /etc/target/lpc1769.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/target/lpc1769.mk -------------------------------------------------------------------------------- /etc/target/lpc4337_m0.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/target/lpc4337_m0.mk -------------------------------------------------------------------------------- /etc/target/lpc4337_m4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/target/lpc4337_m4.mk -------------------------------------------------------------------------------- /etc/target/lpc54102_m0.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/target/lpc54102_m0.mk -------------------------------------------------------------------------------- /etc/target/lpc54102_m4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/etc/target/lpc54102_m4.mk -------------------------------------------------------------------------------- /examples/adc_fir_dac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/Makefile -------------------------------------------------------------------------------- /examples/adc_fir_dac/inc/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/inc/adc.h -------------------------------------------------------------------------------- /examples/adc_fir_dac/inc/bandpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/inc/bandpass.h -------------------------------------------------------------------------------- /examples/adc_fir_dac/inc/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/inc/dac.h -------------------------------------------------------------------------------- /examples/adc_fir_dac/inc/fir_q31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/inc/fir_q31.h -------------------------------------------------------------------------------- /examples/adc_fir_dac/inc/lowpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/inc/lowpass.h -------------------------------------------------------------------------------- /examples/adc_fir_dac/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/inc/main.h -------------------------------------------------------------------------------- /examples/adc_fir_dac/src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/src/adc.c -------------------------------------------------------------------------------- /examples/adc_fir_dac/src/asm_fir_q31.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/src/asm_fir_q31.S -------------------------------------------------------------------------------- /examples/adc_fir_dac/src/bandpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/src/bandpass.c -------------------------------------------------------------------------------- /examples/adc_fir_dac/src/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/src/dac.c -------------------------------------------------------------------------------- /examples/adc_fir_dac/src/fir_q31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/src/fir_q31.c -------------------------------------------------------------------------------- /examples/adc_fir_dac/src/lowpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/src/lowpass.c -------------------------------------------------------------------------------- /examples/adc_fir_dac/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/adc_fir_dac/src/main.c -------------------------------------------------------------------------------- /examples/asm/conv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/conv/Makefile -------------------------------------------------------------------------------- /examples/asm/conv/inc/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/conv/inc/conv.h -------------------------------------------------------------------------------- /examples/asm/conv/inc/newlib_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/conv/inc/newlib_stubs.h -------------------------------------------------------------------------------- /examples/asm/conv/src/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/conv/src/conv.c -------------------------------------------------------------------------------- /examples/asm/conv/src/corr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/conv/src/corr.S -------------------------------------------------------------------------------- /examples/asm/conv/src/newlib_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/conv/src/newlib_stubs.c -------------------------------------------------------------------------------- /examples/asm/first/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/Makefile -------------------------------------------------------------------------------- /examples/asm/first/inc/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/inc/add.h -------------------------------------------------------------------------------- /examples/asm/first/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/inc/main.h -------------------------------------------------------------------------------- /examples/asm/first/inc/zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/inc/zero.h -------------------------------------------------------------------------------- /examples/asm/first/src/SysTick_Handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/src/SysTick_Handler.S -------------------------------------------------------------------------------- /examples/asm/first/src/add.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/src/add.S -------------------------------------------------------------------------------- /examples/asm/first/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/src/main.c -------------------------------------------------------------------------------- /examples/asm/first/src/zero.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/first/src/zero.S -------------------------------------------------------------------------------- /examples/asm/packer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/packer/Makefile -------------------------------------------------------------------------------- /examples/asm/packer/inc/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/packer/inc/pack.h -------------------------------------------------------------------------------- /examples/asm/packer/inc/packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/packer/inc/packer.h -------------------------------------------------------------------------------- /examples/asm/packer/inc/samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/packer/inc/samples.h -------------------------------------------------------------------------------- /examples/asm/packer/src/pack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/packer/src/pack.S -------------------------------------------------------------------------------- /examples/asm/packer/src/packer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/packer/src/packer.c -------------------------------------------------------------------------------- /examples/asm/packer/src/samples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/asm/packer/src/samples.c -------------------------------------------------------------------------------- /examples/blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky/Makefile -------------------------------------------------------------------------------- /examples/blinky/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky/inc/main.h -------------------------------------------------------------------------------- /examples/blinky/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky/src/main.c -------------------------------------------------------------------------------- /examples/blinky_osek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_osek/Makefile -------------------------------------------------------------------------------- /examples/blinky_osek/blinky_osek.oil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_osek/blinky_osek.oil -------------------------------------------------------------------------------- /examples/blinky_osek/gen/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | 4 | -------------------------------------------------------------------------------- /examples/blinky_osek/inc/blinking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_osek/inc/blinking.h -------------------------------------------------------------------------------- /examples/blinky_osek/src/blinking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_osek/src/blinking.c -------------------------------------------------------------------------------- /examples/blinky_ram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_ram/Makefile -------------------------------------------------------------------------------- /examples/blinky_ram/inc/blinky_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_ram/inc/blinky_ram.h -------------------------------------------------------------------------------- /examples/blinky_ram/src/blinky_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_ram/src/blinky_ram.c -------------------------------------------------------------------------------- /examples/blinky_rit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_rit/Makefile -------------------------------------------------------------------------------- /examples/blinky_rit/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_rit/inc/main.h -------------------------------------------------------------------------------- /examples/blinky_rit/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/blinky_rit/src/main.c -------------------------------------------------------------------------------- /examples/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/boot/Makefile -------------------------------------------------------------------------------- /examples/boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/boot/README.md -------------------------------------------------------------------------------- /examples/boot/inc/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/boot/inc/boot.h -------------------------------------------------------------------------------- /examples/boot/prepare_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/boot/prepare_image.py -------------------------------------------------------------------------------- /examples/boot/src/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/boot/src/boot.c -------------------------------------------------------------------------------- /examples/freertos_blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/freertos_blinky/Makefile -------------------------------------------------------------------------------- /examples/freertos_blinky/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/freertos_blinky/inc/main.h -------------------------------------------------------------------------------- /examples/freertos_blinky/inc/newlib_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/freertos_blinky/inc/newlib_stubs.h -------------------------------------------------------------------------------- /examples/freertos_blinky/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/freertos_blinky/src/main.c -------------------------------------------------------------------------------- /examples/freertos_blinky/src/newlib_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/freertos_blinky/src/newlib_stubs.c -------------------------------------------------------------------------------- /examples/i2c/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/ 2 | -------------------------------------------------------------------------------- /examples/i2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/i2c/Makefile -------------------------------------------------------------------------------- /examples/i2c/inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/i2c/inc/i2c.h -------------------------------------------------------------------------------- /examples/i2c/src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/i2c/src/i2c.c -------------------------------------------------------------------------------- /examples/mpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/mpu/Makefile -------------------------------------------------------------------------------- /examples/mpu/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/mpu/inc/main.h -------------------------------------------------------------------------------- /examples/mpu/inc/mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/mpu/inc/mpu.h -------------------------------------------------------------------------------- /examples/mpu/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/mpu/src/main.c -------------------------------------------------------------------------------- /examples/mpu/src/mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/mpu/src/mpu.c -------------------------------------------------------------------------------- /examples/multicore/blinky_m0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/multicore/blinky_m0/Makefile -------------------------------------------------------------------------------- /examples/multicore/blinky_m0/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/multicore/blinky_m0/inc/main.h -------------------------------------------------------------------------------- /examples/multicore/blinky_m0/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/multicore/blinky_m0/src/main.c -------------------------------------------------------------------------------- /examples/multicore/blinky_m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/multicore/blinky_m4/Makefile -------------------------------------------------------------------------------- /examples/multicore/blinky_m4/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/multicore/blinky_m4/inc/main.h -------------------------------------------------------------------------------- /examples/multicore/blinky_m4/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/multicore/blinky_m4/src/main.c -------------------------------------------------------------------------------- /examples/pwm/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/ 2 | -------------------------------------------------------------------------------- /examples/pwm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/pwm/Makefile -------------------------------------------------------------------------------- /examples/pwm/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/pwm/inc/main.h -------------------------------------------------------------------------------- /examples/pwm/pwm.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/pwm/pwm.doxyfile -------------------------------------------------------------------------------- /examples/pwm/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/pwm/src/main.c -------------------------------------------------------------------------------- /examples/sd_spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/sd_spi/Makefile -------------------------------------------------------------------------------- /examples/sd_spi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/sd_spi/README.md -------------------------------------------------------------------------------- /examples/sd_spi/inc/sd_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/sd_spi/inc/sd_spi.h -------------------------------------------------------------------------------- /examples/sd_spi/src/sd_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/sd_spi/src/sd_spi.c -------------------------------------------------------------------------------- /examples/start_m0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/start_m0/Makefile -------------------------------------------------------------------------------- /examples/start_m0/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/start_m0/inc/main.h -------------------------------------------------------------------------------- /examples/start_m0/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/start_m0/src/main.c -------------------------------------------------------------------------------- /examples/statechart/Application.-sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/Application.-sct -------------------------------------------------------------------------------- /examples/statechart/Blink.-sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/Blink.-sct -------------------------------------------------------------------------------- /examples/statechart/BlinkTimeEvent.-sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/BlinkTimeEvent.-sct -------------------------------------------------------------------------------- /examples/statechart/Button.-sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/Button.-sct -------------------------------------------------------------------------------- /examples/statechart/IdleBlink.-sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/IdleBlink.-sct -------------------------------------------------------------------------------- /examples/statechart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/Makefile -------------------------------------------------------------------------------- /examples/statechart/Porton.-sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/Porton.-sct -------------------------------------------------------------------------------- /examples/statechart/gen/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README 4 | -------------------------------------------------------------------------------- /examples/statechart/gen/README: -------------------------------------------------------------------------------- 1 | Folder for Yakindu SCT generated source files. 2 | -------------------------------------------------------------------------------- /examples/statechart/inc/TimerTicks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/inc/TimerTicks.h -------------------------------------------------------------------------------- /examples/statechart/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/inc/main.h -------------------------------------------------------------------------------- /examples/statechart/prefix.sgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/prefix.sgen -------------------------------------------------------------------------------- /examples/statechart/src/TimerTicks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/src/TimerTicks.c -------------------------------------------------------------------------------- /examples/statechart/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/statechart/src/main.c -------------------------------------------------------------------------------- /examples/tcpecho/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/ 2 | -------------------------------------------------------------------------------- /examples/tcpecho/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/Makefile -------------------------------------------------------------------------------- /examples/tcpecho/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/tcpecho/inc/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/inc/lwipopts.h -------------------------------------------------------------------------------- /examples/tcpecho/inc/newlib_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/inc/newlib_stubs.h -------------------------------------------------------------------------------- /examples/tcpecho/inc/tcpecho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/inc/tcpecho.h -------------------------------------------------------------------------------- /examples/tcpecho/src/cr_redlib_heap_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/src/cr_redlib_heap_fix.c -------------------------------------------------------------------------------- /examples/tcpecho/src/newlib_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/src/newlib_stubs.c -------------------------------------------------------------------------------- /examples/tcpecho/src/tcpecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/src/tcpecho.c -------------------------------------------------------------------------------- /examples/tcpecho/tcpecho.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/tcpecho/tcpecho.doxyfile -------------------------------------------------------------------------------- /examples/trilat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/trilat/Makefile -------------------------------------------------------------------------------- /examples/trilat/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/trilat/inc/main.h -------------------------------------------------------------------------------- /examples/trilat/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/trilat/src/main.c -------------------------------------------------------------------------------- /examples/usb_cdc/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/ 2 | -------------------------------------------------------------------------------- /examples/usb_cdc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/Makefile -------------------------------------------------------------------------------- /examples/usb_cdc/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/usb_cdc/inc/app_usbd_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/inc/app_usbd_cfg.h -------------------------------------------------------------------------------- /examples/usb_cdc/inc/cdc_vcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/inc/cdc_vcom.h -------------------------------------------------------------------------------- /examples/usb_cdc/inc/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/inc/lcd.h -------------------------------------------------------------------------------- /examples/usb_cdc/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/inc/main.h -------------------------------------------------------------------------------- /examples/usb_cdc/inc/newlib_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/inc/newlib_stubs.h -------------------------------------------------------------------------------- /examples/usb_cdc/src/cdc_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/src/cdc_desc.c -------------------------------------------------------------------------------- /examples/usb_cdc/src/cdc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/src/cdc_main.c -------------------------------------------------------------------------------- /examples/usb_cdc/src/cdc_vcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/src/cdc_vcom.c -------------------------------------------------------------------------------- /examples/usb_cdc/src/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/src/lcd.c -------------------------------------------------------------------------------- /examples/usb_cdc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/src/main.c -------------------------------------------------------------------------------- /examples/usb_cdc/src/newlib_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_cdc/src/newlib_stubs.c -------------------------------------------------------------------------------- /examples/usb_msc_host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_msc_host/Makefile -------------------------------------------------------------------------------- /examples/usb_msc_host/inc/MassStorageHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_msc_host/inc/MassStorageHost.h -------------------------------------------------------------------------------- /examples/usb_msc_host/inc/fsusb_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_msc_host/inc/fsusb_cfg.h -------------------------------------------------------------------------------- /examples/usb_msc_host/src/MassStorageHost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_msc_host/src/MassStorageHost.c -------------------------------------------------------------------------------- /examples/usb_rom_cdc/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/ 2 | -------------------------------------------------------------------------------- /examples/usb_rom_cdc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_rom_cdc/Makefile -------------------------------------------------------------------------------- /examples/usb_rom_cdc/inc/app_usbd_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_rom_cdc/inc/app_usbd_cfg.h -------------------------------------------------------------------------------- /examples/usb_rom_cdc/inc/cdc_vcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_rom_cdc/inc/cdc_vcom.h -------------------------------------------------------------------------------- /examples/usb_rom_cdc/src/cdc_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_rom_cdc/src/cdc_desc.c -------------------------------------------------------------------------------- /examples/usb_rom_cdc/src/cdc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_rom_cdc/src/cdc_main.c -------------------------------------------------------------------------------- /examples/usb_rom_cdc/src/cdc_vcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/examples/usb_rom_cdc/src/cdc_vcom.c -------------------------------------------------------------------------------- /modules/lpc11u68/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/base/Makefile -------------------------------------------------------------------------------- /modules/lpc11u68/base/inc/cr_mtb_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/base/inc/cr_mtb_buffer.h -------------------------------------------------------------------------------- /modules/lpc11u68/base/inc/crp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/base/inc/crp.h -------------------------------------------------------------------------------- /modules/lpc11u68/base/src/mtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/base/src/mtb.c -------------------------------------------------------------------------------- /modules/lpc11u68/base/src/sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/base/src/sysinit.c -------------------------------------------------------------------------------- /modules/lpc11u68/board/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/board/Makefile -------------------------------------------------------------------------------- /modules/lpc11u68/board/inc/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/board/inc/board.h -------------------------------------------------------------------------------- /modules/lpc11u68/board/inc/board_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/board/inc/board_api.h -------------------------------------------------------------------------------- /modules/lpc11u68/board/src/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/board/src/board.c -------------------------------------------------------------------------------- /modules/lpc11u68/board/src/board_sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/board/src/board_sysinit.c -------------------------------------------------------------------------------- /modules/lpc11u68/board/src/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/board/src/retarget.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/Makefile -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/adc_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/adc_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/chip.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/clock_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/clock_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/cmsis.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/core_cm0plus.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/core_cmFunc.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/core_cmInstr.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/crc_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/crc_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/dma_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/dma_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/error.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/fmc_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/fmc_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/gpio_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/gpio_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/gpiogroup_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/gpiogroup_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/i2c_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/i2c_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/i2cm_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/i2cm_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/iap.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/iocon_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/iocon_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/lpc_types.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/pinint_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/pinint_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/pmu_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/pmu_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/ring_buffer.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/rom_dma_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/rom_dma_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/rom_i2c_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/rom_i2c_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/rom_pwr_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/rom_pwr_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/rom_uart_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/rom_uart_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/romapi_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/romapi_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/romdiv_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/romdiv_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/rtc_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/rtc_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/sct_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/sct_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/ssp_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/ssp_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/stopwatch.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/sys_config.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/syscon_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/syscon_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/timer_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/timer_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/uart_0_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/uart_0_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/uart_n_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/uart_n_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_adc.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_cdc.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_core.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_desc.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_dfu.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_hid.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_hw.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd/usbd_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd/usbd_msc.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/usbd_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/usbd_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/inc/wwdt_11u6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/inc/wwdt_11u6x.h -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/adc_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/adc_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/chip_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/chip_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/clock_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/clock_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/crc_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/crc_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/dma_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/dma_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/gpio_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/gpio_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/gpiogroup_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/gpiogroup_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/i2c_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/i2c_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/i2cm_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/i2cm_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/iocon_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/iocon_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/pinint_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/pinint_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/pmu_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/pmu_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/ring_buffer.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/romdiv_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/romdiv_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/rtc_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/rtc_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/sct_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/sct_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/ssp_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/ssp_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/stopwatch_11u6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/stopwatch_11u6.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/syscon_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/syscon_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/sysinit_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/sysinit_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/timer_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/timer_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/uart_0_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/uart_0_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/uart_n_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/uart_n_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/chip/src/wwdt_11u6x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/chip/src/wwdt_11u6x.c -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/Makefile -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/FreeRTOS.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/StackMacros.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/croutine.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/list.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/portable.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/portmacro.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/projdefs.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/queue.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/semphr.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/task.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/inc/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/inc/timers.h -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/src/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/src/heap_3.c -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/src/list.c -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/src/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/src/port.c -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/src/queue.c -------------------------------------------------------------------------------- /modules/lpc11u68/freertos/src/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc11u68/freertos/src/tasks.c -------------------------------------------------------------------------------- /modules/lpc1769/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/base/Makefile -------------------------------------------------------------------------------- /modules/lpc1769/base/inc/crp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/base/inc/crp.h -------------------------------------------------------------------------------- /modules/lpc1769/base/src/sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/base/src/sysinit.c -------------------------------------------------------------------------------- /modules/lpc1769/board/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/board/Makefile -------------------------------------------------------------------------------- /modules/lpc1769/board/inc/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/board/inc/board.h -------------------------------------------------------------------------------- /modules/lpc1769/board/inc/board_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/board/inc/board_api.h -------------------------------------------------------------------------------- /modules/lpc1769/board/inc/lpc_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/board/inc/lpc_phy.h -------------------------------------------------------------------------------- /modules/lpc1769/board/src/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/board/src/board.c -------------------------------------------------------------------------------- /modules/lpc1769/board/src/board_sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/board/src/board_sysinit.c -------------------------------------------------------------------------------- /modules/lpc1769/board/src/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/board/src/retarget.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/Makefile -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/adc_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/adc_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/can_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/can_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/chip.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/chip_lpc175x_6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/chip_lpc175x_6x.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/chip_lpc177x_8x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/chip_lpc177x_8x.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/chip_lpc407x_8x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/chip_lpc407x_8x.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/clock_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/clock_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/cmp_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/cmp_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/cmsis.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/cmsis_175x_6x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/cmsis_175x_6x.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/core_cm3.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/core_cmFunc.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/core_cmInstr.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/crc_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/crc_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/dac_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/dac_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/eeprom_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/eeprom_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/emc_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/emc_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/enet_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/enet_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/error.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/fmc_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/fmc_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/gpdma_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/gpdma_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/gpio_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/gpio_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/i2c_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/i2c_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/i2s_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/i2s_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/iap.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/iocon_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/iocon_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/lcd_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/lcd_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/lpc_types.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/mcpwm_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/mcpwm_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/pmu_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/pmu_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/qei_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/qei_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/ring_buffer.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/romapi_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/romapi_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/rtc_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/rtc_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/sdc_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/sdc_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/sdmmc_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/sdmmc_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/spi_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/spi_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/spifi_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/spifi_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/ssp_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/ssp_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/stopwatch.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/sys_config.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/sysctl_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/sysctl_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/timer_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/timer_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/uart_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/uart_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usb_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usb_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_adc.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_cdc.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_core.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_desc.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_dfu.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_hid.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_hw.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/usbd/usbd_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/usbd/usbd_msc.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/inc/wwdt_17xx_40xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/inc/wwdt_17xx_40xx.h -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/adc_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/adc_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/can_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/can_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/chip_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/chip_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/clock_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/clock_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/cmp_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/cmp_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/crc_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/crc_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/dac_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/dac_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/eeprom_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/eeprom_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/emc_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/emc_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/enet_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/enet_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/gpdma_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/gpdma_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/gpio_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/gpio_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/i2c_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/i2c_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/i2s_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/i2s_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/iap.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/iocon_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/iocon_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/lcd_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/lcd_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/pmu_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/pmu_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/ring_buffer.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/rtc_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/rtc_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/sdc_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/sdc_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/sdmmc_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/sdmmc_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/spi_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/spi_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/ssp_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/ssp_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/sysctl_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/sysctl_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/timer_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/timer_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/uart_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/uart_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/chip/src/wwdt_17xx_40xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/chip/src/wwdt_17xx_40xx.c -------------------------------------------------------------------------------- /modules/lpc1769/dsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/dsp/Makefile -------------------------------------------------------------------------------- /modules/lpc1769/dsp/inc/arm/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/dsp/inc/arm/arm_math.h -------------------------------------------------------------------------------- /modules/lpc1769/dsp/inc/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/dsp/inc/arm_math.h -------------------------------------------------------------------------------- /modules/lpc1769/dsp/inc/math_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/dsp/inc/math_helper.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/Makefile -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/FreeRTOS.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/StackMacros.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/croutine.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/list.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/mpu_wrappers.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/portable.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/portmacro.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/projdefs.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/queue.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/semphr.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/task.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/inc/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/inc/timers.h -------------------------------------------------------------------------------- /modules/lpc1769/freertos/src/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/src/heap_3.c -------------------------------------------------------------------------------- /modules/lpc1769/freertos/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/src/list.c -------------------------------------------------------------------------------- /modules/lpc1769/freertos/src/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/src/port.c -------------------------------------------------------------------------------- /modules/lpc1769/freertos/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/src/queue.c -------------------------------------------------------------------------------- /modules/lpc1769/freertos/src/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/freertos/src/tasks.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/Makefile -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/arch/cc.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/arch/lpc_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/arch/lpc_arch.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/arch/perf.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/arch/sys_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/arch/sys_arch.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/ipv4/lwip/autoip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/ipv4/lwip/autoip.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/ipv4/lwip/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/ipv4/lwip/icmp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/ipv4/lwip/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/ipv4/lwip/igmp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/ipv4/lwip/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/ipv4/lwip/inet.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/ipv4/lwip/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/ipv4/lwip/ip.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/api.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/api_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/api_msg.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/arch.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/debug.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/def.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/dhcp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/dns.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/err.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/init.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/mem.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/memp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/memp_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/memp_std.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/netbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/netbuf.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/netdb.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/netif.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/netifapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/netifapi.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/opt.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/pbuf.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/raw.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/sio.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/snmp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/snmp_asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/snmp_asn1.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/snmp_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/snmp_msg.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/sockets.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/stats.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/sys.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/tcp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/tcp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/tcp_impl.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/tcpip.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/timers.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/lwip/udp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/netif/etharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/netif/etharp.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/netif/ppp_oe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/netif/ppp_oe.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/netif/slipif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/netif/slipif.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/posix/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/posix/netdb.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/inc/posix/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/inc/posix/sys/socket.h -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/FILES -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/api_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/api_lib.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/api_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/api_msg.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/err.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/netbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/netbuf.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/netdb.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/netifapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/netifapi.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/sockets.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/api/tcpip.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/arch/lpc_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/arch/lpc_debug.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/def.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/dhcp.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/dns.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/init.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/ipv4/autoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/ipv4/autoip.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/ipv4/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/ipv4/icmp.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/ipv4/igmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/ipv4/igmp.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/ipv4/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/ipv4/inet.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/ipv4/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/ipv4/ip.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/mem.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/memp.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/netif.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/pbuf.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/raw.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/stats.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/sys.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/tcp.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/tcp_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/tcp_in.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/tcp_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/tcp_out.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/timers.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/core/udp.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/netif/FILES -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/netif/etharp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/netif/etharp.c -------------------------------------------------------------------------------- /modules/lpc1769/lwip/src/netif/ethernetif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc1769/lwip/src/netif/ethernetif.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/base/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m0/base/inc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/lpc4337_m0/base/src/sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/base/src/sysinit.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/inc/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/inc/board.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/inc/board_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/inc/board_api.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/inc/lcd_st7565s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/inc/lcd_st7565s.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/inc/lpc_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/inc/lpc_phy.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/inc/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/inc/retarget.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/inc/wm8904.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/inc/wm8904.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/src/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/src/board.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/src/lcd_st7565s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/src/lcd_st7565s.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/board/src/wm8904.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/board/src/wm8904.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/adc_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/adc_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/aes_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/aes_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/chip.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/chip_clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/chip_clocks.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/chip_lpc18xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/chip_lpc18xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/chip_lpc43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/chip_lpc43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/cmsis.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/core_cm0.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/core_cmFunc.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/core_cmInstr.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/dac_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/dac_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/emc_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/emc_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/error.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/fmc_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/fmc_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/i2c_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/i2c_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/i2s_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/i2s_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/iap.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/iap_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/iap_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/lcd_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/lcd_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/lpc_types.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/otp_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/otp_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/pmc_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/pmc_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/qei_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/qei_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/rgu_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/rgu_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/ring_buffer.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/rtc_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/rtc_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/sct_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/sct_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/scu_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/scu_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/sdmmc.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/spi_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/spi_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/ssp_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/ssp_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/stopwatch.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/usbd/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/usbd/usbd.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/usbd/usbd_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/usbd/usbd_adc.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/usbd/usbd_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/usbd/usbd_cdc.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/usbd/usbd_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/usbd/usbd_dfu.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/usbd/usbd_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/usbd/usbd_hid.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/usbd/usbd_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/usbd/usbd_hw.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/inc/usbd/usbd_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/inc/usbd/usbd_msc.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/adc_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/adc_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/aes_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/aes_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/dac_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/dac_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/emc_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/emc_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/i2c_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/i2c_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/i2s_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/i2s_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/iap_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/iap_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/lcd_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/lcd_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/otp_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/otp_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/pmc_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/pmc_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/ring_buffer.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/rtc_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/rtc_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/sct_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/sct_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/spi_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/spi_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/chip/src/ssp_18xx_43xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/chip/src/ssp_18xx_43xx.c -------------------------------------------------------------------------------- /modules/lpc4337_m0/dsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/dsp/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m0/dsp/inc/arm/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/dsp/inc/arm/arm_math.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/dsp/inc/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/dsp/inc/arm_math.h -------------------------------------------------------------------------------- /modules/lpc4337_m0/dsp/inc/math_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m0/dsp/inc/math_helper.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/base/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/base/inc/cr_start_m0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/base/inc/cr_start_m0.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/base/src/cr_start_m0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/base/src/cr_start_m0.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/base/src/sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/base/src/sysinit.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/inc/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/inc/board.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/inc/board_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/inc/board_api.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/inc/lpc_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/inc/lpc_phy.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/inc/mem_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/inc/mem_tests.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/src/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/src/board.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/src/mem_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/src/mem_tests.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/board/src/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/board/src/retarget.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/adc_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/adc_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/aes_18xx_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/aes_18xx_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/chip.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/chip_clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/chip_clocks.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/chip_lpc18xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/chip_lpc18xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/chip_lpc43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/chip_lpc43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/cmsis.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/cmsis_43xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/cmsis_43xx.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/core_cm4.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/core_cm4_simd.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/core_cmFunc.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/error.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/fpu_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/fpu_init.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/iap.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/lpc_types.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/sdmmc.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/stopwatch.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/sys_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/sys_config.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/inc/usbd/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/inc/usbd/usbd.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/chip/src/fpu_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/chip/src/fpu_init.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/inc/ciaaAIN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/inc/ciaaAIN.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/inc/ciaaAOUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/inc/ciaaAOUT.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/inc/ciaaI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/inc/ciaaI2C.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/inc/ciaaIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/inc/ciaaIO.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/inc/ciaaNVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/inc/ciaaNVM.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/inc/ciaaUART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/inc/ciaaUART.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/src/ciaaAIN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/src/ciaaAIN.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/src/ciaaAOUT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/src/ciaaAOUT.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/src/ciaaI2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/src/ciaaI2C.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/src/ciaaIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/src/ciaaIO.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/src/ciaaNVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/src/ciaaNVM.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/ciaa/src/ciaaUART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/ciaa/src/ciaaUART.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/dsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/dsp/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/dsp/inc/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/dsp/inc/arm_math.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/dsp/inc/math_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/dsp/inc/math_helper.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/inc/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/inc/diskio.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/inc/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/inc/ff.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/inc/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/inc/ffconf.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/inc/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/inc/integer.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/inc/rtc.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/src/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/src/ff.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/src/fs_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/src/fs_usb.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs/src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs/src/rtc.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs_ssp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs_ssp/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs_ssp/inc/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs_ssp/inc/ff.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs_ssp/inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs_ssp/inc/rtc.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs_ssp/src/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs_ssp/src/ff.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs_ssp/src/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs_ssp/src/mmc.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/fatfs_ssp/src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/fatfs_ssp/src/rtc.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/inc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/inc/list.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/inc/queue.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/inc/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/inc/semphr.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/inc/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/inc/task.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/inc/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/inc/timers.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/src/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/src/heap_4.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/src/list.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/src/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/src/port.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/src/queue.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/src/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/src/tasks.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/freertos/src/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/freertos/src/timers.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lpcusblib/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lpcusblib/License.txt -------------------------------------------------------------------------------- /modules/lpc4337_m4/lpcusblib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lpcusblib/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/lpcusblib/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lpcusblib/Readme.txt -------------------------------------------------------------------------------- /modules/lpc4337_m4/lpcusblib/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lpcusblib/Version.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/arch/cc.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/arch/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/arch/perf.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/api.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/arch.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/debug.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/def.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/dhcp.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/dns.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/err.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/init.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/mem.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/memp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/memp.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/netdb.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/netif.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/opt.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/pbuf.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/raw.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/sio.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/snmp.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/stats.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/sys.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/tcp.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/tcpip.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/inc/lwip/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/inc/lwip/udp.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/FILES -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/api/err.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/api/netbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/api/netbuf.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/api/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/api/netdb.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/api/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/api/tcpip.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/def.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/dhcp.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/dns.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/init.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/mem.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/memp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/memp.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/netif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/netif.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/pbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/pbuf.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/raw.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/stats.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/sys.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/tcp.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/core/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/core/udp.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/lwip/src/netif/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/lwip/src/netif/FILES -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/doc/FreeOSEK.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/doc/FreeOSEK.doc -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/doc/FreeOSEK.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/doc/FreeOSEK.req -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/inc/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/inc/Compiler.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/inc/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/inc/Types.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/inc/Types_Arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/inc/Types_Arch.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/inc/cortexM4/StartOs_Arch_SysTick.h: -------------------------------------------------------------------------------- 1 | 2 | void StartOs_Arch_SysTick(void); 3 | -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/inc/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/inc/os.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/ChainTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/ChainTask.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/ClearEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/ClearEvent.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/GetAlarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/GetAlarm.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/GetEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/GetEvent.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/GetTaskID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/GetTaskID.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/Os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/Os.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/Schedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/Schedule.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/SetEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/SetEvent.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/ShutdownOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/ShutdownOS.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/StartOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/StartOS.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/osek/src/WaitEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/osek/src/WaitEvent.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/LICENSE -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/README.md -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_adc.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_board.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_dac.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_delay.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_dht11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_dht11.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_gpio.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_i2c.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_lcd.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_print.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_pwm.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_rgb.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_rtc.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_sct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_sct.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_servo.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_sleep.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_spi.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_stdio.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_tick.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_timer.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/inc/sapi_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/inc/sapi_uart.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_adc.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_board.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_dac.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_delay.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_dht11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_dht11.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_gpio.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_i2c.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_lcd.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_print.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_pwm.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_rgb.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_rtc.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_sct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_sct.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_servo.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_sleep.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_spi.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_stdio.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_tick.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_timer.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/src/sapi_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/src/sapi_uart.c -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi/version.md -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi_rtos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi_rtos/LICENSE -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi_rtos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi_rtos/Makefile -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi_rtos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi_rtos/README.md -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi_rtos/inc/sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi_rtos/inc/sapi.h -------------------------------------------------------------------------------- /modules/lpc4337_m4/sapi_rtos/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc4337_m4/sapi_rtos/version.md -------------------------------------------------------------------------------- /modules/lpc54102_m0/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/base/Makefile -------------------------------------------------------------------------------- /modules/lpc54102_m0/base/inc/crp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/base/inc/crp.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/base/src/sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/base/src/sysinit.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/board/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/board/Makefile -------------------------------------------------------------------------------- /modules/lpc54102_m0/board/inc/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/board/inc/board.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/board/inc/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/board/inc/retarget.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/board/src/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/board/src/board.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/Makefile -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/adc_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/adc_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/chip.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/cmsis.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/core_cm4.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/crc_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/crc_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/dma_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/dma_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/error.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/fpu_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/fpu_init.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/iap.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/lpc_types.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/mrt_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/mrt_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/pdm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/pdm_api.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/pll_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/pll_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/pmu_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/pmu_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/rtc_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/rtc_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/rtc_ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/rtc_ut.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/sct_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/sct_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/inc/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/inc/stopwatch.h -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/libs/libpower.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/libs/libpower.a -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/adc_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/adc_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/crc_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/crc_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/dma_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/dma_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/fpu_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/fpu_init.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/iap.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/pll_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/pll_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/rtc_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/rtc_ut.c -------------------------------------------------------------------------------- /modules/lpc54102_m0/chip/src/sct_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m0/chip/src/sct_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/base/Makefile -------------------------------------------------------------------------------- /modules/lpc54102_m4/base/inc/crp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/base/inc/crp.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/base/src/sysinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/base/src/sysinit.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/board/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/board/Makefile -------------------------------------------------------------------------------- /modules/lpc54102_m4/board/inc/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/board/inc/board.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/board/inc/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/board/inc/retarget.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/board/src/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/board/src/board.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/Makefile -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/adc_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/adc_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/chip.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/cmsis.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/core_cm4.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/crc_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/crc_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/dma_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/dma_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/error.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/fpu_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/fpu_init.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/iap.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/lpc_types.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/mrt_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/mrt_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/pdm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/pdm_api.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/pll_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/pll_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/pmu_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/pmu_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/rtc_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/rtc_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/rtc_ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/rtc_ut.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/sct_5410x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/sct_5410x.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/inc/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/inc/stopwatch.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/libs/libpower.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/libs/libpower.a -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/adc_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/adc_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/crc_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/crc_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/dma_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/dma_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/fpu_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/fpu_init.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/iap.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/pll_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/pll_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/rtc_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/rtc_ut.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/chip/src/sct_5410x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/chip/src/sct_5410x.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/Makefile -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/inc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/inc/list.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/inc/queue.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/inc/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/inc/task.h -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/src/list.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/src/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/src/port.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/src/queue.c -------------------------------------------------------------------------------- /modules/lpc54102_m4/freertos/src/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/modules/lpc54102_m4/freertos/src/tasks.c -------------------------------------------------------------------------------- /out/lpc11u68/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/out/lpc11u68/.gitignore -------------------------------------------------------------------------------- /out/lpc11u68/obj/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /*.d 3 | -------------------------------------------------------------------------------- /out/lpc1769/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/out/lpc1769/.gitignore -------------------------------------------------------------------------------- /out/lpc1769/obj/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /*.d 3 | -------------------------------------------------------------------------------- /out/lpc4337_m0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/out/lpc4337_m0/.gitignore -------------------------------------------------------------------------------- /out/lpc4337_m0/obj/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /*.d 3 | -------------------------------------------------------------------------------- /out/lpc4337_m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/out/lpc4337_m4/.gitignore -------------------------------------------------------------------------------- /out/lpc4337_m4/obj/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /*.d 3 | -------------------------------------------------------------------------------- /out/lpc54102_m0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/out/lpc54102_m0/.gitignore -------------------------------------------------------------------------------- /out/lpc54102_m0/obj/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /*.d 3 | -------------------------------------------------------------------------------- /out/lpc54102_m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/out/lpc54102_m4/.gitignore -------------------------------------------------------------------------------- /out/lpc54102_m4/obj/.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /*.d 3 | -------------------------------------------------------------------------------- /project.mk.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/project.mk.template -------------------------------------------------------------------------------- /projects/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/projects/README.md -------------------------------------------------------------------------------- /sapi_examples/CIAA-Eclipse-C-Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/sapi_examples/CIAA-Eclipse-C-Profile.xml -------------------------------------------------------------------------------- /sapi_examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/sapi_examples/LICENSE -------------------------------------------------------------------------------- /sapi_examples/Linux-Tools-Path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/sapi_examples/Linux-Tools-Path.txt -------------------------------------------------------------------------------- /sapi_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/sapi_examples/README.md -------------------------------------------------------------------------------- /sapi_examples/documentation/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/sapi_examples/documentation/docs/api.md -------------------------------------------------------------------------------- /sapi_examples/documentation/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/sapi_examples/documentation/mkdocs.yml -------------------------------------------------------------------------------- /sapi_examples/edu-ciaa-nxp/operating_systems/freeRTOS/freeRTOS_01_blinky/README.md: -------------------------------------------------------------------------------- 1 | # Blinky con freeRTOS y sAPI. 2 | 3 | -------------------------------------------------------------------------------- /sapi_examples/edu-ciaa-nxp/statecharts/statecharts_bare_metal/gen/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README 4 | -------------------------------------------------------------------------------- /sapi_examples/edu-ciaa-nxp/statecharts/statecharts_bare_metal/gen/README: -------------------------------------------------------------------------------- 1 | Folder for Yakindu SCT generated source files. 2 | -------------------------------------------------------------------------------- /sapi_examples/edu-ciaa-nxp/statecharts/statecharts_os/coperative_os_examples/proximamente: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sapi_examples/edu-ciaa-nxp/statecharts/statecharts_os/freeOSEK_examples/proximamente: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sapi_examples/edu-ciaa-nxp/statecharts/statecharts_os/freeRTOS_examples/proximamente: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /tools/sapi-test-compilation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciaa/firmware_v2/HEAD/tools/sapi-test-compilation.sh --------------------------------------------------------------------------------