├── .gitignore ├── CoX ├── CoX_Peripheral │ ├── CoX_Peripehral_AU9110 │ │ ├── libcox │ │ │ ├── acmp.c │ │ │ ├── acmp.h │ │ │ ├── adc.c │ │ │ ├── adc.h │ │ │ ├── core.c │ │ │ ├── dma.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── hw_acmp.h │ │ │ ├── hw_adc.h │ │ │ ├── hw_dma.h │ │ │ ├── hw_gpio.h │ │ │ ├── hw_i2c.h │ │ │ ├── hw_pwm.h │ │ │ ├── hw_rtc.h │ │ │ ├── hw_spi.h │ │ │ ├── hw_sysctl.h │ │ │ ├── hw_timer.h │ │ │ ├── hw_uart.h │ │ │ ├── hw_wdt.h │ │ │ ├── i2c.h │ │ │ ├── lowlayer.h │ │ │ ├── pwm.h │ │ │ ├── rtc.c │ │ │ ├── rtc.h │ │ │ ├── spi.c │ │ │ ├── spi.h │ │ │ ├── sysctl.c │ │ │ ├── sysctl.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── uart.c │ │ │ ├── uart.h │ │ │ ├── wdt.c │ │ │ ├── wdt.h │ │ │ ├── xPort.h │ │ │ ├── xdma.c │ │ │ ├── xi2c.c │ │ │ └── xpwm.c │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ └── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ ├── CoX_Peripheral_HT32F125x │ │ ├── acmp │ │ │ ├── document │ │ │ │ └── xacmp.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── acmp.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── Backup of template.ewd │ │ │ │ ├── Backup of template.ewp │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ ├── template.icf │ │ │ │ └── template.icf.bat │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xacmptest01.c │ │ │ │ └── xi2ctest02.c │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ ├── example │ │ │ │ └── ADConvert │ │ │ │ │ ├── doc │ │ │ │ │ └── ADConvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADConvert.ewp │ │ │ │ │ └── ADConvert.eww │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── ADConvert.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xadctest00.c │ │ │ │ ├── xadctest01.c │ │ │ │ └── xadctest02.c │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── HT32F125x_flash.icf │ │ │ │ ├── HT32F125x_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── HT32F125x_flash.sct │ │ │ │ ├── HT32F125x_ram.ini │ │ │ │ ├── HT32F125x_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ ├── document │ │ │ │ └── xcore.xml │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ └── xgpiotest2.c │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── AFIO_OUT.png │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── HT32F125x_IrDA_TimingDiagram.png │ │ │ │ ├── HT32F125x_RTC_block.png │ │ │ │ ├── HT32F125x_Timer_Controller_Block.png │ │ │ │ ├── HT32F125x_UART_SYNC_Frame.png │ │ │ │ ├── HT32F125x_UART_block.png │ │ │ │ ├── HT32F125x_acmp_block.png │ │ │ │ ├── HT32F125x_pwm_block.png │ │ │ │ ├── HT32F125x_spi_block.png │ │ │ │ ├── HT32F125x_sysctl_block.png │ │ │ │ ├── HT32F125x_watchdog_block.png │ │ │ │ ├── Power_Architecture.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── ht32f125x_exti.png │ │ │ │ ├── ht32f125x_gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── HT32F125x_acmp_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── HT32F125x_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── HT32F125x_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── ht32f125x_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── HT32F125x_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── HT32F125x_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── HT32F125x_rtc_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── ht32f125x_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── HT32F125x_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── HT32F125x_timer_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── HT32F125x_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── HT32F125x_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ └── blinky │ │ │ │ │ ├── document │ │ │ │ │ └── blinky.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Blinky.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── CoX_Nuvoton_GPIO_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ └── xgpiotest2.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── I2C.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ ├── template.icf │ │ │ │ │ └── template.icf.bat │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ ├── xi2ctest01.c │ │ │ │ │ └── xi2ctest02.c │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ ├── template.icf │ │ │ │ └── template.icf.bat │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xi2ctest01.c │ │ │ │ └── xi2ctest02.c │ │ ├── libcox │ │ │ ├── xacmp.c │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_acmp.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── output │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── output.ewd │ │ │ │ │ ├── output.ewp │ │ │ │ │ └── output.eww │ │ │ │ │ └── src │ │ │ │ │ ├── PWM_Output.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Nuvoton_PWM_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ ├── xpwmtest2.c │ │ │ │ └── xpwmtest3.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_empty_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ └── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_test_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ ├── rtc │ │ │ ├── document │ │ │ │ └── xrtc.xml │ │ │ ├── example │ │ │ │ └── RTCTickInt │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── RTCTickInt.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── RTC.xls │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xrtctest.c │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── spiTest.eww │ │ │ │ └── template.ewp │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── test.uvproj │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ ├── example │ │ │ │ └── PowerManagement │ │ │ │ │ ├── doc │ │ │ │ │ └── SysCtlExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ └── template.icf │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ └── sysctlpwr.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ ├── SysCtl.xls │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── sysctltest00.c │ │ │ │ ├── sysctltest01.c │ │ │ │ ├── sysctltest02.c │ │ │ │ ├── sysctltest03.c │ │ │ │ ├── sysctltest04.c │ │ │ │ ├── sysctltest05.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ ├── example │ │ │ │ └── Timer_Clock │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── one_second_clock.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Stellaris_TIMER_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xtimertest1.c │ │ │ │ └── xtimertest2.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ └── uartprintf │ │ │ │ │ ├── doc │ │ │ │ │ └── uartprintf.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── UartPrintf.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ ├── SysCtl.xls │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xuarttest00.c │ │ │ │ ├── xuarttest01.c │ │ │ │ ├── xuarttest02.c │ │ │ │ ├── xuarttest03.c │ │ │ │ └── xuarttest04.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ ├── example │ │ │ ├── doc │ │ │ │ └── WDTExample.xml │ │ │ └── wakeup │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── Wakeup.c │ │ │ │ └── main.c │ │ │ └── test │ │ │ ├── doc │ │ │ └── WDT.xls │ │ │ └── suite1 │ │ │ ├── rvmdk │ │ │ ├── ram.ini │ │ │ └── suite1.uvproj │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ ├── wdttest00.c │ │ │ ├── wdttest01.c │ │ │ └── wdttest02.c │ ├── CoX_Peripheral_HT32F175x │ │ ├── acmp │ │ │ ├── document │ │ │ │ └── xacmp.xml │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xacmptest01.c │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ ├── example │ │ │ │ └── ADConvert │ │ │ │ │ ├── doc │ │ │ │ │ └── ADConvert.xml │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── ADConvert.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xadctest00.c │ │ │ │ ├── xadctest01.c │ │ │ │ └── xadctest02.c │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── HT32F175x_flash.icf │ │ │ │ ├── HT32F175x_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── HT32F175x_flash.sct │ │ │ │ ├── HT32F175x_ram.ini │ │ │ │ ├── HT32F175x_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ ├── document │ │ │ │ └── xcore.xml │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xcoretest1.c │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── AFIO_IN.png │ │ │ │ ├── AFIO_OUT.png │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── HT32F125x_Timer_Controller_Block.png │ │ │ │ ├── HT32F125x_pwm_block.png │ │ │ │ ├── HT32F175x275x_RTC_block.png │ │ │ │ ├── HT32F175x_275x_IrDA_TimingDiagram.png │ │ │ │ ├── HT32F175x_275x_UART_SYNC_Frame.png │ │ │ │ ├── HT32F175x_275x_UART_block.png │ │ │ │ ├── HT32F175x_275x_acmp_block.png │ │ │ │ ├── HT32F175x_sysctl_block.png │ │ │ │ ├── HT32F175x_watchdog_block.png │ │ │ │ ├── Power_Architecture.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── ht32f175x275x_Timer_Controller_Block.png │ │ │ │ ├── ht32f175x275x_exti.png │ │ │ │ ├── ht32f175x275x_gpio_block.png │ │ │ │ ├── ht32f175x275x_pwm_block.png │ │ │ │ ├── ht32f175x275x_spi_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── HT32F175x_acmp_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── HT32F175x_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── HT32F125x_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── ht32f175x_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── HT32F175x_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── HT32F125x_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── HT32F175x_rtc_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── ht32f125x_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── HT32F175x_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── HT32F175x275x_timer_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── HT32F175x_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── HT32F175x_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ └── blinky │ │ │ │ │ ├── document │ │ │ │ │ └── blinky.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Blinky.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── CoX_Nuvoton_GPIO_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ └── xgpiotest2.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ ├── example │ │ │ │ └── I2CConfig │ │ │ │ │ ├── doc │ │ │ │ │ └── i2cConfig.xml │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── i2cExample.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── suite1 │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ ├── xi2ctest01.c │ │ │ │ │ └── xi2ctest02.c │ │ │ │ └── suite2 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xi2ctest01.c │ │ │ │ └── xi2ctest02.c │ │ ├── libcox │ │ │ ├── xacmp.c │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_acmp.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── output │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── output.ewd │ │ │ │ │ ├── output.ewp │ │ │ │ │ └── output.eww │ │ │ │ │ └── src │ │ │ │ │ ├── PWM_Output.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Nuvoton_PWM_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ ├── xpwmtest2.c │ │ │ │ └── xpwmtest3.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_empty_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ └── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_test_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ ├── rtc │ │ │ ├── document │ │ │ │ └── xrtc.xml │ │ │ ├── example │ │ │ │ └── RTCTickInt │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── RTCTickInt.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── RTC.xls │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xrtctest.c │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── spiTest.eww │ │ │ │ └── template.ewp │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── test.uvproj │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ ├── example │ │ │ │ └── PowerManagement │ │ │ │ │ ├── doc │ │ │ │ │ └── SysCtlExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ └── template.icf │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ └── sysctlpwr.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ ├── SysCtl.xls │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── sysctltest00.c │ │ │ │ ├── sysctltest01.c │ │ │ │ ├── sysctltest02.c │ │ │ │ ├── sysctltest03.c │ │ │ │ ├── sysctltest04.c │ │ │ │ ├── sysctltest05.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ ├── example │ │ │ │ └── Timer_Clock │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── one_second_clock.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Stellaris_TIMER_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xtimertest1.c │ │ │ │ └── xtimertest2.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ └── uartprintf │ │ │ │ │ ├── doc │ │ │ │ │ └── uartprintf.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── UartPrintf.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ ├── SysCtl.xls │ │ │ │ └── SysCtl.xlsx │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ └── template.icf │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ ├── xuarttest00.c │ │ │ │ │ ├── xuarttest01.c │ │ │ │ │ ├── xuarttest02.c │ │ │ │ │ ├── xuarttest03.c │ │ │ │ │ └── xuarttest04.c │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xuarttest00.c │ │ │ │ ├── xuarttest01.c │ │ │ │ ├── xuarttest02.c │ │ │ │ ├── xuarttest03.c │ │ │ │ └── xuarttest04.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ ├── example │ │ │ ├── doc │ │ │ │ └── WDTExample.xml │ │ │ └── wakeup │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── Wakeup.c │ │ │ │ └── main.c │ │ │ └── test │ │ │ ├── doc │ │ │ └── WDT.xls │ │ │ └── suite1 │ │ │ ├── rvmdk │ │ │ ├── ram.ini │ │ │ └── suite1.uvproj │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ ├── wdttest00.c │ │ │ ├── wdttest01.c │ │ │ └── wdttest02.c │ ├── CoX_Peripheral_KLx │ │ ├── I2C │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ ├── example │ │ │ │ └── master_t │ │ │ │ │ ├── document │ │ │ │ │ └── I2CExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── config files │ │ │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ │ ├── 32KB_Pflash.icf │ │ │ │ │ │ ├── 4KB_RAM.icf │ │ │ │ │ │ ├── 64KB_Pflash.icf │ │ │ │ │ │ ├── 8KB_RAM.icf │ │ │ │ │ │ └── test.icf │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ │ └── src │ │ │ │ │ ├── I2CExample.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── I2C.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── config files │ │ │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ │ ├── 32KB_Pflash.icf │ │ │ │ │ │ ├── 4KB_RAM.icf │ │ │ │ │ │ ├── 64KB_Pflash.icf │ │ │ │ │ │ ├── 8KB_RAM.icf │ │ │ │ │ │ └── test.icf │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest1.c │ │ │ │ ├── suite5 │ │ │ │ ├── ewarm │ │ │ │ │ ├── config files │ │ │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ │ ├── 32KB_Pflash.icf │ │ │ │ │ │ ├── 4KB_RAM.icf │ │ │ │ │ │ ├── 64KB_Pflash.icf │ │ │ │ │ │ ├── 8KB_RAM.icf │ │ │ │ │ │ └── test.icf │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest2.c │ │ │ │ └── suite6 │ │ │ │ ├── ewarm │ │ │ │ ├── config files │ │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ ├── 32KB_Pflash.icf │ │ │ │ │ ├── 4KB_RAM.icf │ │ │ │ │ ├── 64KB_Pflash.icf │ │ │ │ │ ├── 8KB_RAM.icf │ │ │ │ │ └── test.icf │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xi2ctest3.c │ │ ├── acmp │ │ │ ├── document │ │ │ │ └── xacmp.xml │ │ │ ├── example │ │ │ │ └── Acmp │ │ │ │ │ ├── doc │ │ │ │ │ └── Acmp.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Acmp.ewd │ │ │ │ │ ├── Acmp.ewp │ │ │ │ │ └── Acmp.eww │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── Acmp.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ACMP_Report.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suite1.ewd │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xacmptest.c │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── suite2.ewd │ │ │ │ ├── suite2.ewp │ │ │ │ └── suite2.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xacmptest.c │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ ├── example │ │ │ │ ├── ADC_freedomKL25 │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── adc_freedomKL25.c │ │ │ │ └── ADConvert │ │ │ │ │ ├── doc │ │ │ │ │ └── ADConvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADConvert.ewd │ │ │ │ │ ├── ADConvert.ewp │ │ │ │ │ └── ADConvert.eww │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── ADConvert.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xadctest00.c │ │ │ │ ├── xadctest01.c │ │ │ │ └── xadctest02.c │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── ewarm │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ ├── document │ │ │ │ └── xcore.xml │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── config files │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ ├── 16KB_Ram.icf │ │ │ │ ├── 32KB_Pflash.icf │ │ │ │ ├── 4KB_RAM.icf │ │ │ │ ├── 64KB_Pflash.icf │ │ │ │ └── 8KB_RAM.icf │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xcoretest1.c │ │ ├── dma │ │ │ ├── document │ │ │ │ └── xdma.xml │ │ │ ├── example │ │ │ │ └── mem2mem │ │ │ │ │ ├── document │ │ │ │ │ └── DMAExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── 128KB_flash.icf │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ ├── Xdmatest.eww │ │ │ │ │ ├── template.board │ │ │ │ │ ├── template.ewd │ │ │ │ │ └── template.ewp │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── mem2mem.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── DMA.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── 128KB_flash.icf │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ ├── Xdmatest.eww │ │ │ │ ├── template.ewd │ │ │ │ └── template.ewp │ │ │ │ └── src │ │ │ │ ├── dmatest00.c │ │ │ │ ├── dmatest01.c │ │ │ │ ├── dmatest02.c │ │ │ │ ├── dmatest03.c │ │ │ │ ├── dmatest04.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── KLx_ADC_block.png │ │ │ │ ├── KLx_DMA_block.png │ │ │ │ ├── KLx_RTC_block.png │ │ │ │ ├── KLx_acmp_block.png │ │ │ │ ├── KLx_gpio_block.png │ │ │ │ ├── KLx_pwm_block.png │ │ │ │ ├── KLx_spi_block.png │ │ │ │ ├── KLx_sysctl_block.png │ │ │ │ ├── KLxx_UART_Receive_block.PNG │ │ │ │ ├── KLxx_UART_Transmit_block.PNG │ │ │ │ ├── RTC_block.png │ │ │ │ ├── SPI Bidirectional and normal mode.png │ │ │ │ ├── SPI Clock Formats CPHA0.png │ │ │ │ ├── SPI Clock Formats CPHA1.png │ │ │ │ ├── Thumbs.db │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── KLx_acmp_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── KLx_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── STM32F1xx_adc_en.txt.pl │ │ │ │ │ ├── nuc1xx_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── dma │ │ │ │ ├── KLx_dma_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xdma.h.pl │ │ │ │ └── xdma_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── klx_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── klx_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── KLx_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── KLx_rtc_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── KLx_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── KLx_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── uart │ │ │ │ ├── klxx_uart_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── klxx_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ ├── blinky │ │ │ │ │ ├── document │ │ │ │ │ │ └── blinkExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── Blinky.c │ │ │ │ └── external_int │ │ │ │ │ ├── document │ │ │ │ │ └── intExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── External_Int.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── config files │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ ├── 16KB_Ram.icf │ │ │ │ ├── 32KB_Pflash.icf │ │ │ │ ├── 4KB_RAM.icf │ │ │ │ ├── 64KB_Pflash.icf │ │ │ │ └── 8KB_RAM.icf │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── startup_ewarm.c │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ └── xgpiotest2.c │ │ ├── libcox │ │ │ ├── xacmp.c │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xadc.h~ │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xdma.c │ │ │ ├── xdma.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_acmp.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_dma.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_tpm.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── output │ │ │ │ │ ├── document │ │ │ │ │ └── PWMExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ ├── output.ewd │ │ │ │ │ ├── output.ewp │ │ │ │ │ └── output.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── PWM_Output.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ ├── COX_KLx_PWM_Tasklist_Report.xls │ │ │ │ └── COX_Nuvoton_PWM_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ ├── xpwmtest2.c │ │ │ │ └── xpwmtest3.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── coide_gen.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ └── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── coide_gen.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ └── memory.ld │ │ ├── rtc │ │ │ ├── document │ │ │ │ └── xrtc.xml │ │ │ ├── example │ │ │ │ └── RTCTickInt │ │ │ │ │ ├── document │ │ │ │ │ └── RTCExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ ├── RTCTickInt.ewd │ │ │ │ │ ├── RTCTickInt.ewp │ │ │ │ │ └── RTCTickInt.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── RTCTickInt.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── RTC.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xrtctest.c │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ ├── example │ │ │ │ └── SpiMaster │ │ │ │ │ ├── doc │ │ │ │ │ └── SpiMaster.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ │ ├── spiMaster.ewd │ │ │ │ │ ├── spiMaster.ewp │ │ │ │ │ └── spiMaster.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SpiMaster.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── 128KB_Pflash.icf │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ ├── EW126.tmp │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── spitest03.c │ │ │ │ ├── spitest04.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ ├── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ │ ├── startup_coide.c │ │ │ ├── startup_ewarm.s │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ ├── example │ │ │ │ ├── document │ │ │ │ │ └── sysctlExample.xml │ │ │ │ └── sysctl_example.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── 16KB_RAM.icf │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ └── src │ │ │ │ ├── Xsysctltest.c │ │ │ │ ├── Xsysctltest01.c │ │ │ │ ├── Xsysctltest02.c │ │ │ │ ├── Xsysctltest03.c │ │ │ │ ├── Xsysctltest04.c │ │ │ │ ├── Xsysctltest05.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ ├── uart0_example.c │ │ │ │ ├── uart_example │ │ │ │ │ ├── document │ │ │ │ │ │ └── UartExample.xml │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── uart_example.c │ │ │ │ └── uart_freedomKL25 │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── uart_freedomKL25.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── doc │ │ │ │ └── uart.xls │ │ │ │ ├── ewarm │ │ │ │ ├── test.icf │ │ │ │ ├── uart.ewd │ │ │ │ ├── uart.ewp │ │ │ │ └── uart.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xuarttest01.c │ │ │ │ ├── xuarttest02.c │ │ │ │ └── xuarttest03.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ ├── example │ │ │ ├── Watchdog │ │ │ │ └── watchdog_example.c │ │ │ └── doc │ │ │ │ └── WDTExample.xml │ │ │ └── test │ │ │ ├── doc │ │ │ └── watchdog.xls │ │ │ └── suite1 │ │ │ ├── ewarm │ │ │ ├── README.txt │ │ │ ├── wdt.ewd │ │ │ ├── wdt.ewp │ │ │ └── wdt.eww │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ └── wdttest00.c │ ├── CoX_Peripheral_LPC17xx │ │ ├── ReadMe.txt │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ └── example │ │ │ │ └── ADC_Example_Read │ │ │ │ ├── doc │ │ │ │ └── ADC_Example_Read.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── ADC_Example_Read.c │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ └── document │ │ │ │ └── xcore.xml │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.jpg │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── Power_Architecture.jpg │ │ │ │ ├── Power_Architecture.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── STM32F1xx_ADC_block.jpg │ │ │ │ ├── STM32F1xx_ClockTree.PNG │ │ │ │ ├── STM32F1xx_DMA_block.png │ │ │ │ ├── STM32F1xx_IrDA_TimingDiagram.jpg │ │ │ │ ├── STM32F1xx_LIN_BreakDetection.jpg │ │ │ │ ├── STM32F1xx_RTC_block.png │ │ │ │ ├── STM32F1xx_UART_Interrupt.jpg │ │ │ │ ├── STM32F1xx_UART_Modem.jpg │ │ │ │ ├── STM32F1xx_UART_Mute.jpg │ │ │ │ ├── STM32F1xx_UART_SYNC_Frame.jpg │ │ │ │ ├── STM32F1xx_UART_SmartCard.jpg │ │ │ │ ├── STM32F1xx_UART_block.jpg │ │ │ │ ├── STM32F1xx_pwm_block.jpg │ │ │ │ ├── STM32F1xx_sysctl_block.png │ │ │ │ ├── STM32F1xx_watchdog_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.jpg │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.jpg │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stm32f1xx_Timer_Controller_Block.png │ │ │ │ ├── stm32f1xx_gpio_block.png │ │ │ │ ├── stm32f1xx_spi_block.png │ │ │ │ ├── uart_block.png │ │ │ │ ├── watchdog_block.jpg │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── adc │ │ │ │ ├── STM32F1xx_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── STM32F1xx_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── dma │ │ │ │ ├── perl │ │ │ │ │ └── xdma.h.pl │ │ │ │ ├── stm32f1xx_pdma_en.txt │ │ │ │ └── xdma_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ ├── stm32f1xx_gpio_en.txt │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── STM32F1xx_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── STM32F1xx_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── STM32F1xx_rtc_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ ├── stm32f1xx_spi_en.txt │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── STM32F1xx_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ ├── stm32f1xx_timer_en.txt │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── STM32F1xx_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── STM32F1xx_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ └── example │ │ │ │ ├── GPIO_Example_Int │ │ │ │ ├── doc │ │ │ │ │ └── GPIO_Example_Int.xml │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ └── GPIO_Example_Int.c │ │ │ │ └── GPIO_Example_LED_Blink │ │ │ │ ├── doc │ │ │ │ └── GPIO_Example_LED_Blink.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── GPIO_Example_LED_Blink.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ └── example │ │ │ │ └── I2C_Example_Master │ │ │ │ ├── doc │ │ │ │ └── I2C_Example_Master.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── I2C_Example_Master.c │ │ ├── libcox │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_pwm.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ └── example │ │ │ │ └── PWM_Example_Basic │ │ │ │ ├── doc │ │ │ │ └── PWM_Example_Basic.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── PWM_Example_Basic.c │ │ ├── resource │ │ │ └── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_empty_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ ├── rtc │ │ │ ├── document │ │ │ │ └── xrtc.xml │ │ │ └── example │ │ │ │ └── RTC_Example_Basic │ │ │ │ ├── doc │ │ │ │ └── RTC_Example_Basic.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── RTC_Example_Basic.c │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ └── example │ │ │ │ └── SPI_Example_Master │ │ │ │ ├── doc │ │ │ │ └── SPI_Example_Master.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── SPI_Example_Master.c │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ └── document │ │ │ │ └── xsysctl.xml │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ └── example │ │ │ │ ├── Timer_Example_Capture │ │ │ │ ├── doc │ │ │ │ │ └── Timer_Example_Capture.xml │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ └── Timer_Example_Capture.c │ │ │ │ ├── Timer_Example_CounterMode │ │ │ │ ├── doc │ │ │ │ │ └── Timer_Example_CounterMode.xml │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ └── Timer_Example_CounterMode.c │ │ │ │ └── Timer_Example_Interrupt │ │ │ │ ├── doc │ │ │ │ └── Timer_Example_Interrupt.xml │ │ │ │ ├── ewarm │ │ │ │ └── .gitignore │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── Timer_Example_Interrupt.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ └── example │ │ │ │ └── UART_Example_Basic │ │ │ │ ├── doc │ │ │ │ └── UART_Example_Basic.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── UART_Example_Basic.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ └── example │ │ │ ├── WDT_Example_Int │ │ │ ├── doc │ │ │ │ └── WDT_Example_Int.xml │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── IAR_Example_Templet.ewd │ │ │ │ ├── IAR_Example_Templet.ewp │ │ │ │ └── IAR_Example_Templet.eww │ │ │ ├── main.c │ │ │ └── src │ │ │ │ └── WDT_Example_Int.c │ │ │ └── WDT_Example_Reset │ │ │ ├── doc │ │ │ └── WDT_Example_Reset.xml │ │ │ ├── ewarm │ │ │ ├── .gitignore │ │ │ ├── IAR_Example_Templet.ewd │ │ │ ├── IAR_Example_Templet.ewp │ │ │ └── IAR_Example_Templet.eww │ │ │ ├── main.c │ │ │ └── src │ │ │ └── WDT_Example_Reset.c │ ├── CoX_Peripheral_M051 │ │ ├── acmp │ │ │ ├── document │ │ │ │ └── xacmp.xml │ │ │ ├── example │ │ │ │ └── ACMPCompare │ │ │ │ │ ├── doc │ │ │ │ │ └── ADConvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADConvert.ewp │ │ │ │ │ └── ADConvert.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── ACMPCompare.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ACMP_Report.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xacmptest.c │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite2.ewp │ │ │ │ └── suite2.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xacmptest.c │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ ├── example │ │ │ │ └── ADConvert │ │ │ │ │ ├── doc │ │ │ │ │ └── ADConvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADConvert.ewp │ │ │ │ │ └── ADConvert.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── ADConvert.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ │ ├── Xadctest.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite2.ewp │ │ │ │ └── suite2.eww │ │ │ │ └── src │ │ │ │ ├── Xadctest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ └── document │ │ │ │ └── xcore.xml │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── M051_IrDA_TimingDiagram.png │ │ │ │ ├── M051_Timer_Controller_Block.png │ │ │ │ ├── M051_UART_LIN_Frame.png │ │ │ │ ├── M051_UART_block.png │ │ │ │ ├── M051_acmp_block.png │ │ │ │ ├── M051_pwm_block.png │ │ │ │ ├── M051_spi_block.png │ │ │ │ ├── M051_sysctl_block.png │ │ │ │ ├── M051_watchdog_block.png │ │ │ │ ├── Power_Architecture.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── m051_acmp_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── m051_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── m051_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── M051_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── M051_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── M051_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── spi │ │ │ │ ├── M051_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── M051_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── M051_timer_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── M051_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── m051_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ └── blinky │ │ │ │ │ ├── document │ │ │ │ │ └── blinky.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Blinky.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── CoX_Nuvoton_GPIO_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ ├── xgpiotest2.c │ │ │ │ └── xgpiotest3.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ ├── example │ │ │ │ ├── multiple_slave_address │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── SlaveMultipleAddress.c │ │ │ │ └── slave_receive_poll │ │ │ │ │ ├── doc │ │ │ │ │ └── I2CExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SlaveReceivePoll.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── I2C.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest1.c │ │ │ │ ├── suite2 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest4.c │ │ │ │ ├── suite3 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest2.c │ │ │ │ ├── suite4 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest3.c │ │ │ │ ├── suite5 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest2.c │ │ │ │ └── suite6 │ │ │ │ ├── ewarm │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xi2ctest3.c │ │ ├── libcox │ │ │ ├── xacmp.c │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_acmp.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_pwm.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── output │ │ │ │ │ ├── document │ │ │ │ │ └── PWMExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── output.ewd │ │ │ │ │ ├── output.ewp │ │ │ │ │ └── output.eww │ │ │ │ │ └── src │ │ │ │ │ ├── PWM_Output.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Nuvoton_PWM_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ ├── xpwmtest2.c │ │ │ │ └── xpwmtest3.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_empty_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ ├── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_test_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ ├── doxygen │ │ │ │ ├── css │ │ │ │ │ ├── UpLevel.gif │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── menubg.gif │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── search │ │ │ │ │ │ └── search.css │ │ │ │ │ └── tabs.css │ │ │ │ └── gen │ │ │ │ │ ├── coocox_logo.png │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── cox_foot.html │ │ │ │ │ └── cox_head.html │ │ │ └── tools │ │ │ │ ├── 7za.exe │ │ │ │ └── iar2coide │ │ │ │ └── iar2coide.exe │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ ├── example │ │ │ │ └── SpiSlave │ │ │ │ │ ├── doc │ │ │ │ │ └── SpiSlave.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── SpiSlave.ewd │ │ │ │ │ ├── SpiSlave.ewp │ │ │ │ │ └── SpiSlave.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SpiSlave.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── spitest03.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ ├── example │ │ │ │ └── PowerManagement │ │ │ │ │ ├── doc │ │ │ │ │ └── SysCtlExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ └── template.icf │ │ │ │ │ └── src │ │ │ │ │ ├── SysctlPwr.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SysCtl.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ ├── sysctltest00.c │ │ │ │ ├── sysctltest01.c │ │ │ │ ├── sysctltest02.c │ │ │ │ ├── sysctltest03.c │ │ │ │ ├── sysctltest04.c │ │ │ │ ├── sysctltest05.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ ├── example │ │ │ │ └── Timer_Clock │ │ │ │ │ ├── doc │ │ │ │ │ └── Timer_Clock.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── Timer_Clock.ewd │ │ │ │ │ ├── Timer_Clock.ewp │ │ │ │ │ └── Timer_Clock.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── OneSecondClock.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── TIMER.xls │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xtimertest1.c │ │ │ │ ├── xtimertest2.c │ │ │ │ └── xtimertest3.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ └── uartprintf │ │ │ │ │ ├── doc │ │ │ │ │ └── uartprintf.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ └── src │ │ │ │ │ ├── UartPrintf.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── doc │ │ │ │ └── UART.xls │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xuarttest.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ ├── example │ │ │ └── wakeup │ │ │ │ ├── document │ │ │ │ └── Wakeup.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── Wakeup.c │ │ │ └── test │ │ │ ├── doc │ │ │ └── WDT.xls │ │ │ └── suite1 │ │ │ ├── ewarm │ │ │ ├── .gitignore │ │ │ ├── template.ewp │ │ │ └── template.eww │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ ├── wdttest00.c │ │ │ ├── wdttest01.c │ │ │ └── wdttest02.c │ ├── CoX_Peripheral_M051DN │ │ ├── all │ │ │ └── project │ │ │ │ └── template │ │ │ │ └── coide │ │ │ │ ├── main.c │ │ │ │ └── template.coproj │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── M051_IrDA_TimingDiagram.png │ │ │ │ ├── M051_Timer_Controller_Block.png │ │ │ │ ├── M051_UART_LIN_Frame.png │ │ │ │ ├── M051_UART_block.png │ │ │ │ ├── M051_acmp_block.png │ │ │ │ ├── M051_pwm_block.png │ │ │ │ ├── M051_spi_block.png │ │ │ │ ├── M051_sysctl_block.png │ │ │ │ ├── M051_watchdog_block.png │ │ │ │ ├── Power_Architecture.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── m051_acmp_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── m051_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── m051_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── M051_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── M051_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── M051_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── spi │ │ │ │ ├── M051_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── M051_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── M051_timer_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── M051_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── m051_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── libcox │ │ │ ├── acmp.c │ │ │ ├── acmp.h │ │ │ ├── adc.c │ │ │ ├── adc.h │ │ │ ├── core.c │ │ │ ├── debug.c │ │ │ ├── dma.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── hw_acmp.h │ │ │ ├── hw_adc.h │ │ │ ├── hw_gpio.h │ │ │ ├── hw_i2c.h │ │ │ ├── hw_pwm.h │ │ │ ├── hw_spi.h │ │ │ ├── hw_sysctl.h │ │ │ ├── hw_timer.h │ │ │ ├── hw_uart.h │ │ │ ├── hw_wdt.h │ │ │ ├── i2c.c │ │ │ ├── i2c.h │ │ │ ├── lowlayer.h │ │ │ ├── pwm.c │ │ │ ├── pwm.h │ │ │ ├── rtc.h │ │ │ ├── spi.c │ │ │ ├── spi.h │ │ │ ├── sysctl.c │ │ │ ├── sysctl.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── uart.c │ │ │ ├── uart.h │ │ │ ├── wdt.c │ │ │ ├── wdt.h │ │ │ └── xPort.h │ │ ├── resource │ │ │ └── doxygen │ │ │ │ ├── css │ │ │ │ ├── UpLevel.gif │ │ │ │ ├── doxygen.css │ │ │ │ ├── ftv2splitbar.png │ │ │ │ ├── menubg.gif │ │ │ │ ├── navtree.css │ │ │ │ ├── search │ │ │ │ │ └── search.css │ │ │ │ └── tabs.css │ │ │ │ └── gen │ │ │ │ ├── coocox_logo.png │ │ │ │ ├── cox_en.cfg │ │ │ │ ├── cox_foot.html │ │ │ │ └── cox_head.html │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ └── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ ├── CoX_Peripheral_Manual │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── NUC1xx_IrDA_TimingDiagram.png │ │ │ │ ├── NUC1xx_PDMA_block.png │ │ │ │ ├── NUC1xx_RTC_block.png │ │ │ │ ├── NUC1xx_UART_LIN_Frame.png │ │ │ │ ├── NUC1xx_UART_block.png │ │ │ │ ├── NUC1xx_gpio_block.png │ │ │ │ ├── NUC1xx_pwm_block.png │ │ │ │ ├── NUC1xx_spi_block.png │ │ │ │ ├── NUC1xx_sysctl_block.png │ │ │ │ ├── NUC1xx_watchdog_block.png │ │ │ │ ├── Nuvoton_Timer_Controller_Block.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── nuc1xx_acmp_block.png │ │ │ │ ├── nuc1xx_adc_block.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── perl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── dma │ │ │ │ ├── perl │ │ │ │ │ └── xdma.h.pl │ │ │ │ └── xdma_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ └── libcox │ │ │ ├── xacmp.h │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xdma.h │ │ │ ├── xgpio.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_types.h │ │ │ ├── xi2c.h │ │ │ ├── xpwm.h │ │ │ ├── xrtc.h │ │ │ ├── xspi.h │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.h │ │ │ ├── xuart.h │ │ │ └── xwdt.h │ ├── CoX_Peripheral_Mini51 │ │ ├── acmp │ │ │ ├── document │ │ │ │ └── xacmp.xml │ │ │ ├── example │ │ │ │ └── ACMPCompare │ │ │ │ │ ├── doc │ │ │ │ │ └── ACMPonvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ACMPonvert.ewd │ │ │ │ │ ├── ACMPonvert.ewp │ │ │ │ │ └── ACMPonvert.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── ACMPCompare.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ACMP_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xacmptest.c │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ ├── example │ │ │ │ └── ADConvert │ │ │ │ │ ├── doc │ │ │ │ │ └── ADConvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADConvert.ewd │ │ │ │ │ ├── ADConvert.ewp │ │ │ │ │ └── ADConvert.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── ADConvert.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── Xadctest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ └── document │ │ │ │ └── xcore.xml │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── MINI51_spi_block.png │ │ │ │ ├── MINI51_sysctl_block.png │ │ │ │ ├── Mini51_IrDA_TimingDiagram.png │ │ │ │ ├── Mini51_Timer_Controller_Block.png │ │ │ │ ├── Mini51_UART_block.png │ │ │ │ ├── Mini51_acmp_block.png │ │ │ │ ├── Mini51_pwm_block.png │ │ │ │ ├── Mini51_watchdog_block.png │ │ │ │ ├── Power_Architecture.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── Mini51_acmp_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── MINI51_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── MINI51_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── MINI51_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── Mini51_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── Mini51_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── spi │ │ │ │ ├── MINI51_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── MINI51_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── Mini51_timer_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── Mini51_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── Mini51_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ └── blinky │ │ │ │ │ ├── document │ │ │ │ │ └── blinky.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Blinky.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── CoX_Nuvoton_GPIO_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ ├── xgpiotest2.c │ │ │ │ └── xgpiotest3.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ ├── example │ │ │ │ ├── multiple_slave_address │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── SlaveMultipleAddress.c │ │ │ │ └── slave_receive_poll │ │ │ │ │ ├── doc │ │ │ │ │ └── I2CExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SlaveReceivePoll.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── I2C.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest1.c │ │ │ │ ├── suite2 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest4.c │ │ │ │ ├── suite3 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest2.c │ │ │ │ └── suite4 │ │ │ │ ├── ewarm │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xi2ctest3.c │ │ ├── libcox │ │ │ ├── xacmp.c │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_acmp.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_pwm.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── output │ │ │ │ │ ├── document │ │ │ │ │ └── PWMExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── output.ewd │ │ │ │ │ ├── output.ewp │ │ │ │ │ └── output.eww │ │ │ │ │ └── src │ │ │ │ │ ├── PWM_Output.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Nuvoton_PWM_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ └── xpwmtest2.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_empty_project.cob │ │ │ │ ├── cox_coide_empty_project.elf.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ ├── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_test_project.cob │ │ │ │ ├── cox_coide_test_project.elf.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ ├── doxygen │ │ │ │ ├── css │ │ │ │ │ ├── UpLevel.gif │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── menubg.gif │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── search │ │ │ │ │ │ └── search.css │ │ │ │ │ └── tabs.css │ │ │ │ └── gen │ │ │ │ │ ├── coocox_logo.png │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── cox_foot.html │ │ │ │ │ └── cox_head.html │ │ │ └── tools │ │ │ │ ├── 7za.exe │ │ │ │ └── iar2coide │ │ │ │ └── iar2coide.exe │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ ├── example │ │ │ │ └── SpiSlave │ │ │ │ │ ├── doc │ │ │ │ │ └── SpiSlave.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── SpiSlave.ewd │ │ │ │ │ ├── SpiSlave.ewp │ │ │ │ │ └── SpiSlave.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SpiSlave.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── spitest03.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ ├── example │ │ │ │ └── PowerManagement │ │ │ │ │ ├── doc │ │ │ │ │ └── SysCtlExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ └── template.icf │ │ │ │ │ └── src │ │ │ │ │ ├── SysctlPwr.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ ├── SysCtl.xls │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ ├── sysctltest00.c │ │ │ │ ├── sysctltest01.c │ │ │ │ ├── sysctltest02.c │ │ │ │ ├── sysctltest03.c │ │ │ │ ├── sysctltest04.c │ │ │ │ ├── sysctltest05.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ ├── example │ │ │ │ └── Timer_Clock │ │ │ │ │ ├── doc │ │ │ │ │ └── Timer_Clock.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── Timer_Clock.ewd │ │ │ │ │ ├── Timer_Clock.ewp │ │ │ │ │ └── Timer_Clock.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── OneSecondClock.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── TIMER.xls │ │ │ │ ├── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── suite1.ewd │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ ├── xtimertest1.c │ │ │ │ │ └── xtimertest2.c │ │ │ │ └── suite2 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xtimertest3.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ └── uartprintf │ │ │ │ │ ├── doc │ │ │ │ │ └── uartprintf.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ └── uartprintf.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── doc │ │ │ │ └── UART.xls │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xuarttest.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ ├── example │ │ │ └── wakeup │ │ │ │ ├── document │ │ │ │ └── Wakeup.xml │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── Wakeup.c │ │ │ └── test │ │ │ ├── doc │ │ │ └── WDT.xls │ │ │ └── suite1 │ │ │ ├── ewarm │ │ │ ├── .gitignore │ │ │ ├── template.ewd │ │ │ ├── template.ewp │ │ │ └── template.eww │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ ├── wdttest00.c │ │ │ ├── wdttest01.c │ │ │ └── wdttest02.c │ ├── CoX_Peripheral_NUC122 │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc122_flash.sct │ │ │ │ ├── nuc122_ram.ini │ │ │ │ ├── nuc122_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ └── document │ │ │ │ └── xcore.xml │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── NUC122_IrDA_TimingDiagram.png │ │ │ │ ├── NUC122_RTC_block.png │ │ │ │ ├── NUC122_Timer_Controller_Block.png │ │ │ │ ├── NUC122_UART_block.png │ │ │ │ ├── NUC122_gpio_block.png │ │ │ │ ├── NUC122_pwm_block.png │ │ │ │ ├── NUC122_spi_block.png │ │ │ │ ├── NUC122_sysctl_block.png │ │ │ │ ├── NUC122_watchdog_block.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── nuc122_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── nuc122_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── nuc122_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── nuc122_rtc_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── nuc122_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── nuc122_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── nuc122_timer_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── nuc122_uart_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── nuc122_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ ├── blinky │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── Blinky.c │ │ │ │ └── external_int │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── External_Int.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── CoX_Nuvoton_GPIO_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ └── xgpiotest2.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ ├── example │ │ │ │ ├── multiple_slave_address │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── SlaveMultipleAddress.c │ │ │ │ └── slave_receive_poll │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SlaveReceivePoll.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── I2C.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xi2ctest1.c │ │ │ │ ├── xi2ctest2.c │ │ │ │ ├── xi2ctest3.c │ │ │ │ └── xi2ctest4.c │ │ ├── libcox │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_pwm.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── output │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── output.ewd │ │ │ │ │ ├── output.ewp │ │ │ │ │ └── output.eww │ │ │ │ │ └── src │ │ │ │ │ ├── PWM_Output.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── xPWM.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ ├── xpwmtest2.c │ │ │ │ └── xpwmtest3.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── coide_gen.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ └── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── coide_gen.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ ├── rtc │ │ │ ├── document │ │ │ │ └── xrtc.xml │ │ │ ├── example │ │ │ │ └── RTCTickInt │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── RTCTickInt.ewd │ │ │ │ │ ├── RTCTickInt.ewp │ │ │ │ │ └── RTCTickInt.eww │ │ │ │ │ └── src │ │ │ │ │ ├── RTCTickInt.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── RTC.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xrtctest.c │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ ├── example │ │ │ │ ├── SpiMaster │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── SpiMaster.ewd │ │ │ │ │ │ ├── SpiMaster.ewp │ │ │ │ │ │ └── SpiMaster.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ ├── SPI_loop.h │ │ │ │ │ │ ├── SpiMaster.c │ │ │ │ │ │ └── SpiMaster.h │ │ │ │ └── SpiSlave │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── SpiSlave.ewd │ │ │ │ │ ├── SpiSlave.ewp │ │ │ │ │ └── SpiSlave.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── SpiSlave.c │ │ │ │ │ └── SpiSlave.h │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── spitest03.c │ │ │ │ ├── spitest04.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ ├── example │ │ │ │ └── powermanagement │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── sysctlpwr.c │ │ │ │ │ └── sysctlpwr.h │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SysCtl.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ └── src │ │ │ │ ├── sysctltest00.c │ │ │ │ ├── sysctltest01.c │ │ │ │ ├── sysctltest02.c │ │ │ │ ├── sysctltest03.c │ │ │ │ ├── sysctltest04.c │ │ │ │ ├── sysctltest05.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ ├── example │ │ │ │ └── Timer_Clock │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── Timer_Clock.ewd │ │ │ │ │ ├── Timer_Clock.ewp │ │ │ │ │ └── Timer_Clock.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── one_second_clock.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Stellaris_TIMER_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xtimertest1.c │ │ │ │ ├── xtimertest2.c │ │ │ │ └── xtimertest3.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ └── uartprintf │ │ │ │ │ ├── doc │ │ │ │ │ └── uartprintf.xml │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ │ └── uartprintf.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ └── uartprintf.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── doc │ │ │ │ └── CoX_NUC122_UART_Tasklist_Report.xls │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xuarttest.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ ├── example │ │ │ └── wakeup │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── Wakeup.c │ │ │ └── test │ │ │ ├── doc │ │ │ └── WDT.xls │ │ │ └── suite1 │ │ │ ├── ewarm │ │ │ ├── template.ewd │ │ │ ├── template.ewp │ │ │ └── template.eww │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ ├── wdttest00.c │ │ │ ├── wdttest01.c │ │ │ └── wdttest02.c │ ├── CoX_Peripheral_NUC123 │ │ ├── all │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ └── main.c │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── NUC123_GPIO_OD.png │ │ │ │ ├── NUC123_GPIO_PP.png │ │ │ │ ├── NUC123_GPIO_QB.png │ │ │ │ ├── NUC123_IrDA_TimingDiagram.png │ │ │ │ ├── NUC123_Timer_Controller_Block.png │ │ │ │ ├── NUC123_UART_block.png │ │ │ │ ├── NUC123_pwm_block.png │ │ │ │ ├── NUC123_spi_block.png │ │ │ │ ├── NUC123_sysctl_block.png │ │ │ │ ├── NUC123_sysctl_block1.png │ │ │ │ ├── NUC123_watchdog_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── nuc123_gpio_en.txt │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── nuc123_i2c_en.txt │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── nuc122_pwm_en.txt │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── spi │ │ │ │ ├── nuc123_spi_en.txt │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── nuc123_sysctl_en.txt │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── nuc123_timer_en.txt │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── nuc123_uart_en.txt │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── nuc123_wdt_en.txt │ │ │ │ └── xwdt_en.txt │ │ ├── libcox │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xdma.c │ │ │ ├── xdma.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_dma.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_pwm.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ └── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ ├── CoX_Peripheral_NUC1xx │ │ ├── acmp │ │ │ ├── document │ │ │ │ └── xacmp.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ACMP_Report.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suite1.ewd │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xacmptest.c │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── suite2.ewd │ │ │ │ ├── suite2.ewp │ │ │ │ └── suite2.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xacmptest.c │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── suite1.ewd │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ │ ├── Xadctest.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── suite2.ewd │ │ │ │ ├── suite2.ewp │ │ │ │ └── suite2.eww │ │ │ │ └── src │ │ │ │ ├── Xadctest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ └── document │ │ │ │ └── xcore.xml │ │ ├── dma │ │ │ ├── document │ │ │ │ ├── PDMA.xlsx │ │ │ │ └── xdma.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── PDMA.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── Xdmatest.eww │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ └── template.ewp │ │ │ │ └── src │ │ │ │ ├── dmatest00.c │ │ │ │ ├── dmatest01.c │ │ │ │ ├── dmatest02.c │ │ │ │ ├── dmatest03.c │ │ │ │ ├── dmatest04.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── NUC1xx_IrDA_TimingDiagram.png │ │ │ │ ├── NUC1xx_PDMA_block.png │ │ │ │ ├── NUC1xx_RTC_block.png │ │ │ │ ├── NUC1xx_UART_LIN_Frame.png │ │ │ │ ├── NUC1xx_UART_block.png │ │ │ │ ├── NUC1xx_gpio_block.png │ │ │ │ ├── NUC1xx_pwm_block.png │ │ │ │ ├── NUC1xx_spi_block.png │ │ │ │ ├── NUC1xx_sysctl_block.png │ │ │ │ ├── NUC1xx_watchdog_block.png │ │ │ │ ├── Nuvoton_Timer_Controller_Block.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── nuc1xx_acmp_block.png │ │ │ │ ├── nuc1xx_adc_block.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── nuc1xx_acmp_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xacmp.h.pl │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── nuc1xx_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── nuc1xx_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── dma │ │ │ │ ├── nuc1xx_pdma_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xdma.h.pl │ │ │ │ └── xdma_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── nuc1xx_gpio_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── nuc1xx_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── nuc1xx_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── nuc1xx_rtc_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── nuc1xx_spi_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── nuc1xx_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── nuc1xx_timer_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── nuc1xx_uart_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── nuc1xx_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ ├── blinky │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── Blinky.c │ │ │ │ └── external_int │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── External_Int.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Nuvoton_GPIO_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── startup_ewarm.c │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ └── xgpiotest2.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ ├── example │ │ │ │ ├── multiple_slave_address │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ │ │ ├── startup_ewarm.c │ │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ │ └── SlaveMultipleAddress.c │ │ │ │ └── slave_receive_poll │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ │ ├── startup_ewarm.c │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SlaveReceivePoll.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── I2C.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── startup_ewarm.c │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── Xi2ctest1.c │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xi2ctest2.c │ │ │ │ ├── xi2ctest3.c │ │ │ │ └── xi2ctest4.c │ │ ├── libcox │ │ │ ├── xacmp.c │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xdma.c │ │ │ ├── xdma.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_acmp.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_dma.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_pwm.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── output │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── output.ewd │ │ │ │ │ ├── output.ewp │ │ │ │ │ └── output.eww │ │ │ │ │ └── src │ │ │ │ │ ├── PWM_Output.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Nuvoton_PWM_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── startup_ewarm.c │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ ├── xpwmtest2.c │ │ │ │ └── xpwmtest3.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── coide_gen.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ └── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── coide_gen.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ ├── rtc │ │ │ ├── document │ │ │ │ └── xrtc.xml │ │ │ ├── example │ │ │ │ └── RTCTickInt │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── RTCTickInt.ewp │ │ │ │ │ ├── RTCTickInt.eww │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ └── src │ │ │ │ │ ├── RTCTickInt.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── RTC.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xrtctest.c │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── spiTest.eww │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── spitest03.c │ │ │ │ ├── spitest04.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ ├── Xsysctltest.c │ │ │ │ ├── Xsysctltest01.c │ │ │ │ ├── Xsysctltest02.c │ │ │ │ ├── Xsysctltest03.c │ │ │ │ ├── Xsysctltest04.c │ │ │ │ ├── Xsysctltest05.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ ├── example │ │ │ │ └── Timer_Clock │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── one_second_clock.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Stellaris_TIMER_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xtimertest1.c │ │ │ │ ├── xtimertest2.c │ │ │ │ └── xtimertest3.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ └── uartprintf │ │ │ │ │ ├── doc │ │ │ │ │ └── uartprintf.xml │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ │ └── uartprintf.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ └── uartprintf.c │ │ │ └── test │ │ │ │ ├── baudrateTest │ │ │ │ ├── doc │ │ │ │ │ └── COX_NUC1xx_UART_Test_BaudRate.xls │ │ │ │ ├── rvmdk │ │ │ │ │ ├── baudrateTest.uvproj │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ └── src │ │ │ │ │ ├── BuadRateTest.c │ │ │ │ │ └── main.c │ │ │ │ └── suite1 │ │ │ │ ├── doc │ │ │ │ ├── 1102_COX_NUC1xx_UART_Tasklist_Report.xls │ │ │ │ ├── COX_NUC1xx_UART_Tasklist_Report.xls │ │ │ │ └── other errors.txt │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xuarttest.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ └── test │ │ │ ├── doc │ │ │ └── WDT.xls │ │ │ └── suite1 │ │ │ ├── ewarm │ │ │ ├── template.ewd │ │ │ ├── template.ewp │ │ │ └── template.eww │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ ├── wdttest00.c │ │ │ ├── wdttest01.c │ │ │ └── wdttest02.c │ ├── CoX_Peripheral_NUC1xxDN │ │ ├── libcox │ │ │ ├── acmp.c │ │ │ ├── acmp.h │ │ │ ├── adc.c │ │ │ ├── adc.h │ │ │ ├── core.c │ │ │ ├── dma.c │ │ │ ├── dma.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── hw_acmp.h │ │ │ ├── hw_adc.h │ │ │ ├── hw_dma.h │ │ │ ├── hw_gpio.h │ │ │ ├── hw_i2c.h │ │ │ ├── hw_pwm.h │ │ │ ├── hw_rtc.h │ │ │ ├── hw_spi.h │ │ │ ├── hw_sysctl.h │ │ │ ├── hw_timer.h │ │ │ ├── hw_uart.h │ │ │ ├── hw_wdt.h │ │ │ ├── i2c.c │ │ │ ├── i2c.h │ │ │ ├── lowlayer.h │ │ │ ├── pwm.c │ │ │ ├── pwm.h │ │ │ ├── rtc.c │ │ │ ├── rtc.h │ │ │ ├── spi.c │ │ │ ├── spi.h │ │ │ ├── sysctl.c │ │ │ ├── sysctl.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── uart.c │ │ │ ├── uart.h │ │ │ ├── wdt.c │ │ │ ├── wdt.h │ │ │ └── xPort.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ └── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ ├── CoX_Peripheral_NUC2xx │ │ ├── all │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ └── main.c │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── NUC2xx_IrDA_TimingDiagram.png │ │ │ │ ├── NUC2xx_PDMA_block.png │ │ │ │ ├── NUC2xx_RTC_block.png │ │ │ │ ├── NUC2xx_Timer_Controller_Block.png │ │ │ │ ├── NUC2xx_UART_block.png │ │ │ │ ├── NUC2xx_acmp_block.png │ │ │ │ ├── NUC2xx_adc_block.png │ │ │ │ ├── NUC2xx_gpio_block.png │ │ │ │ ├── NUC2xx_pwm_block.png │ │ │ │ ├── NUC2xx_spi_block.png │ │ │ │ ├── NUC2xx_sysctl_block.png │ │ │ │ ├── NUC2xx_watchdog_block.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stellaris_gpio_block.png │ │ │ │ ├── uart_block.png │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── acmp │ │ │ │ ├── NUC2xx_acmp_en.txt │ │ │ │ └── xacmp_en.txt │ │ │ │ ├── adc │ │ │ │ ├── nuc2xx_adc_en.txt │ │ │ │ └── xadc_en.txt │ │ │ │ ├── core │ │ │ │ └── xcore_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── dma │ │ │ │ ├── nuc2xx_pdma_en.txt │ │ │ │ └── xdma_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── NUC2xx_gpio_en.txt │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── NUC2xx_i2c_en.txt │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── lowlayer │ │ │ │ └── xlowlayer_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── NUC2xx_pwm_en.txt │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── NUC2xx_rtc_en.txt │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── NUC2xx_spi_en.txt │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── NUC2xx_sysctl_en.txt │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── NUC2xx_timer_en.txt │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── NUC2xx_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── NUC2xx_wdt_en.txt │ │ │ │ └── xwdt_en.txt │ │ ├── libcox │ │ │ ├── xacmp.c │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xdma.c │ │ │ ├── xdma.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_acmp.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_dma.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_pwm.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ └── startup_coide.c │ │ └── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ ├── CoX_Peripheral_NUC4xx │ │ ├── libcox │ │ │ ├── acmp.c │ │ │ ├── acmp.h │ │ │ ├── adc.c │ │ │ ├── adc.h │ │ │ ├── core.c │ │ │ ├── dma.c │ │ │ ├── dma.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── hw_acmp.h │ │ │ ├── hw_adc.h │ │ │ ├── hw_dma.h │ │ │ ├── hw_gpio.h │ │ │ ├── hw_i2c.h │ │ │ ├── hw_pwm.h │ │ │ ├── hw_rtc.h │ │ │ ├── hw_spi.h │ │ │ ├── hw_sysctl.h │ │ │ ├── hw_timer.h │ │ │ ├── hw_uart.h │ │ │ ├── hw_wdt.h │ │ │ ├── i2c.c │ │ │ ├── i2c.h │ │ │ ├── lowlayer.h │ │ │ ├── pwm.c │ │ │ ├── pwm.h │ │ │ ├── rtc.c │ │ │ ├── rtc.h │ │ │ ├── spi.c │ │ │ ├── spi.h │ │ │ ├── sysctl.c │ │ │ ├── sysctl.h │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── uart.c │ │ │ ├── uart.h │ │ │ ├── wdt.c │ │ │ ├── wdt.h │ │ │ └── xPort.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ └── example │ │ │ │ └── led │ │ │ │ └── src │ │ │ │ ├── led.c │ │ │ │ └── main.c │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ ├── example │ │ │ │ ├── document │ │ │ │ │ └── sysctlExample.xml │ │ │ │ └── sysctl_example.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── xsysctl.coproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xSysctltest.c │ │ │ │ ├── xSysctltest01.c │ │ │ │ ├── xSysctltest02.c │ │ │ │ ├── xSysctltest03.c │ │ │ │ ├── xSysctltest04.c │ │ │ │ └── xSysctltest05.c │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ └── uart │ │ │ ├── document │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ └── uartprintf │ │ │ │ ├── doc │ │ │ │ └── uartprintf.xml │ │ │ │ ├── rvmdk │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ └── uartprintf.uvproj │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ └── uartprintf.c │ │ │ └── test │ │ │ └── suite1 │ │ │ ├── CoIDE │ │ │ └── template.coproj │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ └── xuarttest.c │ ├── CoX_Peripheral_STM32F1xx │ │ ├── adc │ │ │ ├── document │ │ │ │ └── xadc.xml │ │ │ ├── example │ │ │ │ └── ADConvert │ │ │ │ │ ├── doc │ │ │ │ │ └── ADConvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADConvert.ewd │ │ │ │ │ ├── ADConvert.ewp │ │ │ │ │ └── ADConvert.eww │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── ADConvert.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xadctest00.c │ │ │ │ ├── xadctest01.c │ │ │ │ └── xadctest02.c │ │ ├── all │ │ │ ├── gen_coide.bat │ │ │ └── project │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── template.uvproj │ │ ├── core │ │ │ └── document │ │ │ │ └── xcore.xml │ │ ├── dma │ │ │ ├── document │ │ │ │ └── xdma.xml │ │ │ ├── example │ │ │ │ └── mem2mem │ │ │ │ │ ├── doc │ │ │ │ │ └── mem2mem.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── Xdmatest.eww │ │ │ │ │ ├── template.board │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.icf │ │ │ │ │ ├── rvmdk │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── mem2mem.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── Xdmatest.eww │ │ │ │ ├── template.board │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.icf │ │ │ │ ├── rvmdk │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── dmatest00.c │ │ │ │ ├── dmatest01.c │ │ │ │ ├── dmatest02.c │ │ │ │ ├── dmatest03.c │ │ │ │ ├── dmatest04.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── COX-Big0.png │ │ │ │ ├── COX.png │ │ │ │ ├── Clock_Tree.jpg │ │ │ │ ├── Clock_Tree.png │ │ │ │ ├── Power_Architecture.jpg │ │ │ │ ├── Power_Architecture.png │ │ │ │ ├── RTC_block.png │ │ │ │ ├── STM32F1xx_ADC_block.jpg │ │ │ │ ├── STM32F1xx_ClockTree.PNG │ │ │ │ ├── STM32F1xx_DMA_block.png │ │ │ │ ├── STM32F1xx_IrDA_TimingDiagram.jpg │ │ │ │ ├── STM32F1xx_LIN_BreakDetection.jpg │ │ │ │ ├── STM32F1xx_RTC_block.png │ │ │ │ ├── STM32F1xx_UART_Interrupt.jpg │ │ │ │ ├── STM32F1xx_UART_Modem.jpg │ │ │ │ ├── STM32F1xx_UART_Mute.jpg │ │ │ │ ├── STM32F1xx_UART_SYNC_Frame.jpg │ │ │ │ ├── STM32F1xx_UART_SmartCard.jpg │ │ │ │ ├── STM32F1xx_UART_block.jpg │ │ │ │ ├── STM32F1xx_pwm_block.jpg │ │ │ │ ├── STM32F1xx_sysctl_block.png │ │ │ │ ├── STM32F1xx_watchdog_block.png │ │ │ │ ├── accepts.png │ │ │ │ ├── adc_block.jpg │ │ │ │ ├── adc_block.png │ │ │ │ ├── adc_differential_express.png │ │ │ │ ├── adds.png │ │ │ │ ├── comp_block.png │ │ │ │ ├── core_block.png │ │ │ │ ├── gpio_block.png │ │ │ │ ├── i2c_protocol.png │ │ │ │ ├── master_to_slave.png │ │ │ │ ├── pio_button.png │ │ │ │ ├── pio_led.png │ │ │ │ ├── pwm_block.jpg │ │ │ │ ├── pwm_block.png │ │ │ │ ├── slave_to_master.png │ │ │ │ ├── spi_blaock.png │ │ │ │ ├── spi_block.png │ │ │ │ ├── stm32f1xx_Timer_Controller_Block.png │ │ │ │ ├── stm32f1xx_gpio_block.png │ │ │ │ ├── stm32f1xx_spi_block.png │ │ │ │ ├── uart_block.png │ │ │ │ ├── watchdog_block.jpg │ │ │ │ └── watchdog_block.png │ │ │ └── txt │ │ │ │ ├── adc │ │ │ │ ├── STM32F1xx_adc_en.txt │ │ │ │ ├── perl │ │ │ │ │ ├── STM32F1xx_adc_en.txt.pl │ │ │ │ │ ├── xadc.h.pl │ │ │ │ │ └── xadc_en.txt.pl │ │ │ │ └── xadc_en.txt │ │ │ │ ├── cox_peripheral_lib │ │ │ │ ├── changelog_en.txt │ │ │ │ ├── copyleft_en.txt │ │ │ │ ├── cox_peripheral_lib_en.txt │ │ │ │ ├── howto_en.txt │ │ │ │ └── mainpage_en.txt │ │ │ │ ├── dma │ │ │ │ ├── perl │ │ │ │ │ └── xdma.h.pl │ │ │ │ ├── stm32f1xx_pdma_en.txt │ │ │ │ └── xdma_en.txt │ │ │ │ ├── gpio │ │ │ │ ├── perl │ │ │ │ │ └── xgpio.h.pl │ │ │ │ ├── stm32f1xx_gpio_en.txt │ │ │ │ └── xgpio_en.txt │ │ │ │ ├── i2c │ │ │ │ ├── STM32F1xx_i2c_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xi2c.h.pl │ │ │ │ └── xi2c_en.txt │ │ │ │ ├── pwm │ │ │ │ ├── STM32F1xx_pwm_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xpwm.h.pl │ │ │ │ └── xpwm_en.txt │ │ │ │ ├── rtc │ │ │ │ ├── STM32F1xx_rtc_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xrtc.h.pl │ │ │ │ └── xrtc_en.txt │ │ │ │ ├── spi │ │ │ │ ├── perl │ │ │ │ │ └── xspi.h.pl │ │ │ │ ├── stm32f1xx_spi_en.txt │ │ │ │ └── xspi_en.txt │ │ │ │ ├── startup │ │ │ │ └── startup_en.txt │ │ │ │ ├── sysctl │ │ │ │ ├── STM32F1xx_sysctl_en.txt │ │ │ │ ├── perl │ │ │ │ │ └── xsysctl.h.pl │ │ │ │ └── xsysctl_en.txt │ │ │ │ ├── timer │ │ │ │ ├── perl │ │ │ │ │ └── xtimer.h.pl │ │ │ │ ├── stm32f1xx_timer_en.txt │ │ │ │ └── xtimer_en.txt │ │ │ │ ├── uart │ │ │ │ ├── STM32F1xx_uart_en.txt │ │ │ │ ├── group_relationship.txt │ │ │ │ ├── perl │ │ │ │ │ └── xuart.h.pl │ │ │ │ ├── uart_en.txt │ │ │ │ ├── xuart_apps_en.txt │ │ │ │ └── xuart_en.txt │ │ │ │ └── wdt │ │ │ │ ├── STM32F1xx_wdt_en.txt │ │ │ │ ├── perl │ │ │ │ └── xwatchdog.h.pl │ │ │ │ └── xwdt_en.txt │ │ ├── gen_test_coide_project.bat │ │ ├── gpio │ │ │ ├── document │ │ │ │ └── xgpio.xml │ │ │ ├── example │ │ │ │ └── blinky │ │ │ │ │ ├── document │ │ │ │ │ └── blinky.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Blinky.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ ├── suite1.ewp~HEAD │ │ │ │ ├── suite1.eww │ │ │ │ └── suite1.icf │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xgpiotest1.c │ │ │ │ └── xgpiotest2.c │ │ ├── i2c │ │ │ ├── document │ │ │ │ └── xi2c.xml │ │ │ ├── example │ │ │ │ └── I2CConfig │ │ │ │ │ ├── doc │ │ │ │ │ └── i2cConfig.xml │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── i2cExample.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── i2c.xlsx │ │ │ │ ├── suite1 │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xi2ctest01.c │ │ │ │ └── suite2 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ ├── template.icf │ │ │ │ └── template.icf.bat │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xi2ctest01.c │ │ ├── libcox │ │ │ ├── xacmp.h │ │ │ ├── xadc.c │ │ │ ├── xadc.h │ │ │ ├── xcore.c │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xdma.c │ │ │ ├── xdma.h │ │ │ ├── xgpio.c │ │ │ ├── xgpio.h │ │ │ ├── xhw_adc.h │ │ │ ├── xhw_config.h │ │ │ ├── xhw_dma.h │ │ │ ├── xhw_gpio.h │ │ │ ├── xhw_i2c.h │ │ │ ├── xhw_ints.h │ │ │ ├── xhw_memmap.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_rtc.h │ │ │ ├── xhw_spi.h │ │ │ ├── xhw_sysctl.h │ │ │ ├── xhw_timer.h │ │ │ ├── xhw_types.h │ │ │ ├── xhw_uart.h │ │ │ ├── xhw_wdt.h │ │ │ ├── xi2c.c │ │ │ ├── xi2c.h │ │ │ ├── xpwm.c │ │ │ ├── xpwm.h │ │ │ ├── xrtc.c │ │ │ ├── xrtc.h │ │ │ ├── xspi.c │ │ │ ├── xspi.h │ │ │ ├── xsysctl.c │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.c │ │ │ ├── xtimer.h │ │ │ ├── xuart.c │ │ │ ├── xuart.h │ │ │ ├── xwdt.c │ │ │ └── xwdt.h │ │ ├── lowlayer │ │ │ └── document │ │ │ │ └── xlowlayer.xml │ │ ├── pwm │ │ │ ├── document │ │ │ │ └── xpwm.xml │ │ │ ├── example │ │ │ │ └── PWMExample │ │ │ │ │ ├── doc │ │ │ │ │ └── PWMExample.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── PWMExample.board │ │ │ │ │ ├── PWMExample.ewd │ │ │ │ │ ├── PWMExample.ewp │ │ │ │ │ ├── PWMExample.eww │ │ │ │ │ └── PWMExample.icf │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── PWMExample.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── ADC_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xpwmtest1.c │ │ │ │ └── xpwmtest2.c │ │ ├── resource │ │ │ ├── cox_coide_empty_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_empty_project.cob │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ │ └── cox_coide_test_project │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── .xml │ │ │ │ ├── build.xml │ │ │ │ ├── cox_coide_test_project.cob │ │ │ │ ├── cox_coide_test_project.elf.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── debug.config │ │ │ │ ├── link.ld │ │ │ │ ├── memory.ld │ │ │ │ └── startup_coide.c │ │ ├── rtc │ │ │ ├── document │ │ │ │ └── xrtc.xml │ │ │ ├── example │ │ │ │ └── RTCTickInt │ │ │ │ │ ├── doc │ │ │ │ │ └── RTCTickInt.xml │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── RTCTickInt.uvproj │ │ │ │ │ └── startup_stm32f10x_md.s │ │ │ │ │ └── src │ │ │ │ │ ├── RTCTickInt.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── RTC.xls │ │ │ │ └── suite1 │ │ │ │ ├── rvmdk │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xrtctest.c │ │ ├── spi │ │ │ ├── document │ │ │ │ └── xspi.xml │ │ │ ├── example │ │ │ │ └── SpiSlave │ │ │ │ │ ├── doc │ │ │ │ │ └── SpiSlave.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── SpiSlave.ewd │ │ │ │ │ ├── SpiSlave.ewp │ │ │ │ │ └── SpiSlave.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── SpiSlave.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SPI.xls │ │ │ │ ├── example │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── test.uvproj │ │ │ │ └── src │ │ │ │ │ ├── spitest00.c │ │ │ │ │ ├── spitest01.c │ │ │ │ │ ├── spitest02.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── spiTest.eww │ │ │ │ └── template.ewp │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── test.uvproj │ │ │ │ └── src │ │ │ │ ├── spitest00.c │ │ │ │ ├── spitest01.c │ │ │ │ ├── spitest02.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── startup │ │ │ ├── document │ │ │ │ └── startup.xml │ │ │ └── src │ │ │ │ ├── startup_coide.c │ │ │ │ ├── startup_ewarm.s │ │ │ │ └── startup_rvmdk.s │ │ ├── sysctl │ │ │ ├── document │ │ │ │ └── xsysctl.xml │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── SysCtl.xlsx │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ ├── Xsysctltest.c │ │ │ │ ├── Xsysctltest01.c │ │ │ │ ├── Xsysctltest02.c │ │ │ │ ├── Xsysctltest03.c │ │ │ │ ├── Xsysctltest04.c │ │ │ │ ├── Xsysctltest05.c │ │ │ │ ├── Xsysctltest06.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── testframe │ │ │ ├── main.c │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ └── testport.c │ │ ├── timer │ │ │ ├── document │ │ │ │ └── xtimer.xml │ │ │ ├── example │ │ │ │ └── Timer_Clock │ │ │ │ │ ├── doc │ │ │ │ │ └── Timer_Clock.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── one_second_clock.c │ │ │ └── test │ │ │ │ ├── doc │ │ │ │ └── COX_Stellaris_TIMER_Tasklist_Report.xls │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ └── suit1.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xtimertest1.c │ │ │ │ └── xtimertest2.c │ │ ├── uart │ │ │ ├── document │ │ │ │ └── xuart.xml │ │ │ ├── example │ │ │ │ └── uartprintf │ │ │ │ │ ├── doc │ │ │ │ │ └── uartprintf.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ ├── stellaris_ram.icf │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ ├── template.eww │ │ │ │ │ └── template.icf │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── ram.ini │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── UartPrintf.c │ │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ ├── template.eww │ │ │ │ └── template.icf │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ ├── xuarttest00.c │ │ │ │ ├── xuarttest01.c │ │ │ │ ├── xuarttest02.c │ │ │ │ ├── xuarttest03.c │ │ │ │ └── xuarttest04.c │ │ └── wdt │ │ │ ├── document │ │ │ └── xwdt.xml │ │ │ ├── example │ │ │ ├── doc │ │ │ │ └── WDTExample.xml │ │ │ └── wakeup │ │ │ │ ├── rvmdk │ │ │ │ ├── ram.ini │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── Wakeup.c │ │ │ │ └── main.c │ │ │ └── test │ │ │ ├── doc │ │ │ └── WDT.xls │ │ │ └── suite1 │ │ │ ├── ewarm │ │ │ ├── template.ewd │ │ │ ├── template.ewp │ │ │ ├── template.eww │ │ │ └── template.icf │ │ │ ├── rvmdk │ │ │ ├── ram.ini │ │ │ └── suite1.uvproj │ │ │ └── src │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ ├── wdttest00.c │ │ │ ├── wdttest01.c │ │ │ └── wdttest02.c │ ├── CoX_Peripheral_Template │ │ ├── doc │ │ │ ├── adc.md │ │ │ ├── mainpage.md │ │ │ ├── readme.md │ │ │ ├── xACMP_Defineds.md │ │ │ ├── xDMA_Defineds.md │ │ │ ├── xGPIO_General_Pin_IDs.md │ │ │ ├── xI2C.md │ │ │ ├── xPWM_Defineds.md │ │ │ ├── xSPI_Defineds.md │ │ │ ├── xSysctl__Defineds.md │ │ │ ├── xTimer_Defineds.md │ │ │ ├── xint.md │ │ │ ├── xlowlayer.md │ │ │ ├── xmemmap.md │ │ │ ├── xrtc.md │ │ │ ├── xspi.md │ │ │ ├── xsysctl.md │ │ │ └── xuart.md │ │ └── inc │ │ │ ├── CoX.h │ │ │ ├── xacmp.h │ │ │ ├── xadc.h │ │ │ ├── xcore.h │ │ │ ├── xdebug.c │ │ │ ├── xdebug.h │ │ │ ├── xdma.h │ │ │ ├── xgpio.h │ │ │ ├── xhw_nvic.h │ │ │ ├── xhw_types.h │ │ │ ├── xi2c.h │ │ │ ├── xlowlayer.h │ │ │ ├── xpwm.h │ │ │ ├── xrtc.h │ │ │ ├── xspi.h │ │ │ ├── xsysctl.h │ │ │ ├── xtimer.h │ │ │ ├── xuart.h │ │ │ ├── xusb.h │ │ │ └── xwdt.h │ └── publish │ │ ├── .gitignore │ │ └── publish_cox.bat ├── Cookie │ ├── Cookie_NuMicro │ │ ├── bsp │ │ │ ├── Shield example │ │ │ │ └── LCD and Motor Shield │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ │ ├── m051_flash.sct │ │ │ │ │ ├── m051_ram.ini │ │ │ │ │ ├── m051_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── template.uvproj │ │ │ ├── example │ │ │ │ ├── LEDBlink │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── rvmdk │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ │ │ └── template.uvproj │ │ │ │ ├── UARTPrint │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ ├── template.ewp │ │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── rvmdk │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ │ │ └── template.uvproj │ │ │ │ └── template │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── m051_flash.sct │ │ │ │ │ ├── m051_ram.ini │ │ │ │ │ ├── m051_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── template.uvproj │ │ │ └── production_test │ │ │ │ └── template │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ └── template.uvproj │ │ │ │ └── src │ │ │ │ ├── test1.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ └── libCookie │ │ │ ├── Cookie.h │ │ │ └── Cookie_cfg.h │ └── Embedded_pi │ │ ├── bsp │ │ ├── Shield_example │ │ │ └── LCD4884Shield │ │ │ │ ├── coide │ │ │ │ ├── .gitignore │ │ │ │ └── Test.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── LCD4884_example.c │ │ ├── example │ │ │ ├── LEDBlink │ │ │ │ ├── coide │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Test.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ └── ledblink.c │ │ │ ├── UARTPrint │ │ │ │ ├── coide │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Test.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ └── uartprint.c │ │ │ └── template │ │ │ │ ├── coide │ │ │ │ ├── .gitignore │ │ │ │ └── Test.coproj │ │ │ │ └── main.c │ │ └── production_test │ │ │ └── template │ │ │ ├── coide │ │ │ ├── .gitignore │ │ │ └── Test.coproj │ │ │ ├── main.c │ │ │ └── src │ │ │ └── production_test.c │ │ └── libcookie │ │ ├── cookie.h │ │ └── cookie_cfg.h ├── Driver │ ├── AD.DA │ │ └── PCF8591 │ │ │ ├── PCF8591_Driver │ │ │ ├── doc │ │ │ │ ├── PCF8591_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── gen.bat │ │ │ │ └── txt │ │ │ │ │ └── PCF8591.txt │ │ │ ├── example │ │ │ │ └── PCF8591_DA │ │ │ │ │ ├── coide │ │ │ │ │ ├── PCF8591_DA.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ ├── doc │ │ │ │ │ └── LED_3COLOR_Blink.xml │ │ │ │ │ └── src │ │ │ │ │ ├── example.c │ │ │ │ │ └── main.c │ │ │ ├── lib │ │ │ │ ├── PCF8591.c │ │ │ │ └── PCF8591.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── coide │ │ │ │ ├── PCF8591.coproj │ │ │ │ └── startup_coide.c │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xPCF8591test.c │ │ │ └── doc │ │ │ └── device │ │ │ └── PCF8591.xml │ ├── Codec_Audio_VLSI │ │ └── VS10xx │ │ │ ├── VS10xx_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── VS10xx_single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── VS10xxSCI_Read.png │ │ │ │ │ ├── VS10xxSCI_Write.png │ │ │ │ │ ├── VS10xx_Block.png │ │ │ │ │ ├── VS10xx_Connection_Diagram.png │ │ │ │ │ └── VS10xx_SCI_SDI_Interface.png │ │ │ │ └── txt │ │ │ │ │ └── VS10xx_single.txt │ │ │ ├── example │ │ │ │ ├── CoIDE │ │ │ │ │ └── VS1003Example.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ ├── CH376_Driver │ │ │ │ │ ├── CH376.c │ │ │ │ │ ├── CH376.h │ │ │ │ │ ├── CH376_FS.c │ │ │ │ │ ├── CH376_FS.h │ │ │ │ │ └── hw_CH376INC.h │ │ │ │ │ ├── Joystick_Driver │ │ │ │ │ ├── Joystick.c │ │ │ │ │ └── Joystick.h │ │ │ │ │ ├── VS1003Example.c │ │ │ │ │ ├── VS1003Example.h │ │ │ │ │ ├── stdio │ │ │ │ │ └── printf.c │ │ │ │ │ └── syscalls │ │ │ │ │ └── syscalls.c │ │ │ ├── lib │ │ │ │ ├── VS10xx.c │ │ │ │ ├── VS10xx.h │ │ │ │ └── hw_VS10xx.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── suite1.STM32F1xx.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── VS10xxTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ ├── VS1003.xml │ │ │ ├── VS1011.xml │ │ │ ├── VS1033.xml │ │ │ ├── VS1053.xml │ │ │ ├── VS1063.xml │ │ │ └── VS1103.xml │ ├── Controller_TouchScreen_TI │ │ └── ADS784x │ │ │ ├── ADS784x_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── ADS784x_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── ADS7843_App.png │ │ │ │ │ ├── ADS7843_Block.png │ │ │ │ │ └── ADS7843_Timing_Diagram.png │ │ │ │ └── txt │ │ │ │ │ └── ADS7843_en.txt │ │ │ ├── example │ │ │ │ └── GetTouchPointExample │ │ │ │ │ ├── CoIDE │ │ │ │ │ ├── TouchExample.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── GetTouchPoint_Example.c │ │ │ │ │ ├── stdio │ │ │ │ │ └── printf.c │ │ │ │ │ └── syscalls │ │ │ │ │ └── syscalls.c │ │ │ ├── lib │ │ │ │ ├── ADS7843.c │ │ │ │ └── ADS7843.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ ├── main.c │ │ │ │ ├── startup_coide.c │ │ │ │ └── suite.STM32F1xx.coproj │ │ │ │ └── src │ │ │ │ ├── ADS7843Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ ├── ADS7843.xml │ │ │ ├── ADS7846.xml │ │ │ └── TSC2046.xml │ ├── Expand_IO │ │ └── PCF8574 │ │ │ ├── Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── PCF8574_I2C_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ └── txt │ │ │ │ │ └── PCF8574_en.txt │ │ │ ├── example │ │ │ │ └── ReadWritePort │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── coide │ │ │ │ │ └── coide.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ └── ewarm.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── ReadWritePort.c │ │ │ │ │ └── ReadWritePort.h │ │ │ └── lib │ │ │ │ ├── PCF8574.c │ │ │ │ └── PCF8574.h │ │ │ ├── ReadMe.txt │ │ │ └── doc │ │ │ └── device │ │ │ └── PCF8574.xml │ ├── GPS │ │ ├── GPS │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── GPS_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── GPS_Pin.png │ │ │ │ │ ├── GPS_system.png │ │ │ │ │ └── gpsshield.jpg │ │ │ │ └── txt │ │ │ │ │ └── GPS_en.txt │ │ │ ├── example │ │ │ │ └── GPSPosition │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── GPSPosition.coproj │ │ │ │ │ ├── doc │ │ │ │ │ ├── GPSPosition.txt │ │ │ │ │ └── GPSPosition.xml │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── GPSPosition.c │ │ │ ├── lib │ │ │ │ ├── gps.c │ │ │ │ └── gps.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── suite1_M0516.coproj │ │ │ │ ├── ewarm │ │ │ │ ├── suite1_M0516.ewd │ │ │ │ ├── suite1_M0516.ewp │ │ │ │ └── suite1_M0516.eww │ │ │ │ ├── rvmdk │ │ │ │ └── suite1_M0516.uvproj │ │ │ │ └── src │ │ │ │ ├── GPS_Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ ├── coide_gen_M0516LBN.bat │ │ └── doc │ │ │ └── device │ │ │ └── GPS.xml │ ├── GYROSCOPE │ │ └── GYROSCOPE_2AXIS │ │ │ └── LPR5150AL │ │ │ ├── Character_LPR5150AL_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── Character_LPR5150AL_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ └── LPR5150AL.png │ │ │ │ └── txt │ │ │ │ │ └── LPR5150AL_en.txt │ │ │ ├── example │ │ │ │ └── Angle_Get │ │ │ │ │ ├── CoIDE │ │ │ │ │ ├── T000060.coproj │ │ │ │ │ └── syscalls │ │ │ │ │ │ └── syscalls.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── XYAxisAngle_Get.c │ │ │ └── lib │ │ │ │ ├── T00006x.c │ │ │ │ └── T00006x.h │ │ │ └── doc │ │ │ └── device │ │ │ └── LPR5150AL.xml │ ├── Key_KeyPad │ │ └── Joystick │ │ │ ├── Joystick_Driver │ │ │ ├── doc │ │ │ │ ├── Joystick_Single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── Joystick.png │ │ │ │ │ └── Thumbs.db │ │ │ │ └── txt │ │ │ │ │ └── Joystick_single.txt │ │ │ ├── lib │ │ │ │ ├── Joystick.c │ │ │ │ └── Joystick.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── suite1.stm32f1xx.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── JoystickTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── MT008-A.xml │ ├── Keypad │ │ └── Keypad_4x4 │ │ │ ├── Keypad_4x4_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── Keypad_4x4_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── keypad_4x4_pcb.png │ │ │ │ │ └── keypad_4x4_sch.png │ │ │ │ └── txt │ │ │ │ │ └── keypad_4x4_en.txt │ │ │ ├── example │ │ │ │ └── KeyScan │ │ │ │ │ ├── CoIDE │ │ │ │ │ ├── Keypad_4x4.cogui │ │ │ │ │ ├── Keypad_4x4.coproj │ │ │ │ │ └── syscalls │ │ │ │ │ │ └── syscalls.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── KeypadScan.c │ │ │ └── lib │ │ │ │ ├── keypad_4x4.c │ │ │ │ └── keypad_4x4.h │ │ │ └── doc │ │ │ └── device │ │ │ └── keypad_4x4.xml │ ├── LCD_Character │ │ ├── HD44780 │ │ │ ├── Character_LCD_HD44780_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Character_LCD_HD44780_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── hd44780_commands.gif │ │ │ │ │ │ ├── hd44780_ddramaddress.gif │ │ │ │ │ │ └── ldc1.gif │ │ │ │ │ ├── sch │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── lcd1602.png │ │ │ │ │ │ └── lcd1602.sch │ │ │ │ │ └── txt │ │ │ │ │ │ └── hd44780_en.txt │ │ │ │ ├── example │ │ │ │ │ └── HD44780display │ │ │ │ │ │ ├── CoIDE │ │ │ │ │ │ └── HD44780display.coproj │ │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── HD44780display.txt │ │ │ │ │ │ └── HD44780display.xml │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ └── HD44780display.c │ │ │ │ ├── lib │ │ │ │ │ ├── hd44780.c │ │ │ │ │ ├── hd44780.h │ │ │ │ │ └── hw_hd44780.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── suite1_nuc1xx.ewd │ │ │ │ │ ├── suite1_nuc1xx.ewp │ │ │ │ │ └── suite1_nuc1xx.eww │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── test1.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── HD44780.xml │ │ ├── HT1621B │ │ │ ├── HT1621B_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── HT1621B_GPIO_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── HT1621B_Driver.txt │ │ │ │ ├── example │ │ │ │ │ └── HT1621B_Display │ │ │ │ │ │ ├── coide │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── HT1621B_Display.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── HT1621B.c │ │ │ │ │ ├── HT1621B.h │ │ │ │ │ └── hw_HT1621B.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── HT1621B.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xHT1621Btest.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── HT1621B.xml │ │ ├── HX8347-G │ │ │ ├── Character_LCD_HX8347-G_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── HX8347-G_single.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── HX8347-G.png │ │ │ │ │ │ ├── HX8347-G_Sys_Interface.png │ │ │ │ │ │ ├── HX8347-G_pins1.png │ │ │ │ │ │ └── HX8347-G_pins2.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── HX8347-G_single.txt │ │ │ │ ├── example │ │ │ │ │ └── HX8347-G │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── HX8347-GExample.ewd │ │ │ │ │ │ ├── HX8347-GExample.ewp │ │ │ │ │ │ ├── HX8347-GExample.eww │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Example.c │ │ │ │ │ │ └── Example.h │ │ │ │ ├── lib │ │ │ │ │ ├── HX8347-G.c │ │ │ │ │ ├── HX8347-G.h │ │ │ │ │ └── hw_HX8347-G.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Backup of suite1.nuc1xx.ewd │ │ │ │ │ ├── Backup of suite1.nuc1xx.ewp │ │ │ │ │ ├── main.c │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── suite1.STM32F1xx.ewd │ │ │ │ │ ├── suite1.STM32F1xx.ewp │ │ │ │ │ └── suite1.STM32F1xx.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── HX8347-GTest.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── HX8347-G.xml │ │ ├── ILI9341 │ │ │ ├── Character_LCD_ILI9341_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── Character_LCD_ILI9341_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ └── ILI9341_commands.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── ili9341_en.txt │ │ │ │ ├── lib │ │ │ │ │ ├── 8X16.h │ │ │ │ │ ├── GB1616.h │ │ │ │ │ ├── GB3232.h │ │ │ │ │ ├── hw_ili9341.h │ │ │ │ │ ├── ili9341.c │ │ │ │ │ └── ili9341.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── suite1_M0516.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── suite1_m0516.ewd │ │ │ │ │ ├── suite1_m0516.ewp │ │ │ │ │ ├── suite1_m0516.eww │ │ │ │ │ └── suite1_m0516CustomSfr.sfr │ │ │ │ │ ├── rvmdk │ │ │ │ │ └── suite1_M0516.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── ili9341test.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── SSD2119.xml │ │ ├── LCD1602_I2C │ │ │ ├── LCD1602_I2C_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LCD1602_I2C_single.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── LCD1602_I2C_SCH.png │ │ │ │ │ │ ├── PCA8574_Addr.png │ │ │ │ │ │ ├── PCA8574_Block.png │ │ │ │ │ │ ├── PCA8574_Write.png │ │ │ │ │ │ └── hd44780_commands.gif │ │ │ │ │ └── txt │ │ │ │ │ │ └── LCD1602_I2C_single.txt │ │ │ │ ├── example │ │ │ │ │ └── LCD1602_IIC │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CoIDE │ │ │ │ │ │ └── LCD1602_I2C_Example.coproj │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Example.c │ │ │ │ │ │ └── Example.h │ │ │ │ ├── lib │ │ │ │ │ ├── LCD1602IIC.c │ │ │ │ │ ├── LCD1602IIC.h │ │ │ │ │ └── hw_LCD1602IIC.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── suite1_stm32f10x.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── LCD1602IICTest.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── LCD1602_I2C.xml │ │ ├── LCD1602_SPI │ │ │ ├── LCD1602_SPI_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LCD1602_SPI_single.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 74HC595_Block.png │ │ │ │ │ │ ├── 74HC595_Write.png │ │ │ │ │ │ ├── LCD1602_SPI_SCH.png │ │ │ │ │ │ └── hd44780_commands.gif │ │ │ │ │ └── txt │ │ │ │ │ │ └── LCD1602_SPI_single.txt │ │ │ │ ├── example │ │ │ │ │ └── LCD1602_SPI │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CoIDE │ │ │ │ │ │ └── LCD1602_SPI_Example.coproj │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Example.c │ │ │ │ │ │ └── Example.h │ │ │ │ └── lib │ │ │ │ │ ├── hd44780.c │ │ │ │ │ ├── hd44780.h │ │ │ │ │ └── hw_hd44780.h │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── LCD1602_SPI.xml │ │ ├── SPLC780D │ │ │ ├── Character_LCD_SPLC780D_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── Character_LCD_SPLC780D_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── SPLC780D_commands.gif │ │ │ │ │ │ ├── SPLC780D_ddramaddress.gif │ │ │ │ │ │ └── ldc1.gif │ │ │ │ │ ├── sch │ │ │ │ │ │ ├── lcd1602.png │ │ │ │ │ │ └── lcd1602.sch │ │ │ │ │ └── txt │ │ │ │ │ │ └── SPLC780D_en.txt │ │ │ │ ├── lib │ │ │ │ │ ├── hw_splc780d.h │ │ │ │ │ ├── splc780d.c │ │ │ │ │ └── splc780d.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── suite1_stm32f103ve.coproj │ │ │ │ │ ├── rvmdk │ │ │ │ │ └── suite1_stm32f103.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── SPLC780Dtest.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── SPLC780D.xml │ │ ├── SSD2119 │ │ │ ├── Character_LCD_SSD2119_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── Character_LCD_SSD2119_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ ├── doxy.log │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── K350QVG_features.png │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── ssd2119_block_diagram.jpg │ │ │ │ │ │ ├── ssd2119_commands.jpg │ │ │ │ │ │ └── ssd2119_gddramaddress.png │ │ │ │ │ ├── sch │ │ │ │ │ │ └── ssd2119.jpg │ │ │ │ │ └── txt │ │ │ │ │ │ └── ssd2119_en.txt │ │ │ │ ├── lib │ │ │ │ │ ├── 8X16.h │ │ │ │ │ ├── GB1616.h │ │ │ │ │ ├── GB3232.h │ │ │ │ │ ├── hw_ssd2119.h │ │ │ │ │ ├── ssd2119.c │ │ │ │ │ └── ssd2119.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── suite1_lm3sxx.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── suite1.ewd │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ ├── suite1.eww │ │ │ │ │ └── suite1CustomSfr.sfr │ │ │ │ │ ├── rvmdk │ │ │ │ │ └── suite1_lm3sxx.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── ssd2119test1.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_lm3sxx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── SSD2119.xml │ │ ├── ST7735S │ │ │ ├── Character_LCD_ST7735S_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── Character_LCD_ST7735S_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── sch │ │ │ │ │ │ └── st7735s.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── st7735s_en.txt │ │ │ │ ├── lib │ │ │ │ │ ├── 8X16.h │ │ │ │ │ ├── GB1616.h │ │ │ │ │ ├── GB3232.h │ │ │ │ │ ├── hw_st7735.h │ │ │ │ │ ├── st7735.c │ │ │ │ │ └── st7735.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── suite1_lm3sxx.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── suite1.ewd │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ │ ├── rvmdk │ │ │ │ │ └── suite1_M0516.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── st7735stest.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── ST7735S.xml │ │ ├── T6963C │ │ │ ├── T6963C_single │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── T6963C.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ │ └── gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── T6963C.png │ │ │ │ │ │ └── T6963C_pins.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── T6963C_single.txt │ │ │ │ ├── example │ │ │ │ │ └── T6963CDispaly │ │ │ │ │ │ ├── coide │ │ │ │ │ │ ├── T6963CDispaly.coproj │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── T6963C.c │ │ │ │ │ ├── T6963C.h │ │ │ │ │ └── test_charCode.c │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── T6963C.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xT6963Ctest.c │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── T6963C.xml │ │ ├── UC1601 │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ ├── doc │ │ │ │ └── device │ │ │ │ │ └── uc1601.xml │ │ │ └── uc1601_single │ │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── UC1601.png │ │ │ │ │ └── UC1601_pins.png │ │ │ │ ├── txt │ │ │ │ │ └── uc1601_single.txt │ │ │ │ └── uc1601_single.xml │ │ │ │ ├── example │ │ │ │ └── UC1601Dispaly │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── UC1601Example.ewd │ │ │ │ │ ├── UC1601Example.ewp │ │ │ │ │ ├── UC1601Example.eww │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ └── Example.h │ │ │ │ ├── lib │ │ │ │ ├── hw_uc1601.h │ │ │ │ ├── uc1601.c │ │ │ │ └── uc1601.h │ │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1.nuc1xx.ewd │ │ │ │ ├── suite1.nuc1xx.ewp │ │ │ │ └── suite1.nuc1xx.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── uc1601Test.c │ │ └── UC1701 │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ ├── doc │ │ │ └── device │ │ │ │ └── uc1701.xml │ │ │ └── uc1701_single │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ └── gen.bat │ │ │ ├── images │ │ │ │ ├── UC1701.png │ │ │ │ └── UC1701_pins.png │ │ │ ├── txt │ │ │ │ └── uc1701_single.txt │ │ │ └── uc1701_single.xml │ │ │ ├── example │ │ │ └── UC1701Dispaly │ │ │ │ ├── coide │ │ │ │ ├── UC1701Dispaly.coproj │ │ │ │ └── startup_coide.c │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── Example.c │ │ │ │ └── main.c │ │ │ ├── lib │ │ │ ├── hw_uc1701.h │ │ │ ├── uc1701.c │ │ │ └── uc1701.h │ │ │ └── test │ │ │ └── suite1 │ │ │ ├── coide │ │ │ ├── startup_coide.c │ │ │ └── uc1701.coproj │ │ │ └── src │ │ │ ├── main.c │ │ │ ├── testcase.c │ │ │ ├── testcase.h │ │ │ └── xuc1701test.c │ ├── LCD_Graphic │ │ └── SSD1298 │ │ │ ├── SSD1298_Single │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── SSD1298.png │ │ │ │ │ ├── SSD1298_Interface.png │ │ │ │ │ └── SSD1298_Pins.png │ │ │ │ ├── txt │ │ │ │ │ └── SSD1298_single.txt │ │ │ │ └── uc1601_single.xml │ │ │ ├── example │ │ │ │ └── SSD1298Dispaly │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── SSD1298Example.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ └── Example.h │ │ │ ├── lib │ │ │ │ ├── FONT.H │ │ │ │ ├── SSD1298.c │ │ │ │ ├── SSD1298.h │ │ │ │ ├── colors.h │ │ │ │ └── hw_SSD1298.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── SSD1298_Test.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── SSD1298Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ ├── SSD1298_RM(SOLOMON).pdf │ │ │ ├── SSD1298_application_note_v3.pdf │ │ │ └── device │ │ │ └── SSD1298.xml │ ├── LED │ │ ├── LED_3COLOR │ │ │ ├── LED_3COLOR_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── LED_3COLOR_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── LED_3COLOR_Driver.txt │ │ │ │ ├── example │ │ │ │ │ └── LED_3COLOR_Blink │ │ │ │ │ │ ├── coide │ │ │ │ │ │ ├── LED_3COLOR_Blink.coproj │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── LED_3COLOR_Blink.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── RGBLed.c │ │ │ │ │ ├── RGBLed.h │ │ │ │ │ └── hw_RGBLed.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── ledcolor.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xledcolortest.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── LED_3COLOR.xml │ │ ├── MAX7219 │ │ │ ├── MAX7219_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── MAX7219_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── MAX7219_Driver.txt │ │ │ │ ├── example │ │ │ │ │ └── MAX7219 │ │ │ │ │ │ ├── coide │ │ │ │ │ │ ├── MAX7219.coproj │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── MAX7219_example.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── MAX7219.c │ │ │ │ │ └── MAX7219.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── MAX7219.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xMAX7219test.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── MAX7219.xml │ │ ├── Seven_Segment_Led1 │ │ │ ├── Seven_Segment_Led1_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── LED_3COLOR_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── Seven_Segment_Led1.txt │ │ │ │ ├── example │ │ │ │ │ └── Seven_Segment │ │ │ │ │ │ ├── coide │ │ │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── Seven_Segment.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── hw_xled_1.h │ │ │ │ │ ├── xled_1.c │ │ │ │ │ └── xled_1.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xsevensegtest.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── Seven_Segment_Led1.xml │ │ ├── Seven_Segment_Led2 │ │ │ ├── Seven_Segment_Led2_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── LED_3COLOR_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── Seven_Segment_Led2.txt │ │ │ │ ├── example │ │ │ │ │ └── Seven_Segment │ │ │ │ │ │ ├── coide │ │ │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── Seven_Segment.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── hw_xled_2.h │ │ │ │ │ ├── xled_2.c │ │ │ │ │ └── xled_2.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xsevensegtest.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── Seven_Segment_Led2.xml │ │ ├── Seven_Segment_Led3 │ │ │ ├── Seven_Segment_Led3_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── LED_3COLOR_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── Seven_Segment_Led3.txt │ │ │ │ ├── example │ │ │ │ │ └── Seven_Segment │ │ │ │ │ │ ├── coide │ │ │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── Seven_Segment.xml │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── hw_xled_3.h │ │ │ │ │ ├── xled_3.c │ │ │ │ │ └── xled_3.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xsevensegtest.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── Seven_Segment_Led3.xml │ │ └── Seven_Segment_Led4 │ │ │ ├── Seven_Segment_Led4_Driver │ │ │ ├── doc │ │ │ │ ├── LED_3COLOR_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── gen.bat │ │ │ │ └── txt │ │ │ │ │ └── Seven_Segment_Led4.txt │ │ │ ├── example │ │ │ │ └── Seven_Segment │ │ │ │ │ ├── coide │ │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ ├── doc │ │ │ │ │ └── Seven_Segment.xml │ │ │ │ │ └── src │ │ │ │ │ ├── example.c │ │ │ │ │ └── main.c │ │ │ ├── lib │ │ │ │ ├── hw_xled_4.h │ │ │ │ ├── xled_4.c │ │ │ │ └── xled_4.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── coide │ │ │ │ ├── Seven_Segment.coproj │ │ │ │ └── startup_coide.c │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── xsevensegtest.c │ │ │ └── doc │ │ │ └── device │ │ │ └── Seven_Segment_Led4.xml │ ├── Memory_EEPROM_ARTSCHIP │ │ └── M24LCxx │ │ │ ├── M24LCxx_Single │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── M24LCxx_Single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── M24LCxx.png │ │ │ │ │ ├── M24LCxx_Operating_Modes.png │ │ │ │ │ └── M24LCxx_Pins.png │ │ │ │ └── txt │ │ │ │ │ └── M24LCxx_single.txt │ │ │ ├── example │ │ │ │ └── EEPROM_ReadWrite │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── 24LC02Example.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ └── Example.h │ │ │ ├── lib │ │ │ │ ├── M24LCxx.c │ │ │ │ ├── M24LCxx.h │ │ │ │ └── hw_M24LCxx.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── M24LCxxTest.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── M24LCxxTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ ├── 24LC01.xml │ │ │ ├── 24LC02.xml │ │ │ ├── 24LC04.xml │ │ │ ├── 24LC08.xml │ │ │ ├── 24LC16.xml │ │ │ ├── 24LC32.xml │ │ │ └── 24LC64.xml │ ├── Memory_EEPROM_Holtek │ │ └── HT24Cxx │ │ │ ├── HT24Cxx_Single │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── HT24Cxx_Single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── HT24Cxx.png │ │ │ │ │ └── HT24Cxx_Pins.png │ │ │ │ └── txt │ │ │ │ │ └── HT24Cxx_single.txt │ │ │ ├── example │ │ │ │ └── EEPROM_ReadWrite │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── coide │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Test.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ └── Example.h │ │ │ ├── lib │ │ │ │ ├── HT24Cxx.c │ │ │ │ ├── HT24Cxx.h │ │ │ │ └── hw_HT24Cxx.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── coide │ │ │ │ ├── .gitignore │ │ │ │ └── Test.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── HT24CxxTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── HT24LC02 .xml │ ├── Memory_EEPROM_NUC │ │ ├── 24LC64 │ │ │ ├── 24LC64_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── 24LC64_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ │ └── gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── 24LC64_Driver.txt │ │ │ │ ├── example │ │ │ │ │ └── EEPROM_ReadWrite │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CoIDE │ │ │ │ │ │ ├── 24LC02.coproj │ │ │ │ │ │ └── startup_coide.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Example.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── 24LC64.c │ │ │ │ │ ├── 24LC64.h │ │ │ │ │ └── hw_24LC64.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── coide │ │ │ │ │ ├── 24LC64.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── x24LC64test.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── 24LC64.xml │ │ └── Memory_EEPROM_93LC46A │ │ │ ├── 93LC46A_Driver │ │ │ ├── doc │ │ │ │ ├── 93LC46A_GPIO_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── gen.bat │ │ │ │ └── txt │ │ │ │ │ └── 93LC46A_Driver.txt │ │ │ ├── example │ │ │ │ └── 93LC46A_Write │ │ │ │ │ ├── coide │ │ │ │ │ ├── 93LC46A.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ ├── doc │ │ │ │ │ └── 93LC46A_Write.xml │ │ │ │ │ └── src │ │ │ │ │ ├── example.c │ │ │ │ │ └── main.c │ │ │ ├── lib │ │ │ │ ├── 93LC46A.c │ │ │ │ ├── 93LC46A.h │ │ │ │ └── hw_93LC46A.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── coide │ │ │ │ ├── 93LC46A.coproj │ │ │ │ └── startup_coide.c │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── x93LC46Atest.c │ │ │ └── doc │ │ │ └── device │ │ │ └── 93LC46A.xml │ ├── Memory_EEPROM_ST │ │ └── M24Cxx │ │ │ ├── M24Cxx_Single │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── M24Cxx_Single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── M24Cxx.png │ │ │ │ │ ├── M24Cxx_Operating_Modes.png │ │ │ │ │ └── M24Cxx_Pins.png │ │ │ │ └── txt │ │ │ │ │ └── M24Cxx_single.txt │ │ │ ├── example │ │ │ │ └── EEPROM_ReadWrite │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── M24CxxExample.ewd │ │ │ │ │ ├── M24CxxExample.ewp │ │ │ │ │ ├── M24CxxExample.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ └── Example.h │ │ │ ├── lib │ │ │ │ ├── M24Cxx.c │ │ │ │ ├── M24Cxx.h │ │ │ │ └── hw_M24Cxx.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── main.cpp │ │ │ │ ├── suite1.STM32F1xx.ewd │ │ │ │ ├── suite1.STM32F1xx.ewp │ │ │ │ └── suite1.STM32F1xx.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── M24CxxTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ └── device │ │ │ ├── M24C01.xml │ │ │ ├── M24C02.xml │ │ │ ├── M24C04.xml │ │ │ ├── M24C08.xml │ │ │ ├── M24C16.xml │ │ │ ├── M24C32.xml │ │ │ └── M24C64.xml │ ├── Memory_EEPROM_ZLG │ │ ├── CAT93Cx6 │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── CAT93Cx6_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── CAT93Cx6.png │ │ │ │ │ └── CAT93Cx6_system.png │ │ │ │ └── txt │ │ │ │ │ └── CAT93Cx6_en.txt │ │ │ ├── lib │ │ │ │ ├── CAT93Cx6.c │ │ │ │ └── CAT93Cx6.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── CAT93Cx6.coproj │ │ │ │ └── src │ │ │ │ └── main.c │ │ ├── coide_gen_LM3S9B96.bat │ │ └── doc │ │ │ └── device │ │ │ └── CAT93Cx6.xml │ ├── Memory_Flash_Atmel │ │ ├── AT25FS0x │ │ │ ├── AT25FS0x_Single │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AT25FS0x_Single.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ │ └── gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── AT25FS0x.png │ │ │ │ │ │ ├── AT25FS0x_Pins.png │ │ │ │ │ │ └── Thumbs.db │ │ │ │ │ └── txt │ │ │ │ │ │ └── AT25FS0x_single.txt │ │ │ │ ├── example │ │ │ │ │ └── Flash_ReadWrite │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── AT25FS0xExample.ewd │ │ │ │ │ │ ├── AT25FS0xExample.ewp │ │ │ │ │ │ ├── AT25FS0xExample.eww │ │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── Example.c │ │ │ │ │ │ └── Example.h │ │ │ │ ├── lib │ │ │ │ │ ├── AT25FS0x.c │ │ │ │ │ ├── AT25FS0x.h │ │ │ │ │ └── hw_AT25FS0x.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── suite1.nuc1xx.ewd │ │ │ │ │ ├── suite1.nuc1xx.ewp │ │ │ │ │ └── suite1.nuc1xx.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── AT25FS0xTest.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ ├── AT25FS010.xml │ │ │ │ └── AT25FS040.xml │ │ ├── AT45DB161 │ │ │ ├── AT45DB161_Single │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ │ └── gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── AT45DB161_Blcok_Diagram.bmp │ │ │ │ │ │ ├── AT45DB161_Memory_Array.bmp │ │ │ │ │ │ └── AT45DB161_Pin_Configurations_and_Pinouts.bmp │ │ │ │ │ └── txt │ │ │ │ │ │ └── AT45DB161_single.c │ │ │ │ ├── example │ │ │ │ │ └── Flash_Operation │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CoIDE │ │ │ │ │ │ └── Example.coproj │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ └── Example.c │ │ │ │ ├── lib │ │ │ │ │ ├── AT45DB161.c │ │ │ │ │ ├── AT45DB161.h │ │ │ │ │ └── hw_AT45DB161.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── AT45DB161_Test.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── AT45DB161Test.c │ │ │ │ │ ├── test.c │ │ │ │ │ ├── test.h │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── testport.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── AT45DB161.xml │ │ └── AT45DBxxxD │ │ │ ├── AT45DBxxxD_Single │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── AT45DBxxxD_Single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── AT45DBxxxD_Block_Diagram.png │ │ │ │ │ ├── AT45DBxxxD_Memory_Array.png │ │ │ │ │ └── AT45DBxxxD_Pin_Configurations_and_Pinouts.png │ │ │ │ └── txt │ │ │ │ │ └── AT45DBxxxD_single.txt │ │ │ ├── example │ │ │ │ └── Flash_Operation │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── AT45DBxxxD_Example.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Example.c │ │ │ ├── lib │ │ │ │ ├── AT45DBxxxD.c │ │ │ │ ├── AT45DBxxxD.h │ │ │ │ └── hw_AT45DBxxxD.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── CoIDE │ │ │ │ └── suite1_stm32f10x.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── AT45DBxxxDTest.c │ │ │ │ ├── test.c │ │ │ │ ├── test.h │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── testport.c │ │ │ └── doc │ │ │ └── device │ │ │ ├── AT45DB011D.xml │ │ │ ├── AT45DB021D.xml │ │ │ ├── AT45DB041D.xml │ │ │ ├── AT45DB081D.xml │ │ │ ├── AT45DB161D.xml │ │ │ ├── AT45DB321D.xml │ │ │ └── AT45DB642D.xml │ ├── Memory_Flash_SST │ │ └── SST25VFxx │ │ │ ├── SST25VFxx_single │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── SST25VFxx_single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── SST25VFxx.png │ │ │ │ │ └── SST25VFxx_Pins.png │ │ │ │ └── txt │ │ │ │ │ └── SST25VFxx_single.txt │ │ │ ├── example │ │ │ │ └── Flash_ReadWrite │ │ │ │ │ ├── coide │ │ │ │ │ └── Test.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Example.c │ │ │ ├── lib │ │ │ │ ├── SST25VFxx.c │ │ │ │ ├── SST25VFxx.h │ │ │ │ └── hw_SST25VFxx.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── coide │ │ │ │ └── Test.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── SST25VFxxTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── SST25VF016B.xml │ ├── Memory_Flash_ST │ │ └── M25Pxx │ │ │ ├── M25Pxx_single │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── M25Pxx_single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── M25Pxx.png │ │ │ │ │ └── M25Pxx_Pins.png │ │ │ │ └── txt │ │ │ │ │ └── M25Pxx_single.txt │ │ │ ├── example │ │ │ │ └── Flash_ReadWrite │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── M25PxxExample.ewd │ │ │ │ │ ├── M25PxxExample.ewp │ │ │ │ │ ├── M25PxxExample.eww │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ └── Example.h │ │ │ ├── lib │ │ │ │ ├── M25Pxx.c │ │ │ │ ├── M25Pxx.h │ │ │ │ └── hw_M25Pxx.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1.nuc1xx.ewd │ │ │ │ ├── suite1.nuc1xx.ewp │ │ │ │ └── suite1.nuc1xx.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── M25PxxTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ └── device │ │ │ ├── M25P10.xml │ │ │ ├── M25P128.xml │ │ │ ├── M25P16.xml │ │ │ ├── M25P20.xml │ │ │ ├── M25P32.xml │ │ │ ├── M25P40.xml │ │ │ ├── M25P64.xml │ │ │ └── M25P80.xml │ ├── Memory_Flash_Winbond │ │ └── W25X │ │ │ ├── W25X_SPI_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── W25X_SPI_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── cox_W25Xxx_block.png │ │ │ │ │ └── cox_W25Xxx_typical_application.png │ │ │ │ └── txt │ │ │ │ │ └── w25x_en.txt │ │ │ ├── example │ │ │ │ └── W25Xxx_Data_Read_Write │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── W25XxxReadWrite.eww │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── template.ewd │ │ │ │ │ └── template.ewp │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── w25xxReadWrite.c │ │ │ │ │ └── w25xxReadWrite.h │ │ │ ├── lib │ │ │ │ ├── hw_w25x.h │ │ │ │ ├── w25x.c │ │ │ │ └── w25x.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── W25XxxTest.eww │ │ │ │ ├── W25xxTest.ewd │ │ │ │ ├── W25xxTest.ewp │ │ │ │ └── startup_ewarm.s │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ └── src │ │ │ │ ├── testcase.c │ │ │ │ ├── testcase.h │ │ │ │ └── w25xxTest.c │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ └── device │ │ │ └── W25X.xml │ ├── Memory_NandFlash │ │ └── NandFlash │ │ │ ├── NandFlash_GPIO_Driver │ │ │ ├── doc │ │ │ │ ├── NandFlash_Single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── NandFlash_Array_Organization.png │ │ │ │ │ ├── NandFlash_Block.png │ │ │ │ │ └── NandFlash_Operating_Modes.png │ │ │ │ └── txt │ │ │ │ │ └── NandFlash_single.txt │ │ │ ├── lib │ │ │ │ ├── NandFlash.c │ │ │ │ ├── NandFlash.h │ │ │ │ └── hw_NandFlash.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── suite1.STM32.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── NandFlashTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ ├── K9F1208U0B.xml │ │ │ ├── K9F1G08U0B.xml │ │ │ └── K9F2G16U0M.xml │ ├── Memory_SDCard │ │ └── SDCard │ │ │ ├── SDCard_SPI_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── SDCard_SPI_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── sdcard.png │ │ │ │ │ └── sdcard_spi_bus_system.jpg │ │ │ │ └── txt │ │ │ │ │ └── sdcard_en.txt │ │ │ ├── lib │ │ │ │ ├── hw_sdcard.h │ │ │ │ ├── sdcard.c │ │ │ │ └── sdcard.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1_nuc1xx.ewd │ │ │ │ ├── suite1_nuc1xx.ewp │ │ │ │ └── suite1_nuc1xx.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ └── src │ │ │ │ ├── test1.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ └── device │ │ │ └── SDCard.xml │ ├── Sensor_Accelerometer │ │ ├── ADXL345 │ │ │ ├── Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADXL345_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── ADXL345_en.txt │ │ │ │ ├── example │ │ │ │ │ └── ReadAccData │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── coide │ │ │ │ │ │ └── coide.coproj │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ │ └── ewarm.eww │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── ReadAccData.c │ │ │ │ │ │ └── ReadAccData.h │ │ │ │ └── lib │ │ │ │ │ ├── ADXL345.c │ │ │ │ │ ├── ADXL345.h │ │ │ │ │ └── hw_ADXL345.h │ │ │ ├── ReadMe.txt │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── ADXL345.xml │ │ ├── LIS302DL │ │ │ ├── Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LIS302DL_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── pin_desc.PNG │ │ │ │ │ │ └── system_block.PNG │ │ │ │ │ └── txt │ │ │ │ │ │ └── LIS302DL_en.txt │ │ │ │ ├── example │ │ │ │ │ ├── ReadAccData │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── coide │ │ │ │ │ │ │ └── coide.coproj │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ │ │ └── ewarm.eww │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── .ReadAccData.c.swp │ │ │ │ │ │ │ ├── ReadAccData.c │ │ │ │ │ │ │ └── ReadAccData.h │ │ │ │ │ ├── SingleClick │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── coide │ │ │ │ │ │ │ └── coide.coproj │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ │ │ └── ewarm.eww │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── .SingleClick.c.swp │ │ │ │ │ │ │ ├── SingleClick.c │ │ │ │ │ │ │ └── SingleClick.h │ │ │ │ │ └── WakeUp │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── coide │ │ │ │ │ │ └── coide.coproj │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ │ └── ewarm.eww │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── .WakeUp.c.swp │ │ │ │ │ │ ├── WakeUp.c │ │ │ │ │ │ └── WakeUp.h │ │ │ │ ├── lib │ │ │ │ │ ├── LIS302DL.c │ │ │ │ │ ├── LIS302DL.h │ │ │ │ │ └── hw_LIS302DL.h │ │ │ │ └── test │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── coide │ │ │ │ │ └── coide.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ └── ewarm.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── test.c │ │ │ │ │ └── test.h │ │ │ ├── ReadMe.txt │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── LIS302DL.xml │ │ ├── MMA7455 │ │ │ ├── Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── MMA7455_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ └── txt │ │ │ │ │ │ └── MMA7455_en.txt │ │ │ │ ├── example │ │ │ │ │ ├── Motion detect │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── coide │ │ │ │ │ │ │ └── coide.coproj │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ │ │ └── ewarm.eww │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── MotionDetect.c │ │ │ │ │ │ │ └── MotionDetect.h │ │ │ │ │ └── ReadAccData │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── coide │ │ │ │ │ │ └── coide.coproj │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ │ └── ewarm.eww │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── ReadAccData.c │ │ │ │ │ │ └── ReadAccData.h │ │ │ │ └── lib │ │ │ │ │ ├── MMA7455.c │ │ │ │ │ ├── MMA7455.h │ │ │ │ │ └── hw_MMA7455.h │ │ │ ├── ReadMe.txt │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── MMA7455.xml │ │ └── MMA8451 │ │ │ ├── Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── MMA7455_I2C_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ └── txt │ │ │ │ │ └── MMA7455_en.txt │ │ │ ├── example │ │ │ │ └── ReadAccData │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── coide │ │ │ │ │ ├── coide.cogui │ │ │ │ │ └── coide.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ └── ewarm.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── ReadAccData.c │ │ │ │ │ └── ReadAccData.h │ │ │ └── lib │ │ │ │ ├── MMA8451.c │ │ │ │ ├── MMA8451.h │ │ │ │ └── hw_MMA8451.h │ │ │ ├── ReadMe.txt │ │ │ └── doc │ │ │ └── device │ │ │ └── MMA7455.xml │ ├── Sensor_Digital_Compass │ │ └── HMC5883L │ │ │ ├── Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── HMC5883L_I2C_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ └── txt │ │ │ │ │ └── HMC5883L_en.txt │ │ │ ├── example │ │ │ │ └── ReadData │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── coide │ │ │ │ │ └── coide.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── ewam.ewd │ │ │ │ │ ├── ewam.ewp │ │ │ │ │ └── ewarm.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── ReadData.c │ │ │ └── lib │ │ │ │ ├── HMC5883L.c │ │ │ │ ├── HMC5883L.h │ │ │ │ └── hw_HMC5883L.h │ │ │ ├── ReadMe.txt │ │ │ └── doc │ │ │ └── device │ │ │ └── MMA7455.xml │ ├── Sensor_Distance │ │ └── HC-SR04 │ │ │ ├── HC-SR04_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── HC-SR04_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── HC_SR04_ElecParam.png │ │ │ │ │ ├── HC_SR04_Profile.png │ │ │ │ │ └── HC_SR04_TimeSeq.png │ │ │ │ └── txt │ │ │ │ │ └── HC-SR04_en.txt │ │ │ ├── example │ │ │ │ ├── CoIDE │ │ │ │ │ └── HC-SR04Example.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ ├── HC_SR04Example.c │ │ │ │ │ ├── stdio │ │ │ │ │ └── printf.c │ │ │ │ │ └── syscalls │ │ │ │ │ └── syscalls.c │ │ │ ├── lib │ │ │ │ ├── HC_SR04.c │ │ │ │ └── HC_SR04.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── suite1.stm32f10x.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── HC_SR04Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── HC-SR04.xml │ ├── Sensor_Light_ROHM │ │ └── BH1750FVI │ │ │ ├── BH1750FVI_I2C_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── BH1750fvi_I2C_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── BH1750FVI_Block_Diagram.png │ │ │ │ │ ├── BH1750FVI_Typical_Application1.png │ │ │ │ │ ├── BH1750FVI_Typical_Application21.png │ │ │ │ │ ├── BH1750FVI_Typical_Application22.png │ │ │ │ │ ├── BH1750FVI_Typical_Application3.png │ │ │ │ │ └── BH1750FVI_Typical_Application4.png │ │ │ │ └── txt │ │ │ │ │ └── bh1750fvi_en.txt │ │ │ ├── example │ │ │ │ └── BH1750FVI_Temp_Read │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── coide │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Test.coproj │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── BH1750LihgtRead.eww │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── template.board │ │ │ │ │ ├── template.ewd │ │ │ │ │ └── template.ewp │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── bh1750read.c │ │ │ │ │ └── bh1750read.h │ │ │ ├── lib │ │ │ │ ├── bh1750fvi.c │ │ │ │ ├── bh1750fvi.h │ │ │ │ └── hw_bh1750fvi.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── coide │ │ │ │ ├── .gitignore │ │ │ │ └── Test.coproj │ │ │ │ └── src │ │ │ │ ├── bh1750fvitest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── bh1750fvi.xml │ ├── Sensor_Matrix │ │ ├── coide_gen_M0516LBN.bat │ │ ├── doc │ │ │ └── device │ │ │ │ └── Dot_Matrix.xml │ │ └── matrix │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── Dot_Matrix_Driver.xml │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ └── gen.bat │ │ │ ├── images │ │ │ │ ├── Dot_Matrix.png │ │ │ │ └── Dot_Matrix_System.png │ │ │ └── txt │ │ │ │ └── Dot_Matrix_en.txt │ │ │ ├── example │ │ │ └── Matrix │ │ │ │ ├── CoIDE │ │ │ │ └── Matrix.coproj │ │ │ │ ├── doc │ │ │ │ ├── Matrix.txt │ │ │ │ ├── Matrix.xml │ │ │ │ ├── Matrix01.png │ │ │ │ ├── Matrix02.png │ │ │ │ ├── Matrix03.png │ │ │ │ ├── Matrix04.png │ │ │ │ └── Matrix05.png │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── MatrixDisplay.c │ │ │ ├── lib │ │ │ ├── Dot_Matrix.c │ │ │ ├── Dot_Matrix.h │ │ │ └── font.h │ │ │ └── test │ │ │ └── suite1 │ │ │ ├── CoIDE │ │ │ └── suite1_M0516.coproj │ │ │ ├── ewarm │ │ │ ├── suite1_M0516.ewd │ │ │ ├── suite1_M0516.ewp │ │ │ └── suite1_M0516.eww │ │ │ └── src │ │ │ ├── DotMatrix_Test.c │ │ │ ├── testcase.c │ │ │ └── testcase.h │ ├── Sensor_Photo │ │ └── PTC08 │ │ │ ├── PTC08_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── PTC08_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── PTC08_Block.png │ │ │ │ │ └── PTC08_Pin.png │ │ │ │ └── txt │ │ │ │ │ └── PTC08_en.txt │ │ │ ├── example │ │ │ │ └── example1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CoIDE │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── Example.coproj │ │ │ │ │ └── src │ │ │ │ │ └── example1.c │ │ │ ├── lib │ │ │ │ ├── PTC08.c │ │ │ │ ├── PTC08.h │ │ │ │ └── hw_PTC08.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── coide │ │ │ │ ├── .gitignore │ │ │ │ └── Test.coproj │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1_m051.ewd │ │ │ │ ├── suite1_m051.ewp │ │ │ │ └── suite1_m051.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suite1_m051.uvproj │ │ │ │ └── src │ │ │ │ ├── test1.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ ├── .gitignore │ │ │ └── device │ │ │ └── PTC08.xml │ ├── Sensor_Pressure_BOSCH │ │ └── BMPx8x │ │ │ ├── BMPx8x_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── BMPx8x_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── BMP085_Block_And_App.png │ │ │ │ │ ├── BMP085_mem_map.png │ │ │ │ │ └── BMP085_op_seq.png │ │ │ │ └── txt │ │ │ │ │ └── BMP085_en.txt │ │ │ ├── example │ │ │ │ └── BMP085_Example │ │ │ │ │ ├── CoIDE │ │ │ │ │ ├── BMP085_Example.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── startup_coide.c │ │ │ │ │ └── src │ │ │ │ │ ├── BMP085Example.c │ │ │ │ │ ├── stdio │ │ │ │ │ └── printf.c │ │ │ │ │ └── syscalls │ │ │ │ │ └── syscalls.c │ │ │ ├── lib │ │ │ │ ├── BMP085.c │ │ │ │ └── BMP085.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ ├── main.c │ │ │ │ ├── startup_coide.c │ │ │ │ └── suite1.STM32F1xx.coproj │ │ │ │ └── src │ │ │ │ ├── BMP085Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ ├── BMP085.xml │ │ │ └── BMP180.xml │ ├── Sensor_Temp_ADI │ │ ├── AD7415 │ │ │ ├── AD7415_I2C_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Sensor_Temp_AD7415_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── AD7415_Connection.png │ │ │ │ │ │ └── AD7415_Package_Type.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── AD7415_en.txt │ │ │ │ ├── example │ │ │ │ │ └── ad7415TempGet │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── AD7415GetTemperature.xml │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── TempGet.ewp │ │ │ │ │ │ ├── TempGet.eww │ │ │ │ │ │ ├── startup_ewarm.c │ │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ │ └── stellaris_ram.icf │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── ad7415TempGet.uvproj │ │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ │ └── startup_rvmdk.s │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── ADI7415GetTemperature.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── ad7415.c │ │ │ │ │ ├── ad7415.h │ │ │ │ │ └── hw_ad7415.h │ │ │ │ └── test │ │ │ │ │ └── suit1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ │ ├── startup_ewarm.c │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ ├── suit1.eww │ │ │ │ │ └── suit1.icf │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suit1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── AD7415test1.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_AD7515.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── AD7415.xml │ │ ├── AD7417 │ │ │ ├── AD7417_I2C_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AD7417_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── COX.png │ │ │ │ │ │ ├── Clock_Tree.png │ │ │ │ │ │ ├── Fan_Controller.png │ │ │ │ │ │ ├── Function_block_diagram.png │ │ │ │ │ │ ├── OTI_Output.png │ │ │ │ │ │ ├── Thermostat.png │ │ │ │ │ │ └── Typical_connection_Diagram.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── ad7417_en.txt │ │ │ │ ├── example │ │ │ │ │ └── TempGet │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── TempGet.xml │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── TempGet.ewd │ │ │ │ │ │ ├── TempGet.ewp │ │ │ │ │ │ ├── TempGet.eww │ │ │ │ │ │ ├── startup_ewarm.c │ │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ │ └── stellaris_ram.icf │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── TempGet.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── ad7417.c │ │ │ │ │ ├── ad7417.h │ │ │ │ │ └── xhw_AD7417.h │ │ │ │ └── test │ │ │ │ │ └── suit1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ │ ├── startup_ewarm.c │ │ │ │ │ ├── suit1.ewd │ │ │ │ │ ├── suit1.ewp │ │ │ │ │ ├── suit1.eww │ │ │ │ │ └── suit1.icf │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── AD7417test2.c │ │ │ │ │ ├── AD7417test3.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_AD7417.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── AD7417.xml │ │ ├── ADT7301 │ │ │ ├── ADT7301_SPI_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ADT7301_SPI_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ADT7301_Block_Diagram.png │ │ │ │ │ │ └── ADT7301_Typical_Application.png │ │ │ │ │ └── txt │ │ │ │ │ │ ├── adt7301.txt │ │ │ │ │ │ └── adt7301_en.txt │ │ │ │ ├── example │ │ │ │ │ └── ADT7301_Temp_Read │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── adt7301TempRead.eww │ │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ └── template.ewp │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── adt7301read.c │ │ │ │ │ │ └── adt7301read.h │ │ │ │ ├── lib │ │ │ │ │ ├── adt7301.c │ │ │ │ │ └── adt7301.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── adt7301test.eww │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── template.ewd │ │ │ │ │ └── template.ewp │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── adt7301test.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── adt7301.xml │ │ └── ADT75 │ │ │ ├── Sensor_Temp_ADT75_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── Sensor_Temp_ADT75_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── ADT75_Connection.png │ │ │ │ │ └── ADT75_Function_Block.png │ │ │ │ └── txt │ │ │ │ │ └── ADT75_en.txt │ │ │ ├── example │ │ │ │ └── adt75OneShotconvert │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── doc │ │ │ │ │ └── adt75OneShotconvert.xml │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── TempGet.ewd │ │ │ │ │ ├── TempGet.ewp │ │ │ │ │ ├── TempGet.eww │ │ │ │ │ ├── startup_ewarm.c │ │ │ │ │ ├── stellaris_flash.icf │ │ │ │ │ └── stellaris_ram.icf │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ad7415TempGet.uvproj │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ └── startup_rvmdk.s │ │ │ │ │ └── src │ │ │ │ │ ├── adt75OneShotconvert.c │ │ │ │ │ └── main.c │ │ │ ├── lib │ │ │ │ ├── adt75.c │ │ │ │ ├── adt75.h │ │ │ │ └── xhw_adt75.h │ │ │ └── test │ │ │ │ └── suit1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ ├── startup_ewarm.c │ │ │ │ ├── suit1.ewd │ │ │ │ ├── suit1.ewp │ │ │ │ └── suit1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ └── src │ │ │ │ ├── adt75test1.c │ │ │ │ ├── adt75test2.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_ADT75.bat │ │ │ └── doc │ │ │ └── device │ │ │ └── ADT75.xml │ ├── Sensor_Temp_Maxim │ │ └── DS18B20 │ │ │ ├── DS18B20_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── DS18B20_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── DS18B20_Block.png │ │ │ │ │ ├── DS18B20_Memory.png │ │ │ │ │ ├── DS18B20_ROM.png │ │ │ │ │ ├── DS18B20_TDR.png │ │ │ │ │ ├── DS18B20_TRF.png │ │ │ │ │ └── ds18b20.png │ │ │ │ └── txt │ │ │ │ │ └── ds18b20_en.txt │ │ │ ├── lib │ │ │ │ ├── DS18B20.c │ │ │ │ ├── DS18B20.h │ │ │ │ └── hw_DS18B20.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1_nuc1xx.ewd │ │ │ │ ├── suite1_nuc1xx.ewp │ │ │ │ └── suite1_nuc1xx.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ └── src │ │ │ │ ├── test1.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ ├── .gitignore │ │ │ └── device │ │ │ └── DS18B20.xml │ ├── Sensor_Temp_Microchip │ │ ├── MCP9800_3 │ │ │ ├── MCP9800_3_I2C_Driver_dev │ │ │ │ ├── doc │ │ │ │ │ ├── MCP9800_3_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── MCP9800_3_Alert_Output.png │ │ │ │ │ │ ├── MCP9800_3_Conn.png │ │ │ │ │ │ ├── MCP9800_3_Functional_Block_Diagram.png │ │ │ │ │ │ ├── MCP9800_3_MODE.png │ │ │ │ │ │ ├── MCP9800_3_Package_Types.png │ │ │ │ │ │ ├── MCP9800_3_Register_Block_Diagram.png │ │ │ │ │ │ └── MCP9800_3_SLAVE_ADDRESS.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── MCP9800_3_TempSensor.txt │ │ │ │ ├── example │ │ │ │ │ └── MCP980x_Temp_Read │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── MCP980x_Temp_Read.xml │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── TempGet.ewp │ │ │ │ │ │ ├── TempGet.eww │ │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── TempGet.uvproj │ │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── TempGet.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── MCP9800_3.c │ │ │ │ │ ├── MCP9800_3.h │ │ │ │ │ └── hw_MCP9800_3.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── MCP980x.ewp │ │ │ │ │ ├── MCP980x.eww │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── MCP980x.uvproj │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xmcp980xtest.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── MCP9800_3.xml │ │ ├── MCP9804_5 │ │ │ ├── MCP9804_I2C_Driver_dev │ │ │ │ ├── doc │ │ │ │ │ ├── MCP9804_5_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── MCP Event Output Condition.png │ │ │ │ │ │ ├── MCP9804_CONV_TIME.png │ │ │ │ │ │ ├── MCP9804_PACKAGE_TYPE.png │ │ │ │ │ │ ├── MCP9805_PACKAGE_TYPE.png │ │ │ │ │ │ └── MCP9805_TYPICAL_APP.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── MCP9804_5_TempSensor.txt │ │ │ │ ├── example │ │ │ │ │ └── TempSensor_Event │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── TempSensor_Event.xml │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── TempSensor_Event.ewp │ │ │ │ │ │ ├── TempSensor_Event.eww │ │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── TempSensor_Event.uvproj │ │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── TempSensor_Event.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── MCP9804_5.c │ │ │ │ │ ├── MCP9804_5.h │ │ │ │ │ └── hw_MCP9804_5.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── MCP9804.ewp │ │ │ │ │ ├── MCP9804.eww │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── MCP9804.uvproj │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xmcp9804test.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── MCP9804_5.xml │ │ ├── MCP98242_3 │ │ │ ├── MCP9824x_I2C_Driver_dev │ │ │ │ ├── doc │ │ │ │ │ ├── MCP98242_3_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ ├── doxy.log │ │ │ │ │ │ └── gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── MCP DIMM MODULE.png │ │ │ │ │ │ ├── MCP Event Output Condition.png │ │ │ │ │ │ ├── MCP MCP98242 vs MCP98243.png │ │ │ │ │ │ ├── MCP Package Types.png │ │ │ │ │ │ ├── MCP TEMPERATURE CONVERSION TIME.png │ │ │ │ │ │ └── SDA and SCLK serial interface.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── MCP98242_3_TempSensor_EEPROM.txt │ │ │ │ ├── example │ │ │ │ │ ├── MCP9824x_EEPROM_WR │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ └── MCP9824x_EEPROM_WR.xml │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ │ ├── MCP9824x_EEPROM_WR.ewp │ │ │ │ │ │ │ ├── MCP9824x_EEPROM_WR.eww │ │ │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ │ ├── MCP9824x_EEPROM_WR.uvproj │ │ │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── MCP9824x_EEPROM_WR.c │ │ │ │ │ │ │ └── main.c │ │ │ │ │ └── TempSensor_Event │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── TempSensor_Event.xml │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── TempSensor_Event.ewp │ │ │ │ │ │ ├── TempSensor_Event.eww │ │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ │ │ ├── TempSensor_Event.uvproj │ │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── TempSensor_Event.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── MCP98242_3.c │ │ │ │ │ ├── MCP98242_3.h │ │ │ │ │ └── hw_MCP98242_3.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── MCP98242.ewp │ │ │ │ │ ├── MCP98242.eww │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── MCP98242.uvproj │ │ │ │ │ └── startup_NUC1xx.s │ │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ ├── testcase.h │ │ │ │ │ └── xmcp98242test.c │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── MCP98242_3.xml │ │ ├── TC72 │ │ │ ├── TC72_SPI_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── TC72_SPI_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── TC72_Block_Diagram.png │ │ │ │ │ │ └── TC72_Typical_Application.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── tc72_en.txt │ │ │ │ ├── example │ │ │ │ │ └── TC72_Temp_Read │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ │ ├── tc72TempRead.eww │ │ │ │ │ │ ├── template.ewd │ │ │ │ │ │ └── template.ewp │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── tc72read.c │ │ │ │ │ │ └── tc72read.h │ │ │ │ ├── lib │ │ │ │ │ ├── hw_tc72.h │ │ │ │ │ ├── tc72.c │ │ │ │ │ └── tc72.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── tc72test.eww │ │ │ │ │ ├── template.ewd │ │ │ │ │ └── template.ewp │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── tc72test.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── tc72.xml │ │ ├── TC74 │ │ │ ├── TC74_I2C_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── TC74_I2C_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── TC74_Function.png │ │ │ │ │ │ └── TC74_Package.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── TC74Driver_en.txt │ │ │ │ ├── example │ │ │ │ │ └── TC74TempGet │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── TC74TempGet.ewp │ │ │ │ │ │ ├── TC74TempGet.eww │ │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ │ │ ├── TC74TempGet.uvproj │ │ │ │ │ │ └── startup_rvmdk.S │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── TC74TempGet.c │ │ │ │ │ │ └── main.c │ │ │ │ ├── lib │ │ │ │ │ ├── TC74.c │ │ │ │ │ ├── TC74.h │ │ │ │ │ └── hw_TC74.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── suite1.ewp │ │ │ │ │ └── suite1.eww │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ │ ├── startup_rvmdk.S │ │ │ │ │ └── suite1.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── TC74 _Test.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── TC74.xml │ │ ├── TC77 │ │ │ ├── TC77_SPI_Driver │ │ │ │ ├── doc │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── TC77_SPI_Driver.xml │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── clean.bat │ │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ │ ├── images │ │ │ │ │ │ ├── cox_tc77_block.png │ │ │ │ │ │ └── tc77_typical_application.png │ │ │ │ │ └── txt │ │ │ │ │ │ └── tc77_en.txt │ │ │ │ ├── example │ │ │ │ │ └── TC77_Temp_Read │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── ewarm │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ │ ├── tc77read.eww │ │ │ │ │ │ └── template.ewp │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── rvmdk │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── tc77read.c │ │ │ │ │ │ └── tc77read.h │ │ │ │ ├── lib │ │ │ │ │ ├── tc77.c │ │ │ │ │ └── tc77.h │ │ │ │ └── test │ │ │ │ │ └── suite1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ ├── startup_ewarm.s │ │ │ │ │ ├── tc77test.eww │ │ │ │ │ ├── template.ewd │ │ │ │ │ └── template.ewp │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ └── src │ │ │ │ │ ├── tc77test.c │ │ │ │ │ ├── testcase.c │ │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ │ └── device │ │ │ │ └── tc77.xml │ │ └── TCN75 │ │ │ ├── TCN75_I2C_Driver │ │ │ ├── doc │ │ │ │ ├── TCN75_I2C_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── TCN75_Function.png │ │ │ │ │ └── TCN75_Package.png │ │ │ │ └── txt │ │ │ │ │ └── TCN75Driver_en.txt │ │ │ ├── example │ │ │ │ └── TCN75Exp │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── TCN75Exp.ewp │ │ │ │ │ ├── TCN75Exp.eww │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ │ ├── TCN75Exp.uvproj │ │ │ │ │ └── startup_rvmdk.S │ │ │ │ │ └── src │ │ │ │ │ ├── TCN75Exp.c │ │ │ │ │ └── main.c │ │ │ ├── lib │ │ │ │ ├── TCN75.c │ │ │ │ ├── TCN75.h │ │ │ │ └── hw_TCN75.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1.ewd │ │ │ │ ├── suite1.ewp │ │ │ │ └── suite1.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── startup_NUC1xx.s │ │ │ │ └── suite1.uvproj │ │ │ │ └── src │ │ │ │ ├── TCN75 _Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── TCN75.xml │ ├── Sensor_Temp_ST │ │ └── STLM75 │ │ │ ├── STLM75_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── STLM75_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── STLM75_APP.png │ │ │ │ │ ├── STLM75_Block.png │ │ │ │ │ ├── STLM75_Command.png │ │ │ │ │ ├── STLM75_Configuration.png │ │ │ │ │ ├── STLM75_Mode.png │ │ │ │ │ ├── STLM75_Pin.png │ │ │ │ │ ├── STLM75_TRF.png │ │ │ │ │ ├── STLM75_Temperature.png │ │ │ │ │ └── STLM75_summary.png │ │ │ │ └── txt │ │ │ │ │ └── STLM75_en.txt │ │ │ ├── example │ │ │ │ └── example1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── example1_nuc1xx.ewd │ │ │ │ │ ├── example1_nuc1xx.ewp │ │ │ │ │ ├── example1_nuc1xx.eww │ │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── rvmdk │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ │ ├── startup_rvmdk.s │ │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ │ └── src │ │ │ │ │ └── example1.c │ │ │ ├── lib │ │ │ │ ├── STLM75.c │ │ │ │ ├── STLM75.h │ │ │ │ └── hw_STLM75.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.icf │ │ │ │ ├── nuc1xx_ram.icf │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── suite1_nuc1xx.ewd │ │ │ │ ├── suite1_nuc1xx.ewp │ │ │ │ └── suite1_nuc1xx.eww │ │ │ │ ├── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── nuc1xx_flash.sct │ │ │ │ ├── nuc1xx_ram.ini │ │ │ │ ├── nuc1xx_ram.sct │ │ │ │ ├── startup_rvmdk.s │ │ │ │ └── suite1_nuc1xx.uvproj │ │ │ │ └── src │ │ │ │ ├── test1.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_nuc1xx.bat │ │ │ └── doc │ │ │ ├── .gitignore │ │ │ └── device │ │ │ └── STLM75.xml │ ├── Sensor_Touch │ │ └── Cap_Touch │ │ │ ├── CapTouch_Driver │ │ │ ├── doc │ │ │ │ ├── cap_touch_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ └── touch_Block.png │ │ │ │ └── txt │ │ │ │ │ └── cap_touch_en.txt │ │ │ ├── example │ │ │ │ └── Touch_example │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── TouchExample.ewd │ │ │ │ │ ├── TouchExample.ewp │ │ │ │ │ └── TouchExample.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── Example.c │ │ │ ├── lib │ │ │ │ ├── touch.c │ │ │ │ └── touch.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── suite1.STM32F1xx.ewd │ │ │ │ ├── suite1.STM32F1xx.ewp │ │ │ │ └── suite1.STM32F1xx.eww │ │ │ │ └── src │ │ │ │ ├── Touch_Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_STM32F1xx.bat │ │ │ └── doc │ │ │ └── device │ │ │ └── cap_touch.xml │ ├── Sensor_Touch_ST │ │ └── STMPE811 │ │ │ ├── STMPE811_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── STMPE811_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── STMPE811_Block.png │ │ │ │ │ ├── STMPE811_I2CAddr.png │ │ │ │ │ ├── STMPE811_pin1.png │ │ │ │ │ └── STMPE811_pin2.png │ │ │ │ └── txt │ │ │ │ │ └── STMPE811_en.txt │ │ │ ├── example │ │ │ │ └── Touch_example │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── STMPE811Example.ewd │ │ │ │ │ ├── STMPE811Example.ewp │ │ │ │ │ ├── STMPE811Example.eww │ │ │ │ │ ├── main.c │ │ │ │ │ └── startup_ewarm.s │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ └── Example.h │ │ │ ├── lib │ │ │ │ ├── STMPE811.c │ │ │ │ ├── STMPE811.h │ │ │ │ └── hw_STMPE811.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── main.cpp │ │ │ │ ├── suite1.STM32F1xx.ewd │ │ │ │ ├── suite1.STM32F1xx.ewp │ │ │ │ └── suite1.STM32F1xx.eww │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── STMPE811_Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_STM32F1xx.bat │ │ │ └── doc │ │ │ ├── .gitignore │ │ │ └── device │ │ │ └── STMPE811.xml │ ├── Seven_Segment │ │ └── Seven_Segment │ │ │ ├── Seven_Segment │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── Seven_Segment_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── Seven_Segment.jpg │ │ │ │ │ └── Seven_Segment_system.jpg │ │ │ │ └── txt │ │ │ │ │ └── seven_segment_en.txt │ │ │ ├── lib │ │ │ │ ├── Seven_Segment.c │ │ │ │ └── Seven_Segment.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── main.cpp │ │ │ │ ├── suite1.STM32F1xx.ewd │ │ │ │ ├── suite1.STM32F1xx.ewp │ │ │ │ ├── suite1.STM32F1xx.eww │ │ │ │ └── suite1.STM32F1xxCustomSfr.sfr │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── LG5641_Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ ├── coide_gen_STM32F1xx.bat │ │ │ └── doc │ │ │ └── device │ │ │ └── Seven_Segment.xml │ ├── Shield_Arduino_WirelessShield_SD │ │ └── Arduino_Wireless_SD │ │ │ └── Wireless_SD_single │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── TEL0026_single.xml │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ └── gen.bat │ │ │ ├── images │ │ │ │ ├── Bluetooth_Bee_Pins.png │ │ │ │ └── TEL0026_Pins.png │ │ │ └── txt │ │ │ │ └── TEL0026_single.txt │ │ │ ├── example │ │ │ └── Wireless_SD_Example │ │ │ │ ├── CoIDE │ │ │ │ ├── BT_SD_Example.coproj │ │ │ │ └── startup_coide.c │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ └── Bluetooth_SD_Example.c │ │ │ ├── lib │ │ │ ├── TEL0026.c │ │ │ ├── TEL0026.h │ │ │ └── hw_TEL0026.h │ │ │ └── test │ │ │ └── suite1 │ │ │ ├── CoIDE │ │ │ ├── startup_coide.c │ │ │ └── suite1.stm32f10x.coproj │ │ │ ├── main.c │ │ │ └── src │ │ │ ├── TEL0026_Test.c │ │ │ ├── testcase.c │ │ │ └── testcase.h │ ├── USB_Controller_WCH │ │ └── CH376 │ │ │ ├── CH376_Driver │ │ │ ├── doc │ │ │ │ ├── CH376_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── CH376_Application.png │ │ │ │ │ ├── CH376_Block.png │ │ │ │ │ └── CH376_Pins.png │ │ │ │ └── txt │ │ │ │ │ └── CH376_en.txt │ │ │ ├── example │ │ │ │ └── Udisk_ReadWrite │ │ │ │ │ ├── CoIDE │ │ │ │ │ └── CH376_Example.coproj │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ ├── Example.c │ │ │ │ │ ├── Example.h │ │ │ │ │ ├── printf.c │ │ │ │ │ └── syscalls.c │ │ │ ├── lib │ │ │ │ ├── CH376.c │ │ │ │ ├── CH376.h │ │ │ │ ├── CH376_FS.c │ │ │ │ ├── CH376_FS.h │ │ │ │ └── hw_CH376INC.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ └── suite1.STM32F1xx.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── CH376_Test.c │ │ │ │ ├── printf.c │ │ │ │ ├── syscalls.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── CH376.xml │ ├── Wireless_Infrared_LFN │ │ └── VS1838B │ │ │ ├── VS1838B_Driver │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── VS1838B_Single.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── VS1838B_Profile.png │ │ │ │ │ ├── VS1838B_Wave.png │ │ │ │ │ └── VS1838_Block_App.png │ │ │ │ └── txt │ │ │ │ │ └── VS1838B_single.txt │ │ │ ├── example │ │ │ │ └── IRDecode │ │ │ │ │ ├── CoIDE │ │ │ │ │ ├── IRDecode.coproj │ │ │ │ │ └── startup_coide.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── src │ │ │ │ │ └── InfraredDecodeExample.c │ │ │ ├── lib │ │ │ │ ├── infrared.c │ │ │ │ └── infrared.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ ├── startup_coide.c │ │ │ │ └── suite.stm32f10x.coproj │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ ├── VS1838BTest.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ │ └── doc │ │ │ └── device │ │ │ └── VS1838B.xml │ ├── doc │ │ └── doxygen │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ ├── .gitignore │ │ │ ├── clean.bat │ │ │ ├── cox_en.cfg │ │ │ └── doxygen_doc_gen.bat │ │ │ └── txt │ │ │ └── device_group_en.txt │ └── wireless │ │ └── xbee │ │ ├── doc │ │ └── device │ │ │ └── xbee.xml │ │ └── xbee_Driver │ │ ├── doc │ │ ├── gen │ │ │ ├── clean.bat │ │ │ ├── cox_en.cfg │ │ │ ├── doxygen_doc_gen.bat │ │ │ └── gen.bat │ │ ├── images │ │ │ ├── prd-xbee-modules-fam_lg.jpg │ │ │ └── xbee_interface.png │ │ ├── txt │ │ │ └── xbee_en.txt │ │ └── xbee_Driver.xml │ │ ├── example │ │ └── Touch_example │ │ │ ├── coide │ │ │ └── xbee.coproj │ │ │ ├── doc │ │ │ ├── BK-XBEE-MODULES V2.0.pdf │ │ │ ├── DIGI XBEE妯″潡浣跨敤鎵嬪唽 V1.0.pdf │ │ │ ├── DIGI XBEE妯″潡鐢ˋPI瀹炵幇AT鎸囦护 V1.0.pdf │ │ │ ├── XBEE XBEE-PRO ZB妯″潡鍩烘湰璇曢獙1.pdf │ │ │ ├── XBEE-S2寮€鍙戦棶棰樼瓟鐤慥1.0.pdf │ │ │ ├── XBEE-XBEEPRO-ZB 鍛戒护鍙傝€冭〃.pdf │ │ │ └── xctu涓枃浣跨敤璇存槑.doc │ │ │ ├── main.c │ │ │ └── src │ │ │ └── Example.c │ │ └── lib │ │ ├── xbee.c │ │ └── xbee.h ├── Shield │ ├── AdafruitIndustries │ │ ├── Logger Shield │ │ │ └── delete │ │ └── Motor_Shield │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── Shield_Adafruit_Industries_Motor_Shield.xml │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── mshield.jpg │ │ │ │ └── mshield_pins.jpg │ │ │ └── txt │ │ │ │ └── MShield_en.txt │ │ │ ├── example │ │ │ ├── motor for Embedded Pi │ │ │ │ ├── CoIDE │ │ │ │ │ └── motorstep.coproj │ │ │ │ ├── doc │ │ │ │ │ └── motorstep.txt │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ └── motorstep.c │ │ │ └── motor_stepping │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── template.uvgui_Administrator.bak │ │ │ │ ├── template.uvproj │ │ │ │ ├── template_uvopt.bak │ │ │ │ └── template_uvproj.bak │ │ │ └── lib │ │ │ ├── MotorShield.c │ │ │ └── MotorShield.h │ ├── Arduino │ │ ├── Motor_Shield │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── Shield_Arduino _Motor_Shield.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── Arduino.png │ │ │ │ │ ├── mshield.jpg │ │ │ │ │ └── mshield_pins.jpg │ │ │ │ └── txt │ │ │ │ │ └── AMShield_en.txt │ │ │ ├── example │ │ │ │ └── motor_stepping │ │ │ │ │ ├── CoIDE │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── suite1_STM32.coproj │ │ │ │ │ └── main.c │ │ │ └── lib │ │ │ │ ├── ArduinoMotorShield.c │ │ │ │ ├── ArduinoMotorShield.h │ │ │ │ └── DotMatrix_example.c │ │ └── WiFi_Shield │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── WiFi_Shield.xml │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── Arduino_WiFi_Shield_Back.jpg │ │ │ │ ├── Arduino_WiFi_Shield_Front.jpg │ │ │ │ └── Arduino_WiFi_Shield_Pin_Use_Described.png │ │ │ └── txt │ │ │ │ └── WiFi_Shield_en.txt │ │ │ ├── example │ │ │ ├── ConnectNoEncryption │ │ │ │ ├── CoIDE │ │ │ │ │ └── WiFi.coproj │ │ │ │ ├── IAR │ │ │ │ │ ├── WiFi.ewd │ │ │ │ │ ├── WiFi.ewp │ │ │ │ │ └── WiFi.eww │ │ │ │ └── src │ │ │ │ │ └── ConnectNoEncryption.c │ │ │ ├── ConnectWithWPA │ │ │ │ ├── CoIDE │ │ │ │ │ └── WiFi.coproj │ │ │ │ ├── IAR │ │ │ │ │ ├── WiFi.ewd │ │ │ │ │ ├── WiFi.ewp │ │ │ │ │ └── WiFi.eww │ │ │ │ └── src │ │ │ │ │ └── ConnectWithWPA.c │ │ │ ├── ScanNetworks │ │ │ │ ├── CoIDE │ │ │ │ │ └── WiFi.coproj │ │ │ │ ├── IAR │ │ │ │ │ ├── WiFi.ewd │ │ │ │ │ ├── WiFi.ewp │ │ │ │ │ └── WiFi.eww │ │ │ │ └── src │ │ │ │ │ └── ScanNetworks.c │ │ │ └── WifiWebClient │ │ │ │ ├── CoIDE │ │ │ │ ├── WiFi.cogui │ │ │ │ └── WiFi.coproj │ │ │ │ ├── IAR │ │ │ │ ├── WiFi.ewd │ │ │ │ ├── WiFi.ewp │ │ │ │ └── WiFi.eww │ │ │ │ └── src │ │ │ │ └── WifiWebClient.c │ │ │ └── lib │ │ │ ├── README │ │ │ ├── WiFi.c │ │ │ ├── WiFi.h │ │ │ ├── WiFiClient.c │ │ │ ├── WiFiClient.h │ │ │ ├── server_drv.c │ │ │ ├── server_drv.h │ │ │ ├── spi_drv.c │ │ │ ├── spi_drv.h │ │ │ ├── wifi_drv.c │ │ │ ├── wifi_drv.h │ │ │ ├── wifi_spi.h │ │ │ └── wl_definitions.h │ ├── DFRobot │ │ └── LCDShield │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ ├── hd44780_commands.gif │ │ │ │ ├── hd44780_ddramaddress.gif │ │ │ │ ├── lcd.jpg │ │ │ │ └── ldc1.gif │ │ │ └── txt │ │ │ │ └── lcdshield_en.txt │ │ │ ├── example │ │ │ └── LEDBlink │ │ │ │ ├── .gitignore │ │ │ │ ├── ewarm │ │ │ │ ├── .gitignore │ │ │ │ ├── startup_ewarm.s │ │ │ │ ├── template.ewd │ │ │ │ ├── template.ewp │ │ │ │ └── template.eww │ │ │ │ ├── main.c │ │ │ │ └── rvmdk │ │ │ │ ├── .gitignore │ │ │ │ ├── Nu_Link_Driver.ini │ │ │ │ └── template.uvproj │ │ │ └── lib │ │ │ ├── LCDKeypad.c │ │ │ ├── LCDShield.h │ │ │ ├── hd44780.c │ │ │ ├── hd44780.h │ │ │ └── hw_hd44780.h │ ├── TinkerKIT │ │ ├── Motor_Shield │ │ │ ├── doc │ │ │ │ ├── Shield_ULN2003_Motor_Shield.xml │ │ │ │ ├── gen │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ └── doxygen_doc_gen.bat │ │ │ │ ├── images │ │ │ │ │ └── mshield_pins.jpg │ │ │ │ └── txt │ │ │ │ │ └── MShield_en.txt │ │ │ ├── example │ │ │ │ └── motor_stepping │ │ │ │ │ ├── ewarm │ │ │ │ │ ├── template.ewd │ │ │ │ │ ├── template.ewp │ │ │ │ │ └── template.eww │ │ │ │ │ └── main.c │ │ │ └── lib │ │ │ │ ├── MotorShield.c │ │ │ │ └── MotorShield.h │ │ └── Sensor_Shield │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── Sensor_Shield.xml │ │ │ ├── gen │ │ │ │ ├── .gitignore │ │ │ │ ├── clean.bat │ │ │ │ ├── cox_en.cfg │ │ │ │ └── doxygen_doc_gen.bat │ │ │ ├── images │ │ │ │ └── Sensor_Shield.png │ │ │ └── txt │ │ │ │ └── Sensor_Shield_en.txt │ │ │ ├── example │ │ │ ├── sensor for Embedded Pi │ │ │ │ ├── CoIDE │ │ │ │ │ └── Sensor.coproj │ │ │ │ ├── doc │ │ │ │ │ ├── Sensor.txt │ │ │ │ │ └── Sensor.xml │ │ │ │ ├── main.c │ │ │ │ └── src │ │ │ │ │ └── SensorExample.c │ │ │ └── sensor │ │ │ │ ├── CoIDE │ │ │ │ ├── .gitignore │ │ │ │ └── suite1_M0516.coproj │ │ │ │ └── src │ │ │ │ └── main.c │ │ │ └── lib │ │ │ ├── Sensor_Shield.c │ │ │ └── Sensor_Shield.h │ └── iteadstudio │ │ ├── GPS │ │ ├── GPS │ │ │ ├── doc │ │ │ │ ├── .gitignore │ │ │ │ ├── GPS_Driver.xml │ │ │ │ ├── gen │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── clean.bat │ │ │ │ │ ├── cox_en.cfg │ │ │ │ │ ├── doxygen_doc_gen.bat │ │ │ │ │ └── gen.bat │ │ │ │ ├── images │ │ │ │ │ ├── GPS_Pin.png │ │ │ │ │ ├── GPS_system.png │ │ │ │ │ └── gpsshield.jpg │ │ │ │ └── txt │ │ │ │ │ └── GPS_en.txt │ │ │ ├── lib │ │ │ │ ├── gps.c │ │ │ │ └── gps.h │ │ │ └── test │ │ │ │ └── suite1 │ │ │ │ ├── CoIDE │ │ │ │ ├── .gitignore │ │ │ │ └── suite1_M0516.coproj │ │ │ │ └── src │ │ │ │ ├── GPS_Test.c │ │ │ │ ├── testcase.c │ │ │ │ └── testcase.h │ │ └── doc │ │ │ └── device │ │ │ └── GPS.xml │ │ └── Sensor_Matrix │ │ ├── doc │ │ └── device │ │ │ └── Dot_Matrix.xml │ │ └── matrix │ │ ├── doc │ │ ├── .gitignore │ │ ├── Dot_Matrix_Driver.xml │ │ ├── gen │ │ │ ├── .gitignore │ │ │ ├── clean.bat │ │ │ ├── cox_en.cfg │ │ │ ├── doxygen_doc_gen.bat │ │ │ └── gen.bat │ │ ├── images │ │ │ ├── Dot_Matrix.png │ │ │ └── Dot_Matrix_System.png │ │ └── txt │ │ │ └── Dot_Matrix_en.txt │ │ ├── lib │ │ ├── Dot_Matrix.c │ │ ├── Dot_Matrix.h │ │ └── font.h │ │ └── test │ │ └── suite1 │ │ ├── CoIDE │ │ ├── .gitignore │ │ └── suite1_M0516.coproj │ │ └── src │ │ ├── DotMatrix_Test.c │ │ ├── testcase.c │ │ └── testcase.h └── resource │ ├── cox_coide_empty_project_nuc1xx │ ├── .cproject │ ├── .project │ ├── .xml │ ├── build.xml │ ├── coide_gen.cob │ ├── debug.config │ ├── link.ld │ └── memory.ld │ └── testframe │ ├── main.c │ ├── test.c │ ├── test.h │ └── testport.c ├── Document ├── coding-standard.txt ├── contribution-howto.txt ├── doxygen-document-howto.txt └── test-howto.txt ├── LICENSE ├── README ├── clean.bat └── resource ├── coide_empty_project ├── .cproject ├── .project └── coide_gen.cob ├── doxygen ├── css │ ├── UpLevel.gif │ ├── doxygen.css │ ├── ftv2splitbar.png │ ├── menubg.gif │ ├── navtree.css │ ├── search │ │ └── search.css │ └── tabs.css └── gen │ ├── coocox_logo.png │ ├── cox_en.cfg │ ├── cox_foot.html │ └── cox_head.html ├── test ├── testcase │ ├── test1.c │ ├── testcase.c │ └── testcase.h └── testframe │ ├── main.c │ ├── test.c │ ├── test.h │ └── testport.c └── tools └── 7za.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/.gitignore -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/acmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/acmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/acmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/adc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/core.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/dma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/gpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/gpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_dma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_pwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_rtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/hw_wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/pwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/rtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/rtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/spi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/sysctl.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/sysctl.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/timer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/timer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/uart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/uart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/wdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xPort.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xdma.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripehral_AU9110/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/core/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/gpio/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/pwm/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/timer/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F125x/timer/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/core/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/gpio/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/pwm/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/timer/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/timer/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/all/gen_coide.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/all/gen_coide.bat -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/images/COX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/doc/images/COX.png -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xacmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xacmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xacmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xacmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xadc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xadc.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xadc.h~ -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdma.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xdma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_acmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_dma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_gpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_ints.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_nvic.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_rtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_tpm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_types.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_uart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xhw_wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xrtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xrtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xsysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xsysctl.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xsysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xsysctl.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/pwm/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/testframe/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/testframe/main.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/testframe/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/testframe/test.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/testframe/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_KLx/testframe/test.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_KLx/wdt/test/suite1/ewarm/README.txt: -------------------------------------------------------------------------------- 1 | IAR Version : 6.40 2 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/ReadMe.txt -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xadc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xrtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xrtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_LPC17xx/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/all/gen_coide.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/all/gen_coide.bat -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/gpio/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xacmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xacmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xacmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xacmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xadc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_acmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_gpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_ints.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_nvic.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_pwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_uart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xhw_wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xsysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xsysctl.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xsysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xsysctl.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xtimer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xtimer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/pwm/test/suite1/rvmdk/Nu_Link_Driver.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/testframe/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/testframe/main.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/testframe/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/testframe/test.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/testframe/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051/testframe/test.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/timer/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/timer/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/timer/test/suite1/rvmdk/Nu_Link_Driver.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051/uart/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/acmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/acmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/acmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/adc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/core.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/debug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/gpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/gpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_pwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/hw_wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/i2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/pwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/pwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/rtc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/spi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/sysctl.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/sysctl.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/timer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/timer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/uart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/uart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/wdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/xPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_M051DN/libcox/xPort.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xacmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xacmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xdma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xrtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xtimer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Manual/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xacmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xacmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xacmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xacmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xadc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xtimer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xtimer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Mini51/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/timer/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Mini51/timer/test/suite2/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/gpio/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xrtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xrtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xtimer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xtimer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC122/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/timer/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/timer/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/timer/test/suite1/rvmdk/Nu_Link_Driver.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/uart/example/uartprintf/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC122/uart/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xadc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdma.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xdma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xtimer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xtimer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC123/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/gpio/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/i2c/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xacmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xacmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xacmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xacmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xadc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdma.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xdma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xrtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xrtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xtimer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xtimer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/pwm/test/suite1/rvmdk/Nu_Link_Driver.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/timer/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/timer/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xx/timer/test/suite1/rvmdk/Nu_Link_Driver.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/acmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/acmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/acmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/adc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/core.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/dma.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/dma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/gpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/gpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/i2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/pwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/pwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/rtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/rtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/spi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/uart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/uart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/wdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC1xxDN/libcox/wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xacmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xacmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xacmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xacmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xadc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xcore.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xcore.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdebug.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdebug.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdma.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xdma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xgpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xgpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xi2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xpwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xpwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xrtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xrtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xspi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xtimer.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xtimer.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xuart.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xuart.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xwdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC2xx/libcox/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/acmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/acmp.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/acmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/acmp.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/adc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/core.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/dma.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/dma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/gpio.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/gpio.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/hw_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/hw_adc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/hw_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/hw_dma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/i2c.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/i2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/pwm.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/pwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/rtc.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/rtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/spi.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/spi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/wdt.c -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_NUC4xx/libcox/wdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/all/project/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/all/project/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/all/project/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/gpio/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/timer/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_STM32F1xx/timer/test/suite1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/doc/adc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/doc/adc.md -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/CoX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/CoX.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xadc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xdma.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xi2c.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xpwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xpwm.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xrtc.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xspi.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xusb.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xwdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/CoX_Peripheral_Template/inc/xwdt.h -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/publish/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.zip 3 | 4 | -------------------------------------------------------------------------------- /CoX/CoX_Peripheral/publish/publish_cox.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/CoX_Peripheral/publish/publish_cox.bat -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/Shield example/LCD and Motor Shield/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/Shield example/LCD and Motor Shield/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/LEDBlink/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/LEDBlink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Cookie/Cookie_NuMicro/bsp/example/LEDBlink/main.c -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/LEDBlink/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/UARTPrint/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/UARTPrint/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/template/main.c: -------------------------------------------------------------------------------- 1 | #include "cookie.h" 2 | 3 | int main() 4 | { 5 | while(1); 6 | } 7 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/example/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/production_test/template/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/bsp/production_test/template/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/libCookie/Cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Cookie/Cookie_NuMicro/libCookie/Cookie.h -------------------------------------------------------------------------------- /CoX/Cookie/Cookie_NuMicro/libCookie/Cookie_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Cookie/Cookie_NuMicro/libCookie/Cookie_cfg.h -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/Shield_example/LCD4884Shield/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/LEDBlink/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/LEDBlink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Cookie/Embedded_pi/bsp/example/LEDBlink/main.c -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/LEDBlink/src/ledblink.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/UARTPrint/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/UARTPrint/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Cookie/Embedded_pi/bsp/example/UARTPrint/main.c -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/UARTPrint/src/uartprint.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/template/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/example/template/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | while(1); 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/bsp/production_test/template/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/libcookie/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Cookie/Embedded_pi/libcookie/cookie.h -------------------------------------------------------------------------------- /CoX/Cookie/Embedded_pi/libcookie/cookie_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Cookie/Embedded_pi/libcookie/cookie_cfg.h -------------------------------------------------------------------------------- /CoX/Driver/AD.DA/PCF8591/PCF8591_Driver/lib/PCF8591.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/AD.DA/PCF8591/PCF8591_Driver/lib/PCF8591.c -------------------------------------------------------------------------------- /CoX/Driver/AD.DA/PCF8591/PCF8591_Driver/lib/PCF8591.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/AD.DA/PCF8591/PCF8591_Driver/lib/PCF8591.h -------------------------------------------------------------------------------- /CoX/Driver/AD.DA/PCF8591/doc/device/PCF8591.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/AD.DA/PCF8591/doc/device/PCF8591.xml -------------------------------------------------------------------------------- /CoX/Driver/Codec_Audio_VLSI/VS10xx/VS10xx_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Codec_Audio_VLSI/VS10xx/VS10xx_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Controller_TouchScreen_TI/ADS784x/ADS784x_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Controller_TouchScreen_TI/ADS784x/ADS784x_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Expand_IO/PCF8574/Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Expand_IO/PCF8574/Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Expand_IO/PCF8574/Driver/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Expand_IO/PCF8574/Driver/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Driver/Expand_IO/PCF8574/Driver/lib/PCF8574.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Expand_IO/PCF8574/Driver/lib/PCF8574.c -------------------------------------------------------------------------------- /CoX/Driver/Expand_IO/PCF8574/Driver/lib/PCF8574.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Expand_IO/PCF8574/Driver/lib/PCF8574.h -------------------------------------------------------------------------------- /CoX/Driver/Expand_IO/PCF8574/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Expand_IO/PCF8574/ReadMe.txt -------------------------------------------------------------------------------- /CoX/Driver/Expand_IO/PCF8574/doc/device/PCF8574.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Expand_IO/PCF8574/doc/device/PCF8574.xml -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/GPS_Driver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/GPS_Driver.xml -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/gen/doxygen_doc_gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/gen/doxygen_doc_gen.bat -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/gen/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/gen/gen.bat -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/images/GPS_Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/images/GPS_Pin.png -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/images/GPS_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/images/GPS_system.png -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/images/gpsshield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/images/gpsshield.jpg -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/doc/txt/GPS_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/doc/txt/GPS_en.txt -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/example/GPSPosition/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/example/GPSPosition/main.c -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/lib/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/lib/gps.c -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/lib/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/lib/gps.h -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/test/suite1/ewarm/suite1_M0516.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/test/suite1/ewarm/suite1_M0516.ewd -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/test/suite1/ewarm/suite1_M0516.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/test/suite1/ewarm/suite1_M0516.ewp -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/test/suite1/ewarm/suite1_M0516.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/test/suite1/ewarm/suite1_M0516.eww -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/test/suite1/src/GPS_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/test/suite1/src/GPS_Test.c -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/test/suite1/src/testcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/test/suite1/src/testcase.c -------------------------------------------------------------------------------- /CoX/Driver/GPS/GPS/test/suite1/src/testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/GPS/test/suite1/src/testcase.h -------------------------------------------------------------------------------- /CoX/Driver/GPS/coide_gen_M0516LBN.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/coide_gen_M0516LBN.bat -------------------------------------------------------------------------------- /CoX/Driver/GPS/doc/device/GPS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/GPS/doc/device/GPS.xml -------------------------------------------------------------------------------- /CoX/Driver/GYROSCOPE/GYROSCOPE_2AXIS/LPR5150AL/Character_LPR5150AL_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/GYROSCOPE/GYROSCOPE_2AXIS/LPR5150AL/Character_LPR5150AL_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Key_KeyPad/Joystick/Joystick_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Key_KeyPad/Joystick/doc/device/MT008-A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Key_KeyPad/Joystick/doc/device/MT008-A.xml -------------------------------------------------------------------------------- /CoX/Driver/Keypad/Keypad_4x4/Keypad_4x4_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Keypad/Keypad_4x4/Keypad_4x4_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HD44780/Character_LCD_HD44780_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HD44780/Character_LCD_HD44780_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HD44780/Character_LCD_HD44780_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HD44780/coide_gen_nuc1xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/HD44780/coide_gen_nuc1xx.bat -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HX8347-G/Character_LCD_HX8347-G_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HX8347-G/Character_LCD_HX8347-G_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HX8347-G/Character_LCD_HX8347-G_Driver/example/HX8347-G/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HX8347-G/Character_LCD_HX8347-G_Driver/example/HX8347-G/ewarm/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HX8347-G/Character_LCD_HX8347-G_Driver/example/HX8347-G/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/HX8347-G/Character_LCD_HX8347-G_Driver/test/suite1/ewarm/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/ILI9341/Character_LCD_ILI9341_Driver/test/suite1/ewarm/suite1_m0516CustomSfr.sfr: -------------------------------------------------------------------------------- 1 | [Sfr] 2 | 3 | 4 | [SfrGroupInfo] -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_I2C/LCD1602_I2C_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_I2C/LCD1602_I2C_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_I2C/LCD1602_I2C_Driver/example/LCD1602_IIC/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_I2C/LCD1602_I2C_Driver/example/LCD1602_IIC/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_SPI/LCD1602_SPI_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_SPI/LCD1602_SPI_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_SPI/LCD1602_SPI_Driver/example/LCD1602_SPI/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/LCD1602_SPI/LCD1602_SPI_Driver/example/LCD1602_SPI/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/SSD2119/Character_LCD_SSD2119_Driver/test/suite1/ewarm/suite1CustomSfr.sfr: -------------------------------------------------------------------------------- 1 | [Sfr] 2 | 3 | 4 | [SfrGroupInfo] -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/SSD2119/coide_gen_lm3sxx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/SSD2119/coide_gen_lm3sxx.bat -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/T6963C/T6963C_single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/T6963C/T6963C_single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/T6963C/coide_gen_nuc1xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/T6963C/coide_gen_nuc1xx.bat -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/T6963C/doc/device/T6963C.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/T6963C/doc/device/T6963C.xml -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1601/coide_gen_nuc1xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/UC1601/coide_gen_nuc1xx.bat -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1601/doc/device/uc1601.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/UC1601/doc/device/uc1601.xml -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1601/uc1601_single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1601/uc1601_single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1601/uc1601_single/example/UC1601Dispaly/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1701/coide_gen_nuc1xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/UC1701/coide_gen_nuc1xx.bat -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1701/doc/device/uc1701.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Character/UC1701/doc/device/uc1701.xml -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1701/uc1701_single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Character/UC1701/uc1701_single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Graphic/SSD1298/SSD1298_Single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/LCD_Graphic/SSD1298/SSD1298_Single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Graphic/SSD1298/SSD1298_Single/example/SSD1298Dispaly/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/LCD_Graphic/SSD1298/doc/device/SSD1298.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LCD_Graphic/SSD1298/doc/device/SSD1298.xml -------------------------------------------------------------------------------- /CoX/Driver/LED/LED_3COLOR/doc/device/LED_3COLOR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LED/LED_3COLOR/doc/device/LED_3COLOR.xml -------------------------------------------------------------------------------- /CoX/Driver/LED/MAX7219/MAX7219_Driver/doc/gen/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LED/MAX7219/MAX7219_Driver/doc/gen/gen.bat -------------------------------------------------------------------------------- /CoX/Driver/LED/MAX7219/MAX7219_Driver/lib/MAX7219.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LED/MAX7219/MAX7219_Driver/lib/MAX7219.c -------------------------------------------------------------------------------- /CoX/Driver/LED/MAX7219/MAX7219_Driver/lib/MAX7219.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LED/MAX7219/MAX7219_Driver/lib/MAX7219.h -------------------------------------------------------------------------------- /CoX/Driver/LED/MAX7219/doc/device/MAX7219.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/LED/MAX7219/doc/device/MAX7219.xml -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ARTSCHIP/M24LCxx/M24LCxx_Single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ARTSCHIP/M24LCxx/M24LCxx_Single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ARTSCHIP/M24LCxx/M24LCxx_Single/example/EEPROM_ReadWrite/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ARTSCHIP/M24LCxx/M24LCxx_Single/example/EEPROM_ReadWrite/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_Holtek/HT24Cxx/HT24Cxx_Single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_Holtek/HT24Cxx/HT24Cxx_Single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_Holtek/HT24Cxx/HT24Cxx_Single/example/EEPROM_ReadWrite/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_Holtek/HT24Cxx/HT24Cxx_Single/example/EEPROM_ReadWrite/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_Holtek/HT24Cxx/HT24Cxx_Single/example/EEPROM_ReadWrite/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_Holtek/HT24Cxx/HT24Cxx_Single/test/suite1/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_NUC/24LC64/24LC64_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_NUC/24LC64/24LC64_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_NUC/24LC64/24LC64_Driver/example/EEPROM_ReadWrite/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ST/M24Cxx/M24Cxx_Single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ST/M24Cxx/M24Cxx_Single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ST/M24Cxx/M24Cxx_Single/example/EEPROM_ReadWrite/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ST/M24Cxx/M24Cxx_Single/example/EEPROM_ReadWrite/ewarm/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ST/M24Cxx/M24Cxx_Single/example/EEPROM_ReadWrite/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ST/M24Cxx/M24Cxx_Single/test/suite1/ewarm/main.cpp: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/doc/gen/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/doc/gen/gen.bat -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/lib/CAT93Cx6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/lib/CAT93Cx6.c -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/lib/CAT93Cx6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Memory_EEPROM_ZLG/CAT93Cx6/lib/CAT93Cx6.h -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ZLG/coide_gen_LM3S9B96.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Memory_EEPROM_ZLG/coide_gen_LM3S9B96.bat -------------------------------------------------------------------------------- /CoX/Driver/Memory_EEPROM_ZLG/doc/device/CAT93Cx6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Memory_EEPROM_ZLG/doc/device/CAT93Cx6.xml -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT25FS0x/AT25FS0x_Single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT25FS0x/AT25FS0x_Single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT25FS0x/AT25FS0x_Single/example/Flash_ReadWrite/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT25FS0x/AT25FS0x_Single/example/Flash_ReadWrite/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT25FS0x/AT25FS0x_Single/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DB161/AT45DB161_Single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DB161/AT45DB161_Single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DB161/AT45DB161_Single/example/Flash_Operation/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DB161/AT45DB161_Single/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DBxxxD/AT45DBxxxD_Single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DBxxxD/AT45DBxxxD_Single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DBxxxD/AT45DBxxxD_Single/example/Flash_Operation/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Atmel/AT45DBxxxD/AT45DBxxxD_Single/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_SST/SST25VFxx/SST25VFxx_single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | *.db -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_SST/SST25VFxx/SST25VFxx_single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_ST/M25Pxx/M25Pxx_single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_ST/M25Pxx/M25Pxx_single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_ST/M25Pxx/M25Pxx_single/example/Flash_ReadWrite/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Winbond/W25X/W25X_SPI_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Winbond/W25X/W25X_SPI_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Winbond/W25X/W25X_SPI_Driver/example/W25Xxx_Data_Read_Write/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_Flash_Winbond/W25X/W25X_SPI_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_NandFlash/NandFlash/NandFlash_GPIO_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_SDCard/SDCard/SDCard_SPI_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Memory_SDCard/SDCard/SDCard_SPI_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_SDCard/SDCard/SDCard_SPI_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Memory_SDCard/SDCard/coide_gen_nuc1xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Memory_SDCard/SDCard/coide_gen_nuc1xx.bat -------------------------------------------------------------------------------- /CoX/Driver/Memory_SDCard/SDCard/doc/device/SDCard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Memory_SDCard/SDCard/doc/device/SDCard.xml -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/ADXL345/Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/ADXL345/Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/ADXL345/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Accelerometer/ADXL345/ReadMe.txt -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/LIS302DL/Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/LIS302DL/Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/LIS302DL/Driver/example/ReadAccData/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/LIS302DL/Driver/example/SingleClick/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/LIS302DL/Driver/example/WakeUp/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/LIS302DL/Driver/test/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/LIS302DL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Accelerometer/LIS302DL/ReadMe.txt -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA7455/Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA7455/Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA7455/Driver/example/Motion detect/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA7455/Driver/example/ReadAccData/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA7455/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Accelerometer/MMA7455/ReadMe.txt -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA8451/Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA8451/Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Accelerometer/MMA8451/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Accelerometer/MMA8451/ReadMe.txt -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Digital_Compass/HMC5883L/Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Digital_Compass/HMC5883L/Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Digital_Compass/HMC5883L/Driver/example/ReadData/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Digital_Compass/HMC5883L/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Digital_Compass/HMC5883L/ReadMe.txt -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Distance/HC-SR04/HC-SR04_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Distance/HC-SR04/HC-SR04_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Light_ROHM/BH1750FVI/BH1750FVI_I2C_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Light_ROHM/BH1750FVI/BH1750FVI_I2C_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Light_ROHM/BH1750FVI/BH1750FVI_I2C_Driver/example/BH1750FVI_Temp_Read/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Light_ROHM/BH1750FVI/BH1750FVI_I2C_Driver/example/BH1750FVI_Temp_Read/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Light_ROHM/BH1750FVI/BH1750FVI_I2C_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Light_ROHM/BH1750FVI/BH1750FVI_I2C_Driver/test/suite1/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/coide_gen_M0516LBN.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/coide_gen_M0516LBN.bat -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/doc/device/Dot_Matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/doc/device/Dot_Matrix.xml -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/matrix/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/matrix/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/doc/gen/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/matrix/doc/gen/gen.bat -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/example/Matrix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/matrix/example/Matrix/main.c -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/lib/Dot_Matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/matrix/lib/Dot_Matrix.c -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/lib/Dot_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/matrix/lib/Dot_Matrix.h -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Matrix/matrix/lib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Matrix/matrix/lib/font.h -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/PTC08_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/PTC08_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/PTC08_Driver/example/example1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/PTC08_Driver/example/example1/CoIDE/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/PTC08_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/PTC08_Driver/test/suite1/coide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Test/ 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | resource/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Photo/PTC08/doc/device/PTC08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Photo/PTC08/doc/device/PTC08.xml -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Pressure_BOSCH/BMPx8x/BMPx8x_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Pressure_BOSCH/BMPx8x/BMPx8x_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7415/AD7415_I2C_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7415/AD7415_I2C_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7415/AD7415_I2C_Driver/example/ad7415TempGet/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7415/AD7415_I2C_Driver/example/ad7415TempGet/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7415/AD7415_I2C_Driver/test/suit1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7415/AD7415_I2C_Driver/test/suit1/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7417/AD7417_I2C_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7417/AD7417_I2C_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/AD7417/AD7417_I2C_Driver/test/suit1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT7301/ADT7301_SPI_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT7301/ADT7301_SPI_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT7301/ADT7301_SPI_Driver/example/ADT7301_Temp_Read/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT7301/ADT7301_SPI_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT75/Sensor_Temp_ADT75_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT75/Sensor_Temp_ADT75_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT75/Sensor_Temp_ADT75_Driver/example/adt75OneShotconvert/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT75/Sensor_Temp_ADT75_Driver/test/suit1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT75/coide_gen_ADT75.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Temp_ADI/ADT75/coide_gen_ADT75.bat -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ADI/ADT75/doc/device/ADT75.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Temp_ADI/ADT75/doc/device/ADT75.xml -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Maxim/DS18B20/DS18B20_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Maxim/DS18B20/DS18B20_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Maxim/DS18B20/DS18B20_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Maxim/DS18B20/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | resource/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC72/TC72_SPI_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC72/TC72_SPI_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC72/TC72_SPI_Driver/example/TC72_Temp_Read/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC72/TC72_SPI_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC74/TC74_I2C_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC77/TC77_SPI_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC77/TC77_SPI_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC77/TC77_SPI_Driver/example/TC77_Temp_Read/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TC77/TC77_SPI_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_Microchip/TCN75/TCN75_I2C_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ST/STLM75/STLM75_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ST/STLM75/STLM75_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ST/STLM75/STLM75_Driver/example/example1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ST/STLM75/STLM75_Driver/test/suite1/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ST/STLM75/coide_gen_nuc1xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/Sensor_Temp_ST/STLM75/coide_gen_nuc1xx.bat -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Temp_ST/STLM75/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | resource/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Touch_ST/STMPE811/STMPE811_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Touch_ST/STMPE811/STMPE811_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Touch_ST/STMPE811/STMPE811_Driver/example/Touch_example/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide_gen/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Touch_ST/STMPE811/STMPE811_Driver/example/Touch_example/ewarm/main.c: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Touch_ST/STMPE811/STMPE811_Driver/example/Touch_example/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Touch_ST/STMPE811/STMPE811_Driver/test/suite1/ewarm/main.cpp: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Driver/Sensor_Touch_ST/STMPE811/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | resource/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Driver/Seven_Segment/Seven_Segment/Seven_Segment/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Seven_Segment/Seven_Segment/Seven_Segment/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/Seven_Segment/Seven_Segment/Seven_Segment/test/suite1/ewarm/main.cpp: -------------------------------------------------------------------------------- 1 | 2 | int main() 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /CoX/Driver/Seven_Segment/Seven_Segment/Seven_Segment/test/suite1/ewarm/suite1.STM32F1xxCustomSfr.sfr: -------------------------------------------------------------------------------- 1 | [Sfr] 2 | 3 | 4 | [SfrGroupInfo] -------------------------------------------------------------------------------- /CoX/Driver/Shield_Arduino_WirelessShield_SD/Arduino_Wireless_SD/Wireless_SD_single/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Shield_Arduino_WirelessShield_SD/Arduino_Wireless_SD/Wireless_SD_single/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/USB_Controller_WCH/CH376/CH376_Driver/example/Udisk_ReadWrite/src/Example.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoX/Driver/Wireless_Infrared_LFN/VS1838B/VS1838B_Driver/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Driver/Wireless_Infrared_LFN/VS1838B/VS1838B_Driver/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/doc/doxygen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ 3 | -------------------------------------------------------------------------------- /CoX/Driver/doc/doxygen/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Driver/doc/doxygen/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/doc/doxygen/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Driver/doc/doxygen/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/doc/doxygen/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Driver/doc/doxygen/gen/doxygen_doc_gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/doc/doxygen/gen/doxygen_doc_gen.bat -------------------------------------------------------------------------------- /CoX/Driver/doc/doxygen/txt/device_group_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/doc/doxygen/txt/device_group_en.txt -------------------------------------------------------------------------------- /CoX/Driver/wireless/xbee/doc/device/xbee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/wireless/xbee/doc/device/xbee.xml -------------------------------------------------------------------------------- /CoX/Driver/wireless/xbee/xbee_Driver/doc/gen/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/wireless/xbee/xbee_Driver/doc/gen/gen.bat -------------------------------------------------------------------------------- /CoX/Driver/wireless/xbee/xbee_Driver/lib/xbee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/wireless/xbee/xbee_Driver/lib/xbee.c -------------------------------------------------------------------------------- /CoX/Driver/wireless/xbee/xbee_Driver/lib/xbee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Driver/wireless/xbee/xbee_Driver/lib/xbee.h -------------------------------------------------------------------------------- /CoX/Shield/AdafruitIndustries/Logger Shield/delete: -------------------------------------------------------------------------------- 1 | delete after new file added -------------------------------------------------------------------------------- /CoX/Shield/AdafruitIndustries/Motor_Shield/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Shield/AdafruitIndustries/Motor_Shield/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Shield/AdafruitIndustries/Motor_Shield/example/motor_stepping/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Shield/AdafruitIndustries/Motor_Shield/example/motor_stepping/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Shield/Arduino/Motor_Shield/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Shield/Arduino/Motor_Shield/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Shield/Arduino/Motor_Shield/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/Motor_Shield/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Shield/Arduino/Motor_Shield/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/Motor_Shield/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Shield/Arduino/Motor_Shield/example/motor_stepping/CoIDE/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | suite1_M0516/ 3 | -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/doc/WiFi_Shield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/doc/WiFi_Shield.xml -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/README -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/WiFi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/WiFi.c -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/WiFi.h -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/WiFiClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/WiFiClient.c -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/WiFiClient.h -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/server_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/server_drv.c -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/server_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/server_drv.h -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/spi_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/spi_drv.c -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/spi_drv.h -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/wifi_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/wifi_drv.c -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/wifi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/wifi_drv.h -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/wifi_spi.h -------------------------------------------------------------------------------- /CoX/Shield/Arduino/WiFi_Shield/lib/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/Arduino/WiFi_Shield/lib/wl_definitions.h -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/doc/images/lcd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/doc/images/lcd.jpg -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/doc/images/ldc1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/doc/images/ldc1.gif -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/doc/txt/lcdshield_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/doc/txt/lcdshield_en.txt -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/example/LEDBlink/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | coide/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/example/LEDBlink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/example/LEDBlink/main.c -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/example/LEDBlink/rvmdk/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | lst/ 3 | obj/ 4 | *.dep 5 | *.uvgui.* 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/lib/LCDKeypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/lib/LCDKeypad.c -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/lib/LCDShield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/lib/LCDShield.h -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/lib/hd44780.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/lib/hd44780.c -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/lib/hd44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/lib/hd44780.h -------------------------------------------------------------------------------- /CoX/Shield/DFRobot/LCDShield/lib/hw_hd44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/DFRobot/LCDShield/lib/hw_hd44780.h -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Motor_Shield/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/TinkerKIT/Motor_Shield/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Motor_Shield/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/TinkerKIT/Motor_Shield/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Motor_Shield/lib/MotorShield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/TinkerKIT/Motor_Shield/lib/MotorShield.c -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Motor_Shield/lib/MotorShield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/TinkerKIT/Motor_Shield/lib/MotorShield.h -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Sensor_Shield/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Sensor_Shield/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Sensor_Shield/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/TinkerKIT/Sensor_Shield/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Sensor_Shield/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/TinkerKIT/Sensor_Shield/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Shield/TinkerKIT/Sensor_Shield/example/sensor/CoIDE/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | suite1_M0516/ 3 | -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/GPS_Driver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/doc/GPS_Driver.xml -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/gen/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/doc/gen/clean.bat -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/doc/gen/cox_en.cfg -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/gen/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/doc/gen/gen.bat -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/images/GPS_Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/doc/images/GPS_Pin.png -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/doc/txt/GPS_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/doc/txt/GPS_en.txt -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/lib/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/lib/gps.c -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/lib/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/GPS/lib/gps.h -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/GPS/test/suite1/CoIDE/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | suite1_M0516/ 3 | -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/GPS/doc/device/GPS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/Shield/iteadstudio/GPS/doc/device/GPS.xml -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/Sensor_Matrix/matrix/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | en/ -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/Sensor_Matrix/matrix/doc/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.log 3 | -------------------------------------------------------------------------------- /CoX/Shield/iteadstudio/Sensor_Matrix/matrix/test/suite1/CoIDE/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | suite1_M0516/ 3 | -------------------------------------------------------------------------------- /CoX/resource/cox_coide_empty_project_nuc1xx/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/cox_coide_empty_project_nuc1xx/.cproject -------------------------------------------------------------------------------- /CoX/resource/cox_coide_empty_project_nuc1xx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/cox_coide_empty_project_nuc1xx/.project -------------------------------------------------------------------------------- /CoX/resource/cox_coide_empty_project_nuc1xx/.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/cox_coide_empty_project_nuc1xx/.xml -------------------------------------------------------------------------------- /CoX/resource/cox_coide_empty_project_nuc1xx/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/cox_coide_empty_project_nuc1xx/build.xml -------------------------------------------------------------------------------- /CoX/resource/cox_coide_empty_project_nuc1xx/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/cox_coide_empty_project_nuc1xx/link.ld -------------------------------------------------------------------------------- /CoX/resource/cox_coide_empty_project_nuc1xx/memory.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/cox_coide_empty_project_nuc1xx/memory.ld -------------------------------------------------------------------------------- /CoX/resource/testframe/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/testframe/main.c -------------------------------------------------------------------------------- /CoX/resource/testframe/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/testframe/test.c -------------------------------------------------------------------------------- /CoX/resource/testframe/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/testframe/test.h -------------------------------------------------------------------------------- /CoX/resource/testframe/testport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/CoX/resource/testframe/testport.c -------------------------------------------------------------------------------- /Document/coding-standard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/Document/coding-standard.txt -------------------------------------------------------------------------------- /Document/contribution-howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/Document/contribution-howto.txt -------------------------------------------------------------------------------- /Document/doxygen-document-howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/Document/doxygen-document-howto.txt -------------------------------------------------------------------------------- /Document/test-howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/Document/test-howto.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/README -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/clean.bat -------------------------------------------------------------------------------- /resource/coide_empty_project/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/coide_empty_project/.cproject -------------------------------------------------------------------------------- /resource/coide_empty_project/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/coide_empty_project/.project -------------------------------------------------------------------------------- /resource/coide_empty_project/coide_gen.cob: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/doxygen/css/UpLevel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/css/UpLevel.gif -------------------------------------------------------------------------------- /resource/doxygen/css/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/css/doxygen.css -------------------------------------------------------------------------------- /resource/doxygen/css/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/css/ftv2splitbar.png -------------------------------------------------------------------------------- /resource/doxygen/css/menubg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/css/menubg.gif -------------------------------------------------------------------------------- /resource/doxygen/css/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/css/navtree.css -------------------------------------------------------------------------------- /resource/doxygen/css/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/css/search/search.css -------------------------------------------------------------------------------- /resource/doxygen/css/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/css/tabs.css -------------------------------------------------------------------------------- /resource/doxygen/gen/coocox_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/gen/coocox_logo.png -------------------------------------------------------------------------------- /resource/doxygen/gen/cox_en.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/gen/cox_en.cfg -------------------------------------------------------------------------------- /resource/doxygen/gen/cox_foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/gen/cox_foot.html -------------------------------------------------------------------------------- /resource/doxygen/gen/cox_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/doxygen/gen/cox_head.html -------------------------------------------------------------------------------- /resource/test/testcase/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/test/testcase/test1.c -------------------------------------------------------------------------------- /resource/test/testcase/testcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/test/testcase/testcase.c -------------------------------------------------------------------------------- /resource/test/testcase/testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/test/testcase/testcase.h -------------------------------------------------------------------------------- /resource/test/testframe/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/test/testframe/main.c -------------------------------------------------------------------------------- /resource/test/testframe/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/test/testframe/test.c -------------------------------------------------------------------------------- /resource/test/testframe/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/test/testframe/test.h -------------------------------------------------------------------------------- /resource/test/testframe/testport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/test/testframe/testport.c -------------------------------------------------------------------------------- /resource/tools/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coocox/cox/HEAD/resource/tools/7za.exe --------------------------------------------------------------------------------