在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → OLED 使用手册及c51、k60、x128程序

OLED 使用手册及c51、k60、x128程序

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:10.14M
  • 下载次数:3
  • 浏览次数:92
  • 发布时间:2020-07-22
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
OLED屏的使用帮助及基于c51 k60 x128的参考程序
【实例截图】
【核心代码】
OLED资料
└── 原文件
├── OLED-K60
│   ├── DEMOK_Kinetis_GPIO_Example.dep
│   ├── DEMOK_Kinetis_GPIO_Example.ewd
│   ├── DEMOK_Kinetis_GPIO_Example.ewp
│   ├── DEMOK_Kinetis_GPIO_Example.eww
│   ├── Debug
│   │   ├── Exe
│   │   │   ├── DEMOK_Kinetis_GPIO_Example.hex
│   │   │   └── DEMOK_Kinetis_GPIO_Example.out
│   │   └── Obj
│   │   ├── DEMOK_Kinetis_GPIO_Example.pbd
│   │   ├── FTM.o
│   │   ├── LQ12864.o
│   │   ├── PIT.o
│   │   ├── adc.o
│   │   ├── alloc.o
│   │   ├── arm_cm4.o
│   │   ├── assert.o
│   │   ├── crt0.o
│   │   ├── delay.o
│   │   ├── exti.o
│   │   ├── gpio.o
│   │   ├── io.o
│   │   ├── isr.o
│   │   ├── lptmr.o
│   │   ├── main.o
│   │   ├── mcg.o
│   │   ├── memtest.o
│   │   ├── printf.o
│   │   ├── queue.o
│   │   ├── start.o
│   │   ├── startup.o
│   │   ├── stdlib.o
│   │   ├── sysinit.o
│   │   ├── uart.o
│   │   ├── uif.o
│   │   ├── vectors.o
│   │   └── wdog.o
│   ├── build
│   │   ├── config files
│   │   │   ├── 128KB_Pflash.icf
│   │   │   ├── 128KB_Pflash_128KB_Dflash.icf
│   │   │   ├── 128KB_Ram.icf
│   │   │   ├── 256KB_Pflash.icf
│   │   │   ├── 256KB_Pflash_256KB_Dflash.icf
│   │   │   ├── 32KB_Ram.icf
│   │   │   ├── 512KB_Pflash.icf
│   │   │   ├── 64KB_Pflash_64KB_Dflash.icf
│   │   │   └── 64KB_Ram.icf
│   │   └── iar.h
│   ├── settings
│   │   ├── DEMOK_Kinetis_GPIO_Example.cspy.bat
│   │   ├── DEMOK_Kinetis_GPIO_Example.dbgdt
│   │   ├── DEMOK_Kinetis_GPIO_Example.dni
│   │   ├── DEMOK_Kinetis_GPIO_Example.wsdt
│   │   └── DEMOK_Kinetis_GPIO_Example_Debug.jlink
│   └── src
│   ├── 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
│   │   ├── FatFs R0.09 官方代码带中文注解.7z
│   │   ├── diskio.c
│   │   ├── diskio.h
│   │   ├── ff.c
│   │   ├── ff.h
│   │   ├── ffconf.h
│   │   ├── integer.h
│   │   └── option
│   │   ├── cc932.c
│   │   ├── cc936.c
│   │   ├── cc949.c
│   │   ├── cc950.c
│   │   ├── ccsbcs.c
│   │   └── syscall.c
│   ├── 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
│   │   │   └── MK60DZ10.h.bak
│   │   ├── start.c
│   │   ├── start.h
│   │   ├── sysinit.c
│   │   ├── sysinit.h
│   │   ├── vectors.c
│   │   └── vectors.h
│   ├── drivers
│   │   ├── FTM
│   │   │   ├── FTM.c
│   │   │   └── FTM.h
│   │   ├── OLED
│   │   │   ├── LQ12864.c
│   │   │   └── LQ12864.h
│   │   ├── PIT
│   │   │   ├── PIT.c
│   │   │   └── PIT.h
│   │   ├── adc
│   │   │   ├── adc.c
│   │   │   ├── adc.h
│   │   │   └── adc_cfg.h
│   │   ├── delay
│   │   │   ├── delay.c
│   │   │   └── delay.h
│   │   ├── 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
│   │   ├── gpio
│   │   │   ├── gpio.c
│   │   │   ├── gpio.h
│   │   │   └── gpio_cfg.h
│   │   ├── lptmr
│   │   │   ├── lptmr.c
│   │   │   └── lptmr.h
│   │   ├── mcg
│   │   │   ├── Fire_kinetis_MCG_CFG.h
│   │   │   ├── mcg.c
│   │   │   ├── mcg.h
│   │   │   └── mcg_cfg.h
│   │   ├── pmc
│   │   │   ├── pmc.c
│   │   │   └── pmc.h
│   │   ├── rtc
│   │   │   ├── rtc.c
│   │   │   └── rtc.h
│   │   ├── uart
│   │   │   ├── uart.c
│   │   │   └── uart.h
│   │   └── wdog
│   │   ├── wdog.c
│   │   └── wdog.h
│   ├── platforms
│   │   ├── k40_tower.h
│   │   ├── k53_tower.h
│   │   ├── k60_fire.h
│   │   └── k60_tower.h
│   └── projects
│   ├── DEMOK_Kinetis_GPIO_Example
│   │   ├── isr.c
│   │   └── main.c
│   ├── USB_DCD
│   │   ├── Dual_Role
│   │   │   ├── MAX3353.c
│   │   │   ├── MAX3353.h
│   │   │   ├── Settings.h
│   │   │   ├── i2c.c
│   │   │   ├── i2c.h
│   │   │   ├── i2c_1.c
│   │   │   ├── i2c_1.h
│   │   │   └── psptypes.h
│   │   ├── Freescale_CDC_Driver_Kinetis.inf
│   │   ├── FslTypes.h
│   │   ├── Readme.txt
│   │   ├── RingBuffer.c
│   │   ├── RingBuffer.h
│   │   ├── USB.c
│   │   ├── USB.h
│   │   ├── USB_CDC.c
│   │   ├── USB_CDC.h
│   │   ├── USB_DCD.c
│   │   ├── USB_DCD.h
│   │   ├── USB_Desc.h
│   │   ├── USB_Reg.h
│   │   ├── isr.h
│   │   └── main.c
│   ├── USB_HOST
│   │   ├── Readme.txt
│   │   ├── Source
│   │   │   ├── bsp
│   │   │   │   ├── P2
│   │   │   │   │   └── usb_mcf51JM.c
│   │   │   │   ├── mcf51JM
│   │   │   │   │   └── P2.c
│   │   │   │   └── mcf51MM
│   │   │   │   ├── usb_lock.h
│   │   │   │   └── usb_mcf51MM.c
│   │   │   ├── classes
│   │   │   │   ├── cdc
│   │   │   │   │   ├── fio.h
│   │   │   │   │   ├── io.h
│   │   │   │   │   ├── ioctl.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.h
│   │   │   │   ├── usb_bsp.h
│   │   │   │   ├── usb_desc.h
│   │   │   │   ├── usbevent.c
│   │   │   │   ├── usbevent.h
│   │   │   │   ├── usbmsgq.c
│   │   │   │   ├── usbmsgq.h
│   │   │   │   ├── usbprv.h
│   │   │   │   ├── usbprv_host.h
│   │   │   │   ├── usbsem.c
│   │   │   │   └── usbsem.h
│   │   │   └── host_common
│   │   │   ├── 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
│   │   │   └── hostapi.h
│   │   ├── 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
│   │   ├── startup.c
│   │   ├── startup.h
│   │   └── write.c
│   ├── USB_MAX3353
│   │   ├── MAX3353.c
│   │   ├── MAX3353.h
│   │   ├── Settings.h
│   │   ├── USB_MAX3353.c
│   │   ├── i2c.c
│   │   ├── i2c.h
│   │   ├── i2c_1.c
│   │   ├── i2c_1.h
│   │   ├── isr.h
│   │   └── psptypes.h
│   ├── USB_device
│   │   ├── Freescale_CDC_Driver_Kinetis.inf
│   │   ├── FslTypes.h
│   │   ├── Readme.txt
│   │   ├── RingBuffer.c
│   │   ├── RingBuffer.h
│   │   ├── USB.c
│   │   ├── USB.h
│   │   ├── USB_CDC.c
│   │   ├── USB_CDC.h
│   │   ├── USB_Desc.h
│   │   ├── USB_Reg.h
│   │   ├── USB_device.c
│   │   └── isr.h
│   ├── USB_dual_role
│   │   ├── Device
│   │   │   ├── Freescale_CDC_Driver_Kinetis.inf
│   │   │   ├── FslTypes.h
│   │   │   ├── RingBuffer.c
│   │   │   ├── RingBuffer.h
│   │   │   ├── USB.c
│   │   │   ├── USB.h
│   │   │   ├── USB_CDC.c
│   │   │   ├── USB_CDC.h
│   │   │   ├── USB_Desc.h
│   │   │   ├── USB_Reg.h
│   │   │   ├── USB_device.c
│   │   │   ├── USB_device.h
│   │   │   └── isr.h
│   │   ├── Dual_role
│   │   │   ├── MAX3353.c
│   │   │   ├── MAX3353.h
│   │   │   ├── Settings.h
│   │   │   ├── USB_MAX3353.c
│   │   │   ├── i2c.c
│   │   │   ├── i2c.h
│   │   │   ├── i2c_1.c
│   │   │   ├── i2c_1.h
│   │   │   └── psptypes.h
│   │   ├── Host
│   │   │   ├── Source
│   │   │   │   ├── bsp
│   │   │   │   │   ├── P2
│   │   │   │   │   │   └── usb_mcf51JM.c
│   │   │   │   │   ├── mcf51JM
│   │   │   │   │   │   └── P2.c
│   │   │   │   │   └── mcf51MM
│   │   │   │   │   ├── usb_lock.h
│   │   │   │   │   └── usb_mcf51MM.c
│   │   │   │   ├── classes
│   │   │   │   │   ├── cdc
│   │   │   │   │   │   ├── fio.h
│   │   │   │   │   │   ├── io.h
│   │   │   │   │   │   ├── ioctl.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.h
│   │   │   │   │   ├── usb_bsp.h
│   │   │   │   │   ├── usb_desc.h
│   │   │   │   │   ├── usbevent.c
│   │   │   │   │   ├── usbevent.h
│   │   │   │   │   ├── usbmsgq.c
│   │   │   │   │   ├── usbmsgq.h
│   │   │   │   │   ├── usbprv.h
│   │   │   │   │   ├── usbprv_host.h
│   │   │   │   │   ├── usbsem.c
│   │   │   │   │   └── usbsem.h
│   │   │   │   └── host_common
│   │   │   │   ├── 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
│   │   │   │   └── hostapi.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
│   │   ├── USB_dual_role.c
│   │   ├── common.h
│   │   ├── startup.c
│   │   ├── startup.h
│   │   └── write.c
│   ├── adc_demo
│   │   ├── adc_demo.c
│   │   ├── adc_demo.h
│   │   ├── dsp.h
│   │   ├── dsp.s
│   │   ├── dsp_cw.s
│   │   ├── hw_trig_test.c
│   │   ├── hw_trig_test.h
│   │   └── isr.h
│   ├── can_loopback_node
│   │   ├── can.c
│   │   ├── can.h
│   │   ├── can_config.h
│   │   ├── can_loopback_node.c
│   │   ├── isr.h
│   │   └── kinetis_flexcan.h
│   ├── crc_demo
│   │   ├── crc.c
│   │   ├── crc.h
│   │   ├── crc_demo.c
│   │   └── isr.h
│   ├── dac12bit_demo
│   │   ├── dac12bit.c
│   │   ├── dac12bit.h
│   │   ├── dac12bit_demo.c
│   │   └── isr.h
│   ├── flexbus
│   │   ├── flexbus.c
│   │   └── isr.h
│   ├── flexmem_demo
│   │   ├── flexmem_demo.c
│   │   ├── flexmem_demo.h
│   │   └── isr.h
│   ├── freertos_lwip
│   │   ├── FreeRTOS
│   │   │   ├── Demo
│   │   │   │   └── CORTEX_KINETIS_IAR
│   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   ├── ParTest.c
│   │   │   │   ├── Throughput
│   │   │   │   │   └── throughput_test.c
│   │   │   │   ├── include
│   │   │   │   │   ├── HTTPDemo.h
│   │   │   │   │   └── throughput_test.h
│   │   │   │   ├── lwipWebServer
│   │   │   │   │   ├── HTTPDemo.c
│   │   │   │   │   └── fs
│   │   │   │   │   └── WS1
│   │   │   │   │   ├── 404.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── logo.gif
│   │   │   │   └── partest.h
│   │   │   ├── License
│   │   │   │   └── license.txt
│   │   │   └── Source
│   │   │   ├── croutine.c
│   │   │   ├── include
│   │   │   │   ├── FreeRTOS.h
│   │   │   │   ├── StackMacros.h
│   │   │   │   ├── croutine.h
│   │   │   │   ├── list.h
│   │   │   │   ├── mpu_wrappers.h
│   │   │   │   ├── portable.h
│   │   │   │   ├── projdefs.h
│   │   │   │   ├── queue.h
│   │   │   │   ├── semphr.h
│   │   │   │   └── task.h
│   │   │   ├── list.c
│   │   │   ├── portable
│   │   │   │   ├── IAR
│   │   │   │   │   └── ARM_CM4
│   │   │   │   │   ├── port.c
│   │   │   │   │   ├── portasm.s
│   │   │   │   │   └── 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
│   │   ├── common.h
│   │   ├── isr.h
│   │   ├── lwip-1.3.2
│   │   │   ├── CHANGELOG
│   │   │   ├── COPYING
│   │   │   ├── FILES
│   │   │   ├── README
│   │   │   ├── doc
│   │   │   │   ├── FILES
│   │   │   │   ├── contrib.txt
│   │   │   │   ├── rawapi.txt
│   │   │   │   ├── savannah.txt
│   │   │   │   ├── snmp_agent.txt
│   │   │   │   └── sys_arch.txt
│   │   │   ├── src
│   │   │   │   ├── FILES
│   │   │   │   ├── 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.c
│   │   │   │   │   │   ├── ip_addr.c
│   │   │   │   │   │   └── ip_frag.c
│   │   │   │   │   ├── ipv6
│   │   │   │   │   │   ├── README
│   │   │   │   │   │   ├── icmp6.c
│   │   │   │   │   │   ├── inet6.c
│   │   │   │   │   │   ├── ip6.c
│   │   │   │   │   │   └── ip6_addr.c
│   │   │   │   │   ├── 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
│   │   │   │   ├── include
│   │   │   │   │   ├── ipv4
│   │   │   │   │   │   └── lwip
│   │   │   │   │   │   ├── autoip.h
│   │   │   │   │   │   ├── icmp.h
│   │   │   │   │   │   ├── igmp.h
│   │   │   │   │   │   ├── inet.h
│   │   │   │   │   │   ├── inet_chksum.h
│   │   │   │   │   │   ├── ip.h
│   │   │   │   │   │   ├── ip_addr.h
│   │   │   │   │   │   └── ip_frag.h
│   │   │   │   │   ├── ipv6
│   │   │   │   │   │   └── lwip
│   │   │   │   │   │   ├── icmp.h
│   │   │   │   │   │   ├── inet.h
│   │   │   │   │   │   ├── ip.h
│   │   │   │   │   │   └── ip_addr.h
│   │   │   │   │   ├── lwip
│   │   │   │   │   │   ├── api.h
│   │   │   │   │   │   ├── api_msg.h
│   │   │   │   │   │   ├── arch.h
│   │   │   │   │   │   ├── debug.h
│   │   │   │   │   │   ├── def.h
│   │   │   │   │   │   ├── dhcp.h
│   │   │   │   │   │   ├── dns.h
│   │   │   │   │   │   ├── err.h
│   │   │   │   │   │   ├── init.h
│   │   │   │   │   │   ├── mem.h
│   │   │   │   │   │   ├── memp.h
│   │   │   │   │   │   ├── memp_std.h
│   │   │   │   │   │   ├── netbuf.h
│   │   │   │   │   │   ├── netdb.h
│   │   │   │   │   │   ├── netif.h
│   │   │   │   │   │   ├── netifapi.h
│   │   │   │   │   │   ├── opt.h
│   │   │   │   │   │   ├── pbuf.h
│   │   │   │   │   │   ├── raw.h
│   │   │   │   │   │   ├── sio.h
│   │   │   │   │   │   ├── snmp.h
│   │   │   │   │   │   ├── snmp_asn1.h
│   │   │   │   │   │   ├── snmp_msg.h
│   │   │   │   │   │   ├── snmp_structs.h
│   │   │   │   │   │   ├── sockets.h
│   │   │   │   │   │   ├── stats.h
│   │   │   │   │   │   ├── sys.h
│   │   │   │   │   │   ├── tcp.h
│   │   │   │   │   │   ├── tcpip.h
│   │   │   │   │   │   └── udp.h
│   │   │   │   │   └── netif
│   │   │   │   │   ├── etharp.h
│   │   │   │   │   ├── loopif.h
│   │   │   │   │   ├── ppp_oe.h
│   │   │   │   │   └── slipif.h
│   │   │   │   └── netif
│   │   │   │   ├── FILES
│   │   │   │   ├── etharp.c
│   │   │   │   ├── ethernetif.c
│   │   │   │   ├── 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
│   │   │   │   │   ├── ppp.h
│   │   │   │   │   ├── ppp_oe.c
│   │   │   │   │   ├── pppdebug.h
│   │   │   │   │   ├── randm.c
│   │   │   │   │   ├── randm.h
│   │   │   │   │   ├── vj.c
│   │   │   │   │   ├── vj.h
│   │   │   │   │   └── vjbsdhdr.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
│   │   ├── ENET_uip_driver
│   │   │   ├── enet_freertos.c
│   │   │   └── enet_freertos.h
│   │   ├── FreeRTOS
│   │   │   ├── Demo
│   │   │   │   └── CORTEX_KINETIS_IAR
│   │   │   │   ├── FreeRTOSConfig.h
│   │   │   │   ├── ParTest.c
│   │   │   │   ├── partest.h
│   │   │   │   └── webserver
│   │   │   │   ├── clock-arch.h
│   │   │   │   ├── http-strings
│   │   │   │   ├── http-strings.c
│   │   │   │   ├── http-strings.h
│   │   │   │   ├── httpd-cgi.c
│   │   │   │   ├── httpd-cgi.h
│   │   │   │   ├── httpd-fs
│   │   │   │   │   ├── 404.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── index.shtml
│   │   │   │   │   ├── io.shtml
│   │   │   │   │   ├── stats.shtml
│   │   │   │   │   └── tcp.shtml
│   │   │   │   ├── httpd-fs.c
│   │   │   │   ├── httpd-fs.h
│   │   │   │   ├── httpd-fsdata.c
│   │   │   │   ├── httpd-fsdata.h
│   │   │   │   ├── httpd.c
│   │   │   │   ├── httpd.h
│   │   │   │   ├── makefsdata
│   │   │   │   ├── makestrings
│   │   │   │   ├── pack_struct_end.h
│   │   │   │   ├── pack_struct_start.h
│   │   │   │   ├── uIP_Task.c
│   │   │   │   ├── uip-conf.h
│   │   │   │   └── webserver.h
│   │   │   ├── License
│   │   │   │   └── license.txt
│   │   │   └── Source
│   │   │   ├── croutine.c
│   │   │   ├── include
│   │   │   │   ├── FreeRTOS.h
│   │   │   │   ├── StackMacros.h
│   │   │   │   ├── croutine.h
│   │   │   │   ├── list.h
│   │   │   │   ├── mpu_wrappers.h
│   │   │   │   ├── portable.h
│   │   │   │   ├── projdefs.h
│   │   │   │   ├── queue.h
│   │   │   │   ├── semphr.h
│   │   │   │   └── task.h
│   │   │   ├── list.c
│   │   │   ├── portable
│   │   │   │   ├── IAR
│   │   │   │   │   └── ARM_CM4
│   │   │   │   │   ├── port.c
│   │   │   │   │   ├── portasm.s
│   │   │   │   │   └── portmacro.h
│   │   │   │   ├── MemMang
│   │   │   │   │   ├── heap_1.c
│   │   │   │   │   ├── heap_2.c
│   │   │   │   │   └── heap_3.c
│   │   │   │   └── readme.txt
│   │   │   ├── queue.c
│   │   │   ├── readme.txt
│   │   │   └── tasks.c
│   │   ├── common.h
│   │   ├── isr.h
│   │   ├── main.c
│   │   ├── startup.c
│   │   ├── startup.h
│   │   ├── uip-1.0
│   │   │   ├── README
│   │   │   ├── apps
│   │   │   │   ├── README
│   │   │   │   └── webserver
│   │   │   │   ├── Makefile.webserver
│   │   │   │   ├── http-strings
│   │   │   │   ├── http-strings.c
│   │   │   │   ├── http-strings.h
│   │   │   │   ├── 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-fs.h
│   │   │   │   ├── httpd-fsdata.c
│   │   │   │   ├── httpd-fsdata.h
│   │   │   │   ├── httpd.c
│   │   │   │   ├── httpd.h
│   │   │   │   ├── makefsdata
│   │   │   │   ├── makestrings
│   │   │   │   └── webserver.h
│   │   │   ├── uip
│   │   │   │   ├── Makefile.include
│   │   │   │   ├── clock.h
│   │   │   │   ├── lc-addrlabels.h
│   │   │   │   ├── lc-switch.h
│   │   │   │   ├── lc.h
│   │   │   │   ├── psock.c
│   │   │   │   ├── psock.h
│   │   │   │   ├── pt.h
│   │   │   │   ├── timer.c
│   │   │   │   ├── timer.h
│   │   │   │   ├── uip-fw.c
│   │   │   │   ├── uip-fw.h
│   │   │   │   ├── uip-neighbor.c
│   │   │   │   ├── uip-neighbor.h
│   │   │   │   ├── uip-split.c
│   │   │   │   ├── uip-split.h
│   │   │   │   ├── uip.c
│   │   │   │   ├── uip.h
│   │   │   │   ├── uip_arch.h
│   │   │   │   ├── uip_arp.c
│   │   │   │   ├── uip_arp.h
│   │   │   │   ├── uiplib.c
│   │   │   │   ├── uiplib.h
│   │   │   │   └── uipopt.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
│   ├── isr.h
│   ├── lptmr
│   │   ├── isr.h
│   │   ├── lptmr.c
│   │   ├── lptmr.h
│   │   ├── lptmr_clocksource.c
│   │   ├── lptmr_counter.c
│   │   ├── 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.h
│   │   ├── can_config.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
├── OLED-XS128
│   ├── C_Layout.hwl
│   ├── Default.mem
│   ├── OLED-XS128.mcp
│   ├── OLED-XS128_Data
│   │   ├── CWSettingsWindows.stg
│   │   └── Standard
│   │   ├── ObjectCode
│   │   │   ├── MC9S12XS128.c.o
│   │   │   ├── OLED.c.o
│   │   │   ├── Start12.c.o
│   │   │   ├── datapage.c.o
│   │   │   └── main.c.o
│   │   └── TargetDataWindows.tdt
│   ├── Sources
│   │   ├── OLED.c
│   │   ├── OLED.h
│   │   ├── Start12.c
│   │   ├── datapage.c
│   │   ├── derivative.h
│   │   ├── include.h
│   │   └── main.c
│   ├── TBDML.ini
│   ├── bin
│   │   ├── Project.abs
│   │   ├── Project.abs.glo
│   │   ├── Project.abs.s19
│   │   └── Project.map
│   ├── cmd
│   │   ├── TBDML_Erase_unsecure_hcs12xe.cmd
│   │   ├── TBDML_Postload.cmd
│   │   ├── TBDML_Preload.cmd
│   │   ├── TBDML_Reset.cmd
│   │   ├── TBDML_Startup.cmd
│   │   ├── TBDML_Vppoff.cmd
│   │   └── TBDML_Vppon.cmd
│   └── prm
│   ├── Project.prm
│   └── burner.bbl
├── OLED裸屏用户资料
│   ├── IIC-SPI.jpg
│   ├── OLED开发设计说明-研发必读-100309(1).pdf
│   ├── SAS1-9046-B UG-2864HSWEG01-Univision.pdf
│   ├── SSD1306-Revision 1.1 (Charge Pump).pdf
│   ├── UG-2864HSWEG01 Drawing - 090120B.pdf
│   └── UG-2864HSWEG01 user guide.pdf
├── OLED裸屏用户资料.rar
└── STC51 驱动OLED
├── LQ12864.h
├── OLED12864
├── OLED12864.LST
├── OLED12864.M51
├── OLED12864.OBJ
├── OLED12864.c
├── OLED12864.hex
├── OLED12864.lnp
├── OLED12864.plg
├── OLED12864.uvopt
├── OLED12864.uvproj
├── OLED12864_uvopt.bak
├── OLED12864_uvproj.bak
├── STARTUP.A51
├── STARTUP.LST
├── STARTUP.OBJ
└── codetab.h

171 directories, 836 files

标签:

实例下载地址

OLED 使用手册及c51、k60、x128程序

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警