实例介绍
CC3200实现TCP SERVER CLIENT UDP SERVER CLIENT透传,按键,定时等等功能实现
【实例截图】
【核心代码】
CC3200TCPUDP通信,透传
├── CC3200论坛详细问题解决.txt
├── common
│ ├── button_if.c
│ ├── button_if.h
│ ├── common.h
│ ├── gpio_if.c
│ ├── gpio_if.h
│ ├── i2c_if.c
│ ├── i2c_if.h
│ ├── network_if.c
│ ├── network_if.h
│ ├── startup_ccs.c
│ ├── startup_ewarm.c
│ ├── startup_gcc.c
│ ├── timer_if.c
│ ├── timer_if.h
│ ├── uart_if.c
│ ├── uart_if.h
│ ├── udma_if.c
│ ├── udma_if.h
│ ├── utils_if.c
│ ├── utils_if.h
│ ├── wdt_if.c
│ └── wdt_if.h
├── driverlib
│ ├── adc.c
│ ├── adc.h
│ ├── aes.c
│ ├── aes.h
│ ├── camera.c
│ ├── camera.h
│ ├── cpu.c
│ ├── cpu.h
│ ├── crc.c
│ ├── crc.h
│ ├── debug.h
│ ├── des.c
│ ├── des.h
│ ├── driverlib.a
│ ├── flash.c
│ ├── flash.h
│ ├── gpio.c
│ ├── gpio.h
│ ├── hwspinlock.c
│ ├── hwspinlock.h
│ ├── i2c.c
│ ├── i2c.h
│ ├── i2s.c
│ ├── i2s.h
│ ├── interrupt.c
│ ├── interrupt.h
│ ├── pin.c
│ ├── pin.h
│ ├── prcm.c
│ ├── prcm.h
│ ├── rom.h
│ ├── rom_map.h
│ ├── rom_patch.h
│ ├── sdhost.c
│ ├── sdhost.h
│ ├── shamd5.c
│ ├── shamd5.h
│ ├── spi.c
│ ├── spi.h
│ ├── systick.c
│ ├── systick.h
│ ├── timer.c
│ ├── timer.h
│ ├── uart.c
│ ├── uart.h
│ ├── udma.c
│ ├── udma.h
│ ├── utils.c
│ ├── utils.h
│ ├── version.h
│ ├── wdt.c
│ └── wdt.h
├── ewarm
│ ├── Release
│ │ ├── Exe
│ │ │ ├── Smark_CC3200.bin
│ │ │ └── Smark_CC3200.out
│ │ ├── List
│ │ │ ├── Smark_CC3200.map
│ │ │ └── tcp_socket.map
│ │ └── Obj
│ │ ├── 78M6610.o
│ │ ├── 78M6610.pbi
│ │ ├── 78M6610.pbi.cout
│ │ ├── bsp_key.o
│ │ ├── bsp_key.pbi
│ │ ├── bsp_key.pbi.cout
│ │ ├── bsp_led.o
│ │ ├── bsp_led.pbi
│ │ ├── bsp_led.pbi.cout
│ │ ├── bsp_rtc.o
│ │ ├── bsp_rtc.pbi
│ │ ├── bsp_rtc.pbi.cout
│ │ ├── bsp_timer.o
│ │ ├── bsp_timer.pbi
│ │ ├── bsp_timer.pbi.cout
│ │ ├── bsp_uart.o
│ │ ├── bsp_uart.pbi
│ │ ├── bsp_uart.pbi.cout
│ │ ├── Data_circlebuff.o
│ │ ├── Data_circlebuff.pbi
│ │ ├── Data_circlebuff.pbi.cout
│ │ ├── Data_Packet.o
│ │ ├── Data_Packet.pbi
│ │ ├── Data_Packet.pbi.cout
│ │ ├── DataPacket.pbi.cout
│ │ ├── GlobalVar.o
│ │ ├── GlobalVar.pbi
│ │ ├── GlobalVar.pbi.cout
│ │ ├── gpio_if.o
│ │ ├── gpio_if.pbi
│ │ ├── gpio_if.pbi.cout
│ │ ├── i2c_if.o
│ │ ├── i2c_if.pbi
│ │ ├── i2c_if.pbi.cout
│ │ ├── iic_eeprom.o
│ │ ├── iic_eeprom.pbi
│ │ ├── iic_eeprom.pbi.cout
│ │ ├── IICEEPROM.pbi.cout
│ │ ├── main.o
│ │ ├── main.pbi
│ │ ├── main.pbi.cout
│ │ ├── pinmux.o
│ │ ├── pinmux.pbi
│ │ ├── pinmux.pbi.cout
│ │ ├── rtc_hal.o
│ │ ├── rtc_hal.pbi
│ │ ├── rtc_hal.pbi.cout
│ │ ├── SimpleLink_Event.o
│ │ ├── SimpleLink_Event.pbi
│ │ ├── SimpleLink_Event.pbi.cout
│ │ ├── Smark_CC3200.pbd
│ │ ├── Smark_CC3200.pbd.browse
│ │ ├── startup_ewarm.o
│ │ ├── startup_ewarm.pbi
│ │ ├── startup_ewarm.pbi.cout
│ │ ├── tcp_socket.pbd
│ │ ├── tcp_socket.pbd.browse
│ │ ├── timer_if.o
│ │ ├── timer_if.pbi
│ │ ├── timer_if.pbi.cout
│ │ ├── uart_if.o
│ │ ├── uart_if.pbi.cout
│ │ ├── udma_if.o
│ │ ├── udma_if.pbi
│ │ ├── udma_if.pbi.cout
│ │ ├── Watchdog.o
│ │ ├── Watchdog.pbi
│ │ ├── Watchdog.pbi.cout
│ │ ├── wdt_if.o
│ │ ├── wdt_if.pbi
│ │ ├── wdt_if.pbi.cout
│ │ ├── wifi_mode.o
│ │ ├── wifi_mode.pbi
│ │ ├── wifi_mode.pbi.cout
│ │ ├── wifi_process.o
│ │ ├── wifi_process.pbi
│ │ └── wifi_process.pbi.cout
│ ├── settings
│ │ ├── Smark_CC3200.crun
│ │ ├── Smark_CC3200.dbgdt
│ │ ├── Smark_CC3200.dni
│ │ ├── Smark_CC3200.Release.cspy.bat
│ │ ├── Smark_CC3200.wsdt
│ │ ├── Smark_CC3200.wspos
│ │ ├── tcp_socket.crun
│ │ ├── tcp_socket.dbgdt
│ │ ├── tcp_socket.dni
│ │ ├── tcp_socket.Release.cspy.bat
│ │ ├── tcp_socket.wsdt
│ │ └── tcp_socket.wspos
│ ├── Smark_CC3200.dep
│ ├── Smark_CC3200.ewd
│ ├── Smark_CC3200.ewp
│ ├── Smark_CC3200.ewt
│ └── Smark_CC3200.eww
├── inc
│ ├── asmdefs.h
│ ├── hw_adc.h
│ ├── hw_aes.h
│ ├── hw_apps_config.h
│ ├── hw_apps_rcm.h
│ ├── hw_camera.h
│ ├── hw_common_reg.h
│ ├── hw_des.h
│ ├── hw_dthe.h
│ ├── hw_flash_ctrl.h
│ ├── hw_gpio.h
│ ├── hw_gprcm.h
│ ├── hw_hib1p2.h
│ ├── hw_hib3p3.h
│ ├── hw_i2c.h
│ ├── hw_ints.h
│ ├── hw_mcasp.h
│ ├── hw_mcspi.h
│ ├── hw_memmap.h
│ ├── hw_mmchs.h
│ ├── hw_nvic.h
│ ├── hw_ocp_shared.h
│ ├── hw_shamd5.h
│ ├── hw_stack_die_ctrl.h
│ ├── hw_timer.h
│ ├── hw_types.h
│ ├── hw_uart.h
│ ├── hw_udma.h
│ └── hw_wdt.h
├── middleware
│ ├── cc_types.h
│ ├── hw_timer.h
│ ├── rtc_hal.c
│ └── rtc_hal.h
├── simplelink
│ ├── cc_pal.c
│ ├── cc_pal.h
│ ├── cc_pal_pm.c
│ ├── include
│ │ ├── device.h
│ │ ├── fs.h
│ │ ├── netapp.h
│ │ ├── netcfg.h
│ │ ├── simplelink.h
│ │ ├── socket.h
│ │ ├── trace.h
│ │ ├── wlan.h
│ │ └── wlan_rx_filters.h
│ ├── simplelink.a
│ ├── source
│ │ ├── device.c
│ │ ├── driver.c
│ │ ├── driver.h
│ │ ├── flowcont.c
│ │ ├── flowcont.h
│ │ ├── fs.c
│ │ ├── netapp.c
│ │ ├── netcfg.c
│ │ ├── nonos.c
│ │ ├── nonos.h
│ │ ├── objInclusion.h
│ │ ├── protocol.h
│ │ ├── socket.c
│ │ ├── spawn.c
│ │ ├── spawn.h
│ │ └── wlan.c
│ └── user.h
├── user
│ ├── Data_circlebuff.c
│ ├── Data_circlebuff.h
│ ├── Data_Packet.c
│ ├── Data_Packet.h
│ ├── GlobalVar.c
│ ├── GlobalVar.h
│ ├── main.c
│ ├── pinmux.c
│ ├── pinmux.h
│ ├── SimpleLink_Event.c
│ ├── SimpleLink_Event.h
│ ├── wifi_mode.c
│ ├── wifi_mode.h
│ ├── wifi_process.c
│ └── wifi_process.h
└── userdriver
├── 78M6610.c
├── 78M6610.h
├── bsp_key.c
├── bsp_key.h
├── bsp_led.c
├── bsp_led.h
├── bsp_rtc.c
├── bsp_rtc.h
├── bsp_timer.c
├── bsp_timer.h
├── bsp_uart.c
├── bsp_uart.h
├── iic_eeprom.c
├── iic_eeprom.h
├── readme.txt
├── type_def.h
├── Watchdog.c
└── Watchdog.h
15 directories, 269 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论