实例介绍
仅供参考
【实例截图】
【核心代码】
16359647541430776469.rar
└── K60+diangui
├── 2016K60+电轨接线说明new.docx
├── build
│ ├── config files
│ │ ├── 128KB_Pflash_128KB_Dflash.icf
│ │ ├── 128KB_Pflash.icf
│ │ ├── 128KB_Ram.icf
│ │ ├── 256KB_Pflash_256KB_Dflash.icf
│ │ ├── 256KB_Pflash.icf
│ │ ├── 32KB_Ram.icf
│ │ ├── 512KB_Pflash.icf
│ │ ├── 64KB_Pflash_64KB_Dflash.icf
│ │ ├── 64KB_Ram.icf
│ │ └── LPLD_K60DN512_FLASH.icf
│ └── iar.h
├── Debug
│ ├── Exe
│ │ ├── DEMOK_Kinetis_OV7620_DMA_Example.hex
│ │ ├── DEMOK_Kinetis_OV7620_DMA_Example.out
│ │ └── DEMOK_Kinetis_OV7620_DMA_Example.sim
│ ├── List
│ └── Obj
│ ├── adc.o
│ ├── adc.pbi
│ ├── adc.pbi.cout
│ ├── alloc.o
│ ├── alloc.pbi
│ ├── alloc.pbi.cout
│ ├── arm_cm4.o
│ ├── arm_cm4.pbi
│ ├── arm_cm4.pbi.cout
│ ├── assert.o
│ ├── assert.pbi
│ ├── assert.pbi.cout
│ ├── CCD.o
│ ├── CCD.pbi.cout
│ ├── crt0.o
│ ├── delay.o
│ ├── delay.pbi
│ ├── delay.pbi.cout
│ ├── DEMOK_Kinetis_OV7620_DMA_Example.pbd
│ ├── DEMOK_Kinetis_OV7620_DMA_Example.pbd.browse
│ ├── dma.o
│ ├── dma.pbi
│ ├── dma.pbi.cout
│ ├── exti.o
│ ├── exti.pbi
│ ├── exti.pbi.cout
│ ├── FTM.o
│ ├── FTM.pbi
│ ├── FTM.pbi.cout
│ ├── gpio.o
│ ├── gpio.pbi
│ ├── gpio.pbi.cout
│ ├── io.o
│ ├── io.pbi
│ ├── io.pbi.cout
│ ├── isr.o
│ ├── isr.pbi
│ ├── isr.pbi.cout
│ ├── lptmr.o
│ ├── lptmr.pbi
│ ├── lptmr.pbi.cout
│ ├── LQ12864.o
│ ├── LQ12864.pbi
│ ├── LQ12864.pbi.cout
│ ├── main.o
│ ├── main.pbi
│ ├── main.pbi.cout
│ ├── mcg.o
│ ├── mcg.pbi
│ ├── mcg.pbi.cout
│ ├── memtest.o
│ ├── memtest.pbi
│ ├── memtest.pbi.cout
│ ├── PIT.o
│ ├── PIT.pbi
│ ├── PIT.pbi.cout
│ ├── printf.o
│ ├── printf.pbi
│ ├── printf.pbi.cout
│ ├── queue.o
│ ├── queue.pbi
│ ├── queue.pbi.cout
│ ├── sccb.o
│ ├── sccb.pbi
│ ├── sccb.pbi.cout
│ ├── start.o
│ ├── start.pbi
│ ├── start.pbi.cout
│ ├── startup.o
│ ├── startup.pbi
│ ├── startup.pbi.cout
│ ├── stdlib.o
│ ├── stdlib.pbi
│ ├── stdlib.pbi.cout
│ ├── sysinit.o
│ ├── sysinit.pbi
│ ├── sysinit.pbi.cout
│ ├── uart.o
│ ├── uart.pbi
│ ├── uart.pbi.cout
│ ├── uif.o
│ ├── uif.pbi
│ ├── uif.pbi.cout
│ ├── vectors.o
│ ├── vectors.pbi
│ ├── vectors.pbi.cout
│ ├── wdog.o
│ ├── wdog.pbi
│ └── wdog.pbi.cout
├── DEMOK_Kinetis_OV7620_DMA_Example.dep
├── DEMOK_Kinetis_OV7620_DMA_Example.ewd
├── DEMOK_Kinetis_OV7620_DMA_Example.ewp
├── DEMOK_Kinetis_OV7620_DMA_Example.eww
├── EW265.tmp.c
├── settings
│ ├── DEMOK_Kinetis_OV7620_DMA_Example.cspy.bat
│ ├── DEMOK_Kinetis_OV7620_DMA_Example.dbgdt
│ ├── DEMOK_Kinetis_OV7620_DMA_Example.Debug.cspy.bat
│ ├── DEMOK_Kinetis_OV7620_DMA_Example_Debug.jlink
│ ├── DEMOK_Kinetis_OV7620_DMA_Example.dni
│ ├── DEMOK_Kinetis_OV7620_DMA_Example.wsdt
│ └── DEMOK_Kinetis_OV7620_DMA_Example.wspos
├── src
│ ├── common
│ │ ├── alloc.c
│ │ ├── assert.c
│ │ ├── assert.h
│ │ ├── common.h
│ │ ├── io.c
│ │ ├── io.h
│ │ ├── memtest.c
│ │ ├── memtest.h
│ │ ├── printf.c
│ │ ├── queue.c
│ │ ├── queue.h
│ │ ├── startup.c
│ │ ├── startup.h
│ │ ├── stdlib.c
│ │ ├── stdlib.h
│ │ ├── uif.c
│ │ └── uif.h
│ ├── cpu
│ │ ├── arm_cm4.c
│ │ ├── arm_cm4.h
│ │ ├── crt0.s
│ │ ├── cw_crt0.s
│ │ ├── dma_channels.h
│ │ ├── headers
│ │ │ ├── MK10DZ10.h
│ │ │ ├── MK20DZ10.h
│ │ │ ├── MK30DZ10.h
│ │ │ ├── MK40DZ10.h
│ │ │ ├── MK50DZ10.h
│ │ │ ├── MK51DZ10.h
│ │ │ ├── MK52DZ10.h
│ │ │ ├── MK53DZ10.h
│ │ │ └── MK60DZ10.h
│ │ ├── start.c
│ │ ├── start.h
│ │ ├── sysinit.c
│ │ ├── sysinit.h
│ │ ├── vectors.c
│ │ └── vectors.h
│ ├── drivers
│ │ ├── adc
│ │ │ ├── adc.c
│ │ │ ├── adc_cfg.h
│ │ │ └── adc.h
│ │ ├── adc16
│ │ │ ├── adc16.c
│ │ │ └── adc16.h
│ │ ├── delay
│ │ │ ├── delay.c
│ │ │ ├── delay.h
│ │ │ └── delay.h.bak
│ │ ├── dma
│ │ │ ├── dma.c
│ │ │ └── dma.h
│ │ ├── drivers_cfg.h
│ │ ├── enet
│ │ │ ├── enet.c
│ │ │ ├── enet.h
│ │ │ ├── eth.h
│ │ │ ├── eth_phy.c
│ │ │ ├── eth_phy.h
│ │ │ ├── mii.c
│ │ │ ├── mii.h
│ │ │ ├── nbuf.c
│ │ │ └── nbuf.h
│ │ ├── exti
│ │ │ ├── exti.c
│ │ │ └── exti.h
│ │ ├── FTM
│ │ │ ├── FTM.c
│ │ │ └── FTM.h
│ │ ├── gpio
│ │ │ ├── gpio.c
│ │ │ ├── gpio_cfg.h
│ │ │ └── gpio.h
│ │ ├── lptmr
│ │ │ ├── lptmr.c
│ │ │ └── lptmr.h
│ │ ├── mcg
│ │ │ ├── Fire_kinetis_MCG_CFG.h
│ │ │ ├── mcg.c
│ │ │ ├── mcg_cfg.h
│ │ │ └── mcg.h
│ │ ├── OLED
│ │ │ ├── LQ12864.c
│ │ │ └── LQ12864.h
│ │ ├── PIT
│ │ │ ├── PIT.c
│ │ │ └── PIT.h
│ │ ├── pmc
│ │ │ ├── pmc.c
│ │ │ └── pmc.h
│ │ ├── road
│ │ │ ├── road.c
│ │ │ └── road.h
│ │ ├── rtc
│ │ │ ├── rtc.c
│ │ │ └── rtc.h
│ │ ├── sccb
│ │ │ ├── sccb.c
│ │ │ └── sccb.h
│ │ ├── uart
│ │ │ ├── uart.c
│ │ │ └── uart.h
│ │ └── wdog
│ │ ├── wdog.c
│ │ └── wdog.h
│ ├── LIB
│ │ ├── CMSIS
│ │ │ ├── arm_common_tables.h
│ │ │ ├── arm_math.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm4_simd.h
│ │ │ ├── core_cmFunc.h
│ │ │ ├── core_cmInstr.h
│ │ │ └── iar_cortexM4l_math.a
│ │ └── FatFs
│ │ ├── 00readme.txt
│ │ ├── diskio.c
│ │ ├── diskio.h
│ │ ├── FatFs R0.09 官方代码带中文注解.7z
│ │ ├── ff.c
│ │ ├── ffconf.h
│ │ ├── ff.h
│ │ ├── integer.h
│ │ └── option
│ │ ├── cc932.c
│ │ ├── cc936.c
│ │ ├── cc949.c
│ │ ├── cc950.c
│ │ ├── ccsbcs.c
│ │ └── syscall.c
│ ├── platforms
│ │ ├── k40_tower.h
│ │ ├── k53_tower.h
│ │ ├── k60_fire.h
│ │ └── k60_tower.h
│ └── projects
│ ├── adc_demo
│ │ ├── adc_demo.c
│ │ ├── adc_demo.h
│ │ ├── dsp_cw.s
│ │ ├── dsp.h
│ │ ├── dsp.s
│ │ ├── hw_trig_test.c
│ │ ├── hw_trig_test.h
│ │ └── isr.h
│ ├── can_loopback_node
│ │ ├── can.c
│ │ ├── can_config.h
│ │ ├── can.h
│ │ ├── can_loopback_node.c
│ │ ├── isr.h
│ │ └── kinetis_flexcan.h
│ ├── crc_demo
│ │ ├── crc.c
│ │ ├── crc_demo.c
│ │ ├── crc.h
│ │ └── isr.h
│ ├── dac12bit_demo
│ │ ├── dac12bit.c
│ │ ├── dac12bit_demo.c
│ │ ├── dac12bit.h
│ │ └── isr.h
│ ├── DEMOK_Kinetis_demo_Example
│ │ ├── CCD.c
│ │ ├── CCD.h
│ │ ├── isr.c
│ │ └── main.c
│ ├── flexbus
│ │ ├── flexbus.c
│ │ └── isr.h
│ ├── flexmem_demo
│ │ ├── flexmem_demo.c
│ │ ├── flexmem_demo.h
│ │ └── isr.h
│ ├── freertos_lwip
│ │ ├── common.h
│ │ ├── FreeRTOS
│ │ │ ├── Demo
│ │ │ │ └── CORTEX_KINETIS_IAR
│ │ │ │ ├── FreeRTOSConfig.h
│ │ │ │ ├── include
│ │ │ │ │ ├── HTTPDemo.h
│ │ │ │ │ └── throughput_test.h
│ │ │ │ ├── lwipWebServer
│ │ │ │ │ ├── fs
│ │ │ │ │ │ └── WS1
│ │ │ │ │ │ ├── 404.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── logo.gif
│ │ │ │ │ └── HTTPDemo.c
│ │ │ │ ├── ParTest.c
│ │ │ │ ├── partest.h
│ │ │ │ └── Throughput
│ │ │ │ └── throughput_test.c
│ │ │ ├── License
│ │ │ │ └── license.txt
│ │ │ └── Source
│ │ │ ├── croutine.c
│ │ │ ├── include
│ │ │ │ ├── croutine.h
│ │ │ │ ├── FreeRTOS.h
│ │ │ │ ├── list.h
│ │ │ │ ├── mpu_wrappers.h
│ │ │ │ ├── portable.h
│ │ │ │ ├── projdefs.h
│ │ │ │ ├── queue.h
│ │ │ │ ├── semphr.h
│ │ │ │ ├── StackMacros.h
│ │ │ │ └── task.h
│ │ │ ├── list.c
│ │ │ ├── portable
│ │ │ │ ├── IAR
│ │ │ │ │ └── ARM_CM4
│ │ │ │ │ ├── portasm.s
│ │ │ │ │ ├── port.c
│ │ │ │ │ └── portmacro.h
│ │ │ │ ├── MemMang
│ │ │ │ │ ├── heap_1.c
│ │ │ │ │ ├── heap_2.c
│ │ │ │ │ └── heap_3.c
│ │ │ │ └── readme.txt
│ │ │ ├── queue.c
│ │ │ ├── readme.txt
│ │ │ └── tasks.c
│ │ ├── FreeRTOS+lwIP
│ │ │ ├── arch
│ │ │ │ ├── cc.h
│ │ │ │ ├── cpu.h
│ │ │ │ ├── lwip_errno.h
│ │ │ │ ├── perf.h
│ │ │ │ └── sys_arch.h
│ │ │ ├── etharp.c
│ │ │ ├── ethernetif.c
│ │ │ ├── lwip
│ │ │ │ └── lwipopts.h
│ │ │ └── sys_arch.c
│ │ ├── isr.h
│ │ ├── lwip-1.3.2
│ │ │ ├── CHANGELOG
│ │ │ ├── COPYING
│ │ │ ├── doc
│ │ │ │ ├── contrib.txt
│ │ │ │ ├── FILES
│ │ │ │ ├── rawapi.txt
│ │ │ │ ├── savannah.txt
│ │ │ │ ├── snmp_agent.txt
│ │ │ │ └── sys_arch.txt
│ │ │ ├── FILES
│ │ │ ├── README
│ │ │ ├── src
│ │ │ │ ├── api
│ │ │ │ │ ├── api_lib.c
│ │ │ │ │ ├── api_msg.c
│ │ │ │ │ ├── err.c
│ │ │ │ │ ├── netbuf.c
│ │ │ │ │ ├── netdb.c
│ │ │ │ │ ├── netifapi.c
│ │ │ │ │ ├── sockets.c
│ │ │ │ │ └── tcpip.c
│ │ │ │ ├── core
│ │ │ │ │ ├── dhcp.c
│ │ │ │ │ ├── dns.c
│ │ │ │ │ ├── init.c
│ │ │ │ │ ├── ipv4
│ │ │ │ │ │ ├── autoip.c
│ │ │ │ │ │ ├── icmp.c
│ │ │ │ │ │ ├── igmp.c
│ │ │ │ │ │ ├── inet.c
│ │ │ │ │ │ ├── inet_chksum.c
│ │ │ │ │ │ ├── ip_addr.c
│ │ │ │ │ │ ├── ip.c
│ │ │ │ │ │ └── ip_frag.c
│ │ │ │ │ ├── ipv6
│ │ │ │ │ │ ├── icmp6.c
│ │ │ │ │ │ ├── inet6.c
│ │ │ │ │ │ ├── ip6_addr.c
│ │ │ │ │ │ ├── ip6.c
│ │ │ │ │ │ └── README
│ │ │ │ │ ├── mem.c
│ │ │ │ │ ├── memp.c
│ │ │ │ │ ├── netif.c
│ │ │ │ │ ├── pbuf.c
│ │ │ │ │ ├── raw.c
│ │ │ │ │ ├── snmp
│ │ │ │ │ │ ├── asn1_dec.c
│ │ │ │ │ │ ├── asn1_enc.c
│ │ │ │ │ │ ├── mib2.c
│ │ │ │ │ │ ├── mib_structs.c
│ │ │ │ │ │ ├── msg_in.c
│ │ │ │ │ │ └── msg_out.c
│ │ │ │ │ ├── stats.c
│ │ │ │ │ ├── sys.c
│ │ │ │ │ ├── tcp.c
│ │ │ │ │ ├── tcp_in.c
│ │ │ │ │ ├── tcp_out.c
│ │ │ │ │ └── udp.c
│ │ │ │ ├── FILES
│ │ │ │ ├── include
│ │ │ │ │ ├── ipv4
│ │ │ │ │ │ └── lwip
│ │ │ │ │ │ ├── autoip.h
│ │ │ │ │ │ ├── icmp.h
│ │ │ │ │ │ ├── igmp.h
│ │ │ │ │ │ ├── inet_chksum.h
│ │ │ │ │ │ ├── inet.h
│ │ │ │ │ │ ├── ip_addr.h
│ │ │ │ │ │ ├── ip_frag.h
│ │ │ │ │ │ └── ip.h
│ │ │ │ │ ├── ipv6
│ │ │ │ │ │ └── lwip
│ │ │ │ │ │ ├── icmp.h
│ │ │ │ │ │ ├── inet.h
│ │ │ │ │ │ ├── ip_addr.h
│ │ │ │ │ │ └── ip.h
│ │ │ │ │ ├── lwip
│ │ │ │ │ │ ├── api.h
│ │ │ │ │ │ ├── api_msg.h
│ │ │ │ │ │ ├── arch.h
│ │ │ │ │ │ ├── debug.h
│ │ │ │ │ │ ├── def.h
│ │ │ │ │ │ ├── dhcp.h
│ │ │ │ │ │ ├── dns.h
│ │ │ │ │ │ ├── err.h
│ │ │ │ │ │ ├── init.h
│ │ │ │ │ │ ├── mem.h
│ │ │ │ │ │ ├── memp.h
│ │ │ │ │ │ ├── memp_std.h
│ │ │ │ │ │ ├── netbuf.h
│ │ │ │ │ │ ├── netdb.h
│ │ │ │ │ │ ├── netifapi.h
│ │ │ │ │ │ ├── netif.h
│ │ │ │ │ │ ├── opt.h
│ │ │ │ │ │ ├── pbuf.h
│ │ │ │ │ │ ├── raw.h
│ │ │ │ │ │ ├── sio.h
│ │ │ │ │ │ ├── snmp_asn1.h
│ │ │ │ │ │ ├── snmp.h
│ │ │ │ │ │ ├── snmp_msg.h
│ │ │ │ │ │ ├── snmp_structs.h
│ │ │ │ │ │ ├── sockets.h
│ │ │ │ │ │ ├── stats.h
│ │ │ │ │ │ ├── sys.h
│ │ │ │ │ │ ├── tcp.h
│ │ │ │ │ │ ├── tcpip.h
│ │ │ │ │ │ └── udp.h
│ │ │ │ │ └── netif
│ │ │ │ │ ├── etharp.h
│ │ │ │ │ ├── loopif.h
│ │ │ │ │ ├── ppp_oe.h
│ │ │ │ │ └── slipif.h
│ │ │ │ └── netif
│ │ │ │ ├── etharp.c
│ │ │ │ ├── ethernetif.c
│ │ │ │ ├── FILES
│ │ │ │ ├── loopif.c
│ │ │ │ ├── ppp
│ │ │ │ │ ├── auth.c
│ │ │ │ │ ├── auth.h
│ │ │ │ │ ├── chap.c
│ │ │ │ │ ├── chap.h
│ │ │ │ │ ├── chpms.c
│ │ │ │ │ ├── chpms.h
│ │ │ │ │ ├── fsm.c
│ │ │ │ │ ├── fsm.h
│ │ │ │ │ ├── ipcp.c
│ │ │ │ │ ├── ipcp.h
│ │ │ │ │ ├── lcp.c
│ │ │ │ │ ├── lcp.h
│ │ │ │ │ ├── magic.c
│ │ │ │ │ ├── magic.h
│ │ │ │ │ ├── md5.c
│ │ │ │ │ ├── md5.h
│ │ │ │ │ ├── pap.c
│ │ │ │ │ ├── pap.h
│ │ │ │ │ ├── ppp.c
│ │ │ │ │ ├── pppdebug.h
│ │ │ │ │ ├── ppp.h
│ │ │ │ │ ├── ppp_oe.c
│ │ │ │ │ ├── randm.c
│ │ │ │ │ ├── randm.h
│ │ │ │ │ ├── vjbsdhdr.h
│ │ │ │ │ ├── vj.c
│ │ │ │ │ └── vj.h
│ │ │ │ └── slipif.c
│ │ │ └── test
│ │ │ └── unit
│ │ │ ├── lwip_check.h
│ │ │ ├── lwip_unittests.c
│ │ │ ├── tcp
│ │ │ │ ├── tcp_helper.c
│ │ │ │ ├── tcp_helper.h
│ │ │ │ ├── test_tcp.c
│ │ │ │ ├── test_tcp.h
│ │ │ │ ├── test_tcp_oos.c
│ │ │ │ └── test_tcp_oos.h
│ │ │ └── udp
│ │ │ ├── test_udp.c
│ │ │ └── test_udp.h
│ │ ├── main.c
│ │ ├── startup.c
│ │ ├── startup.h
│ │ └── write.c
│ ├── freertos_uip
│ │ ├── common.h
│ │ ├── ENET_uip_driver
│ │ │ ├── enet_freertos.c
│ │ │ └── enet_freertos.h
│ │ ├── FreeRTOS
│ │ │ ├── Demo
│ │ │ │ └── CORTEX_KINETIS_IAR
│ │ │ │ ├── FreeRTOSConfig.h
│ │ │ │ ├── ParTest.c
│ │ │ │ ├── partest.h
│ │ │ │ └── webserver
│ │ │ │ ├── clock-arch.h
│ │ │ │ ├── httpd.c
│ │ │ │ ├── httpd-cgi.c
│ │ │ │ ├── httpd-cgi.h
│ │ │ │ ├── httpd-fs
│ │ │ │ │ ├── 404.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── index.shtml
│ │ │ │ │ ├── io.shtml
│ │ │ │ │ ├── stats.shtml
│ │ │ │ │ └── tcp.shtml
│ │ │ │ ├── httpd-fs.c
│ │ │ │ ├── httpd-fsdata.c
│ │ │ │ ├── httpd-fsdata.h
│ │ │ │ ├── httpd-fs.h
│ │ │ │ ├── httpd.h
│ │ │ │ ├── http-strings
│ │ │ │ ├── http-strings.c
│ │ │ │ ├── http-strings.h
│ │ │ │ ├── makefsdata
│ │ │ │ ├── makestrings
│ │ │ │ ├── pack_struct_end.h
│ │ │ │ ├── pack_struct_start.h
│ │ │ │ ├── uip-conf.h
│ │ │ │ ├── uIP_Task.c
│ │ │ │ └── webserver.h
│ │ │ ├── License
│ │ │ │ └── license.txt
│ │ │ └── Source
│ │ │ ├── croutine.c
│ │ │ ├── include
│ │ │ │ ├── croutine.h
│ │ │ │ ├── FreeRTOS.h
│ │ │ │ ├── list.h
│ │ │ │ ├── mpu_wrappers.h
│ │ │ │ ├── portable.h
│ │ │ │ ├── projdefs.h
│ │ │ │ ├── queue.h
│ │ │ │ ├── semphr.h
│ │ │ │ ├── StackMacros.h
│ │ │ │ └── task.h
│ │ │ ├── list.c
│ │ │ ├── portable
│ │ │ │ ├── IAR
│ │ │ │ │ └── ARM_CM4
│ │ │ │ │ ├── portasm.s
│ │ │ │ │ ├── port.c
│ │ │ │ │ └── portmacro.h
│ │ │ │ ├── MemMang
│ │ │ │ │ ├── heap_1.c
│ │ │ │ │ ├── heap_2.c
│ │ │ │ │ └── heap_3.c
│ │ │ │ └── readme.txt
│ │ │ ├── queue.c
│ │ │ ├── readme.txt
│ │ │ └── tasks.c
│ │ ├── isr.h
│ │ ├── main.c
│ │ ├── startup.c
│ │ ├── startup.h
│ │ ├── uip-1.0
│ │ │ ├── apps
│ │ │ │ ├── README
│ │ │ │ └── webserver
│ │ │ │ ├── httpd.c
│ │ │ │ ├── httpd-cgi.c
│ │ │ │ ├── httpd-cgi.h
│ │ │ │ ├── httpd-fs
│ │ │ │ │ ├── 404.html
│ │ │ │ │ ├── fade.png
│ │ │ │ │ ├── files.shtml
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── header.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── processes.shtml
│ │ │ │ │ ├── stats.shtml
│ │ │ │ │ ├── style.css
│ │ │ │ │ └── tcp.shtml
│ │ │ │ ├── httpd-fs.c
│ │ │ │ ├── httpd-fsdata.c
│ │ │ │ ├── httpd-fsdata.h
│ │ │ │ ├── httpd-fs.h
│ │ │ │ ├── httpd.h
│ │ │ │ ├── http-strings
│ │ │ │ ├── http-strings.c
│ │ │ │ ├── http-strings.h
│ │ │ │ ├── Makefile.webserver
│ │ │ │ ├── makefsdata
│ │ │ │ ├── makestrings
│ │ │ │ └── webserver.h
│ │ │ ├── README
│ │ │ ├── uip
│ │ │ │ ├── clock.h
│ │ │ │ ├── lc-addrlabels.h
│ │ │ │ ├── lc.h
│ │ │ │ ├── lc-switch.h
│ │ │ │ ├── Makefile.include
│ │ │ │ ├── psock.c
│ │ │ │ ├── psock.h
│ │ │ │ ├── pt.h
│ │ │ │ ├── timer.c
│ │ │ │ ├── timer.h
│ │ │ │ ├── uip_arch.h
│ │ │ │ ├── uip_arp.c
│ │ │ │ ├── uip_arp.h
│ │ │ │ ├── uip.c
│ │ │ │ ├── uip-fw.c
│ │ │ │ ├── uip-fw.h
│ │ │ │ ├── uip.h
│ │ │ │ ├── uiplib.c
│ │ │ │ ├── uiplib.h
│ │ │ │ ├── uip-neighbor.c
│ │ │ │ ├── uip-neighbor.h
│ │ │ │ ├── uipopt.h
│ │ │ │ ├── uip-split.c
│ │ │ │ └── uip-split.h
│ │ │ └── uip-1.0-changelog.txt
│ │ └── write.c
│ ├── gpio
│ │ ├── gpio_k40.c
│ │ ├── gpio_k53.c
│ │ ├── gpio_k60.c
│ │ └── isr.h
│ ├── hello_world
│ │ ├── hello_world.c
│ │ └── isr.h
│ ├── hscmp
│ │ ├── hscmp.c
│ │ └── isr.h
│ ├── i2c
│ │ ├── i2c_demo.c
│ │ ├── isr.h
│ │ ├── k40_i2c.c
│ │ ├── k40_i2c.h
│ │ ├── k53_i2c.c
│ │ ├── k53_i2c.h
│ │ ├── k60_i2c.c
│ │ └── k60_i2c.h
│ ├── include.h
│ ├── include.h.bak
│ ├── isr.h
│ ├── lptmr
│ │ ├── isr.h
│ │ ├── lptmr.c
│ │ ├── lptmr_clocksource.c
│ │ ├── lptmr_counter.c
│ │ ├── lptmr.h
│ │ ├── lptmr_interrupt.c
│ │ └── lptmr_pulse.c
│ ├── pdb_adc_demo
│ │ ├── isr.h
│ │ └── pdb_adc_demo.c
│ ├── pmc
│ │ ├── isr.c
│ │ ├── isr.h
│ │ ├── misc.h
│ │ ├── peripheral.c
│ │ ├── peripheral.h
│ │ ├── pmc_demo.c
│ │ ├── pmc_demo.h
│ │ ├── port_init.c
│ │ └── timer.c
│ ├── rtc
│ │ ├── isr.h
│ │ └── rtc_main.c
│ ├── sci2can
│ │ ├── can.c
│ │ ├── can_config.h
│ │ ├── can.h
│ │ ├── isr.h
│ │ ├── kinetis_flexcan.h
│ │ └── sci2can.c
│ ├── slcd
│ │ ├── isr.h
│ │ ├── slcd.c
│ │ ├── twrpi_slcd.c
│ │ └── twrpi_slcd.h
│ ├── tsi
│ │ ├── isr.h
│ │ ├── main.c
│ │ ├── misc.c
│ │ ├── misc.h
│ │ ├── tsi.c
│ │ └── tsi.h
│ ├── tsi_low_pwr
│ │ ├── isr.h
│ │ ├── misc.c
│ │ ├── misc.h
│ │ ├── tsi.c
│ │ ├── tsi.h
│ │ └── tsi_low_pwr.c
│ ├── USB_DCD
│ │ ├── Dual_Role
│ │ │ ├── i2c_1.c
│ │ │ ├── i2c_1.h
│ │ │ ├── i2c.c
│ │ │ ├── i2c.h
│ │ │ ├── MAX3353.c
│ │ │ ├── MAX3353.h
│ │ │ ├── psptypes.h
│ │ │ └── Settings.h
│ │ ├── Freescale_CDC_Driver_Kinetis.inf
│ │ ├── FslTypes.h
│ │ ├── isr.h
│ │ ├── main.c
│ │ ├── Readme.txt
│ │ ├── RingBuffer.c
│ │ ├── RingBuffer.h
│ │ ├── USB.c
│ │ ├── USB_CDC.c
│ │ ├── USB_CDC.h
│ │ ├── USB_DCD.c
│ │ ├── USB_DCD.h
│ │ ├── USB_Desc.h
│ │ ├── USB.h
│ │ └── USB_Reg.h
│ ├── USB_device
│ │ ├── Freescale_CDC_Driver_Kinetis.inf
│ │ ├── FslTypes.h
│ │ ├── isr.h
│ │ ├── Readme.txt
│ │ ├── RingBuffer.c
│ │ ├── RingBuffer.h
│ │ ├── USB.c
│ │ ├── USB_CDC.c
│ │ ├── USB_CDC.h
│ │ ├── USB_Desc.h
│ │ ├── USB_device.c
│ │ ├── USB.h
│ │ └── USB_Reg.h
│ ├── USB_dual_role
│ │ ├── common.h
│ │ ├── Device
│ │ │ ├── Freescale_CDC_Driver_Kinetis.inf
│ │ │ ├── FslTypes.h
│ │ │ ├── isr.h
│ │ │ ├── RingBuffer.c
│ │ │ ├── RingBuffer.h
│ │ │ ├── USB.c
│ │ │ ├── USB_CDC.c
│ │ │ ├── USB_CDC.h
│ │ │ ├── USB_Desc.h
│ │ │ ├── USB_device.c
│ │ │ ├── USB_device.h
│ │ │ ├── USB.h
│ │ │ └── USB_Reg.h
│ │ ├── Dual_role
│ │ │ ├── i2c_1.c
│ │ │ ├── i2c_1.h
│ │ │ ├── i2c.c
│ │ │ ├── i2c.h
│ │ │ ├── MAX3353.c
│ │ │ ├── MAX3353.h
│ │ │ ├── psptypes.h
│ │ │ ├── Settings.h
│ │ │ └── USB_MAX3353.c
│ │ ├── Host
│ │ │ ├── examples
│ │ │ │ ├── common
│ │ │ │ │ ├── cfv1
│ │ │ │ │ │ ├── exceptions.c
│ │ │ │ │ │ ├── exceptions.h
│ │ │ │ │ │ ├── startcf.c
│ │ │ │ │ │ └── startcf.h
│ │ │ │ │ ├── rtc.c
│ │ │ │ │ ├── rtc.h
│ │ │ │ │ ├── sci.c
│ │ │ │ │ ├── sci.h
│ │ │ │ │ └── tpm.c
│ │ │ │ └── hid
│ │ │ │ └── mouse
│ │ │ │ ├── hidmouse.c
│ │ │ │ ├── hidmouse.h
│ │ │ │ └── usb_classes.h
│ │ │ └── Source
│ │ │ ├── bsp
│ │ │ │ ├── mcf51JM
│ │ │ │ │ └── P2.c
│ │ │ │ ├── mcf51MM
│ │ │ │ │ ├── usb_lock.h
│ │ │ │ │ └── usb_mcf51MM.c
│ │ │ │ └── P2
│ │ │ │ └── usb_mcf51JM.c
│ │ │ ├── classes
│ │ │ │ ├── cdc
│ │ │ │ │ ├── fio.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── io.h
│ │ │ │ │ ├── serial.h
│ │ │ │ │ ├── usb_host_cdc.c
│ │ │ │ │ ├── usb_host_cdc.h
│ │ │ │ │ └── usb_host_cdc_intf.c
│ │ │ │ ├── common
│ │ │ │ │ └── usb_classes.c
│ │ │ │ ├── hid
│ │ │ │ │ ├── usb_host_hid.c
│ │ │ │ │ └── usb_host_hid.h
│ │ │ │ ├── hub
│ │ │ │ │ ├── usb_host_hub.c
│ │ │ │ │ ├── usb_host_hub.h
│ │ │ │ │ ├── usb_host_hub_prv.h
│ │ │ │ │ ├── usb_host_hub_sm.c
│ │ │ │ │ └── usb_host_hub_sm.h
│ │ │ │ ├── msd
│ │ │ │ │ ├── mfs
│ │ │ │ │ │ ├── usbmfs.c
│ │ │ │ │ │ ├── usbmfs.h
│ │ │ │ │ │ └── usbmfspr.h
│ │ │ │ │ ├── usb_host_msd_bo.c
│ │ │ │ │ ├── usb_host_msd_bo.h
│ │ │ │ │ ├── usb_host_msd_queue.c
│ │ │ │ │ ├── usb_host_msd_ufi.c
│ │ │ │ │ └── usb_host_msd_ufi.h
│ │ │ │ └── phdc
│ │ │ │ ├── usb_host_phdc.c
│ │ │ │ └── usb_host_phdc.h
│ │ │ ├── driver
│ │ │ │ ├── khci.c
│ │ │ │ ├── khci.h
│ │ │ │ ├── psptypes.h
│ │ │ │ ├── types.h
│ │ │ │ ├── usb_bsp.h
│ │ │ │ ├── usb_desc.h
│ │ │ │ ├── usbevent.c
│ │ │ │ ├── usbevent.h
│ │ │ │ ├── usb.h
│ │ │ │ ├── usbmsgq.c
│ │ │ │ ├── usbmsgq.h
│ │ │ │ ├── usbprv.h
│ │ │ │ ├── usbprv_host.h
│ │ │ │ ├── usbsem.c
│ │ │ │ └── usbsem.h
│ │ │ └── host_common
│ │ │ ├── hostapi.h
│ │ │ ├── host_ch9.c
│ │ │ ├── host_ch9.h
│ │ │ ├── host_close.c
│ │ │ ├── host_close.h
│ │ │ ├── host_cnfg.h
│ │ │ ├── host_cnl.c
│ │ │ ├── host_cnl.h
│ │ │ ├── host_common.c
│ │ │ ├── host_common.h
│ │ │ ├── host_debug.h
│ │ │ ├── host_dev_list.c
│ │ │ ├── host_dev_list.h
│ │ │ ├── host_driver.c
│ │ │ ├── host_driver.h
│ │ │ ├── host_main.c
│ │ │ ├── host_main.h
│ │ │ ├── host_rcv.c
│ │ │ ├── host_rcv.h
│ │ │ ├── host_shut.c
│ │ │ ├── host_shut.h
│ │ │ ├── host_snd.c
│ │ │ └── host_snd.h
│ │ ├── startup.c
│ │ ├── startup.h
│ │ ├── USB_dual_role.c
│ │ └── write.c
│ ├── USB_HOST
│ │ ├── common.h
│ │ ├── examples
│ │ │ ├── common
│ │ │ │ ├── cfv1
│ │ │ │ │ ├── exceptions.c
│ │ │ │ │ ├── exceptions.h
│ │ │ │ │ ├── startcf.c
│ │ │ │ │ └── startcf.h
│ │ │ │ ├── rtc.c
│ │ │ │ ├── rtc.h
│ │ │ │ ├── sci.c
│ │ │ │ ├── sci.h
│ │ │ │ └── tpm.c
│ │ │ └── hid
│ │ │ └── mouse
│ │ │ ├── hidmouse.c
│ │ │ ├── hidmouse.h
│ │ │ └── usb_classes.h
│ │ ├── isr.h
│ │ ├── Readme.txt
│ │ ├── Source
│ │ │ ├── bsp
│ │ │ │ ├── mcf51JM
│ │ │ │ │ └── P2.c
│ │ │ │ ├── mcf51MM
│ │ │ │ │ ├── usb_lock.h
│ │ │ │ │ └── usb_mcf51MM.c
│ │ │ │ └── P2
│ │ │ │ └── usb_mcf51JM.c
│ │ │ ├── classes
│ │ │ │ ├── cdc
│ │ │ │ │ ├── fio.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── io.h
│ │ │ │ │ ├── serial.h
│ │ │ │ │ ├── usb_host_cdc.c
│ │ │ │ │ ├── usb_host_cdc.h
│ │ │ │ │ └── usb_host_cdc_intf.c
│ │ │ │ ├── common
│ │ │ │ │ └── usb_classes.c
│ │ │ │ ├── hid
│ │ │ │ │ ├── usb_host_hid.c
│ │ │ │ │ └── usb_host_hid.h
│ │ │ │ ├── hub
│ │ │ │ │ ├── usb_host_hub.c
│ │ │ │ │ ├── usb_host_hub.h
│ │ │ │ │ ├── usb_host_hub_prv.h
│ │ │ │ │ ├── usb_host_hub_sm.c
│ │ │ │ │ └── usb_host_hub_sm.h
│ │ │ │ ├── msd
│ │ │ │ │ ├── mfs
│ │ │ │ │ │ ├── usbmfs.c
│ │ │ │ │ │ ├── usbmfs.h
│ │ │ │ │ │ └── usbmfspr.h
│ │ │ │ │ ├── usb_host_msd_bo.c
│ │ │ │ │ ├── usb_host_msd_bo.h
│ │ │ │ │ ├── usb_host_msd_queue.c
│ │ │ │ │ ├── usb_host_msd_ufi.c
│ │ │ │ │ └── usb_host_msd_ufi.h
│ │ │ │ └── phdc
│ │ │ │ ├── usb_host_phdc.c
│ │ │ │ └── usb_host_phdc.h
│ │ │ ├── driver
│ │ │ │ ├── khci.c
│ │ │ │ ├── khci.h
│ │ │ │ ├── psptypes.h
│ │ │ │ ├── types.h
│ │ │ │ ├── usb_bsp.h
│ │ │ │ ├── usb_desc.h
│ │ │ │ ├── usbevent.c
│ │ │ │ ├── usbevent.h
│ │ │ │ ├── usb.h
│ │ │ │ ├── usbmsgq.c
│ │ │ │ ├── usbmsgq.h
│ │ │ │ ├── usbprv.h
│ │ │ │ ├── usbprv_host.h
│ │ │ │ ├── usbsem.c
│ │ │ │ └── usbsem.h
│ │ │ └── host_common
│ │ │ ├── hostapi.h
│ │ │ ├── host_ch9.c
│ │ │ ├── host_ch9.h
│ │ │ ├── host_close.c
│ │ │ ├── host_close.h
│ │ │ ├── host_cnfg.h
│ │ │ ├── host_cnl.c
│ │ │ ├── host_cnl.h
│ │ │ ├── host_common.c
│ │ │ ├── host_common.h
│ │ │ ├── host_debug.h
│ │ │ ├── host_dev_list.c
│ │ │ ├── host_dev_list.h
│ │ │ ├── host_driver.c
│ │ │ ├── host_driver.h
│ │ │ ├── host_main.c
│ │ │ ├── host_main.h
│ │ │ ├── host_rcv.c
│ │ │ ├── host_rcv.h
│ │ │ ├── host_shut.c
│ │ │ ├── host_shut.h
│ │ │ ├── host_snd.c
│ │ │ └── host_snd.h
│ │ ├── startup.c
│ │ ├── startup.h
│ │ └── write.c
│ └── USB_MAX3353
│ ├── i2c_1.c
│ ├── i2c_1.h
│ ├── i2c.c
│ ├── i2c.h
│ ├── isr.h
│ ├── MAX3353.c
│ ├── MAX3353.h
│ ├── psptypes.h
│ ├── Settings.h
│ └── USB_MAX3353.c
├── 两路测速.txt
├── 删除临时文件.bat
└── 编译路径.txt
164 directories, 860 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论