实例介绍
UDP传输 在开发快给的原始程序中只是有关于与微信云平台的程序,对于局域网内用网络调试串口的程序并没有,现在我想先调试一下播放器的功能,所以这里没有在原来的程序加上UDP传输的功能,具体实现如下: 在代码上首先创建一个新的任务: void et_user_main(void *pvParameters)
【实例截图】
【核心代码】
4744302543436844244.zip
└── UDP
├── bin
│ ├── audio_test.bin
│ ├── blank.bin
│ ├── boot_v1.5.bin
│ ├── esp_init_data_default.bin
│ ├── fac.bin
│ ├── gb2312_only_characters.bin
│ ├── _temp_by_dltool
│ │ └── downloadPanel1
│ │ ├── blank.bin_rep
│ │ ├── boot_v1.5.bin_rep
│ │ └── esp_init_data_default.bin_rep
│ └── upgrade
│ ├── user1.2048.new.3.bin
│ ├── user1.2048.new.3.dump
│ └── user1.2048.new.3.S
├── commer.txt
├── et_app
│ ├── driver
│ │ ├── barometric.c
│ │ ├── delay.c
│ │ ├── gpio.c
│ │ ├── humiture.c
│ │ ├── hw_timer.c
│ │ ├── i2c_master.c
│ │ ├── i2s.c
│ │ ├── ir.c
│ │ ├── kfifo.c
│ │ ├── Makefile
│ │ ├── OLED_I2C.c
│ │ ├── RGB_light.c
│ │ ├── ring_buf.c
│ │ ├── sdio_slv.c
│ │ └── uart.c
│ ├── gen_misc.bat
│ ├── gen_misc.sh
│ ├── include
│ │ ├── driver
│ │ │ ├── codetab.h
│ │ │ ├── delay.h
│ │ │ ├── gpio.h
│ │ │ ├── hw_timer.h
│ │ │ ├── i2c_master.h
│ │ │ ├── i2s.h
│ │ │ ├── i2s_reg.h
│ │ │ ├── ir.h
│ │ │ ├── OLED_I2C.h
│ │ │ ├── pwm.h
│ │ │ ├── RGB_light.h
│ │ │ ├── ring_buf.h
│ │ │ ├── sdio_slv.h
│ │ │ ├── slc_register.h
│ │ │ └── uart.h
│ │ ├── et_api_compatible.h
│ │ ├── et_api_compatible.h.bak
│ │ ├── et_base.h
│ │ ├── et_client.h
│ │ ├── et_client.h.bak
│ │ ├── et_config.h
│ │ ├── et_fifo.h
│ │ ├── et_rtos.h
│ │ ├── et_std.h
│ │ ├── et_types.h
│ │ ├── et_types.h.bak
│ │ ├── factory.h
│ │ └── user_config.h
│ ├── Makefile
│ ├── readme.txt
│ ├── sample_lib
│ │ ├── folder1
│ │ │ ├── file1.c
│ │ │ └── Makefile
│ │ ├── folder2
│ │ │ ├── file2.c
│ │ │ └── Makefile
│ │ └── Makefile
│ └── user
│ ├── base.c
│ ├── et_user_app.c
│ ├── Makefile
│ ├── rtos.c
│ ├── std.c
│ ├── upgrade.c
│ ├── user_main.c
│ └── wifi_led.c
├── extra_include
│ └── xtensa
│ ├── cacheasm.h
│ ├── cacheattrasm.h
│ ├── config
│ │ ├── core.h
│ │ ├── core-isa.h
│ │ ├── core-matmap.h
│ │ ├── defs.h
│ │ ├── specreg.h
│ │ ├── system.h
│ │ ├── tie-asm.h
│ │ └── tie.h
│ ├── coreasm.h
│ ├── corebits.h
│ ├── hal.h
│ ├── simcall-errno.h
│ ├── simcall-fcntl.h
│ ├── simcall.h
│ ├── sim.h
│ ├── specreg.h
│ ├── tie
│ │ ├── xt_core.h
│ │ ├── xt_debug.h
│ │ ├── xt_density.h
│ │ ├── xt_exceptions.h
│ │ ├── xt_externalregisters.h
│ │ ├── xt_interrupt.h
│ │ ├── xt_misc.h
│ │ ├── xt_mmu.h
│ │ ├── xt_MUL32.h
│ │ ├── xt_mul.h
│ │ ├── xt_timer.h
│ │ └── xt_trace.h
│ ├── xtensa-libdb-macros.h
│ ├── xtensa-xer.h
│ ├── xtruntime-frames.h
│ └── xtruntime.h
├── hello.txt
├── include
│ ├── espressif
│ │ ├── airkiss.h
│ │ ├── c_types.h
│ │ ├── esp8266
│ │ │ ├── eagle_soc.h
│ │ │ ├── esp8266.h
│ │ │ ├── ets_sys.h
│ │ │ ├── gpio_register.h
│ │ │ ├── pin_mux_register.h
│ │ │ ├── spi_register.h
│ │ │ ├── timer_register.h
│ │ │ └── uart_register.h
│ │ ├── esp_common.h
│ │ ├── espconn.h
│ │ ├── esp_libc.h
│ │ ├── esp_misc.h
│ │ ├── espnow.h
│ │ ├── esp_softap.h
│ │ ├── esp_spiffs.h
│ │ ├── esp_ssc.h
│ │ ├── esp_sta.h
│ │ ├── esp_system.h
│ │ ├── esp_timer.h
│ │ ├── esp_wifi.h
│ │ ├── esp_wps.h
│ │ ├── mesh.h
│ │ ├── queue.h
│ │ ├── smartconfig.h
│ │ ├── spi_flash.h
│ │ └── upgrade.h
│ ├── freertos
│ │ ├── croutine.h
│ │ ├── FreeRTOSConfig.h
│ │ ├── FreeRTOS.h
│ │ ├── list.h
│ │ ├── mpu_wrappers.h
│ │ ├── portable.h
│ │ ├── portmacro.h
│ │ ├── projdefs.h
│ │ ├── queue.h
│ │ ├── semphr.h
│ │ ├── StackMacros.h
│ │ ├── task.h
│ │ ├── timers.h
│ │ ├── xtensa_context.h
│ │ ├── xtensa_rtos.h
│ │ └── xtensa_timer.h
│ ├── json
│ │ └── cJSON.h
│ ├── lwip
│ │ ├── arch
│ │ │ ├── cc.h
│ │ │ ├── perf.h
│ │ │ └── sys_arch.h
│ │ ├── ipv4
│ │ │ └── lwip
│ │ │ ├── autoip.h
│ │ │ ├── icmp.h
│ │ │ ├── igmp.h
│ │ │ ├── inet.h
│ │ │ ├── ip4_addr.h
│ │ │ ├── ip4.h
│ │ │ └── ip_frag.h
│ │ ├── ipv6
│ │ │ └── lwip
│ │ │ ├── dhcp6.h
│ │ │ ├── ethip6.h
│ │ │ ├── icmp6.h
│ │ │ ├── inet6.h
│ │ │ ├── ip6_addr.h
│ │ │ ├── ip6_frag.h
│ │ │ ├── ip6.h
│ │ │ ├── mld6.h
│ │ │ └── nd6.h
│ │ ├── lwip
│ │ │ ├── api.h
│ │ │ ├── api_msg.h
│ │ │ ├── arch.h
│ │ │ ├── debug.h
│ │ │ ├── def.h
│ │ │ ├── dhcp.h
│ │ │ ├── dhcpserver.h
│ │ │ ├── dns.h
│ │ │ ├── err.h
│ │ │ ├── inet_chksum.h
│ │ │ ├── init.h
│ │ │ ├── ip_addr.h
│ │ │ ├── ip.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
│ │ │ ├── tcp_impl.h
│ │ │ ├── tcpip.h
│ │ │ ├── timers.h
│ │ │ └── udp.h
│ │ ├── lwipopts.h
│ │ ├── netif
│ │ │ ├── etharp.h
│ │ │ ├── if_llc.h
│ │ │ ├── ppp_oe.h
│ │ │ ├── slipif.h
│ │ │ └── wlan_lwip_if.h
│ │ └── posix
│ │ ├── netdb.h
│ │ └── sys
│ │ └── socket.h
│ ├── nopoll
│ │ ├── nopoll_config.h
│ │ ├── nopoll_conn.h
│ │ ├── nopoll_conn_opts.h
│ │ ├── nopoll_ctx.h
│ │ ├── nopoll_decl.h
│ │ ├── nopoll.h
│ │ ├── nopoll_handlers.h
│ │ ├── nopoll_io.h
│ │ ├── nopoll_listener.h
│ │ ├── nopoll_log.h
│ │ ├── nopoll_loop.h
│ │ ├── nopoll_msg.h
│ │ ├── nopoll_private.h
│ │ └── nopoll_win32.h
│ ├── spiffs
│ │ ├── spiffs_config.h
│ │ ├── spiffs.h
│ │ └── spiffs_nucleus.h
│ └── ssl
│ ├── ssl_bigint.h
│ ├── ssl_bigint_impl.h
│ ├── ssl_compat-1.0.h
│ ├── ssl_config.h
│ ├── ssl_crypto.h
│ ├── ssl_crypto_misc.h
│ ├── ssl_os_port.h
│ ├── ssl_platform.h
│ ├── ssl_ssl.h
│ ├── ssl_tls1.h
│ └── ssl_version.h
├── ld
│ ├── eagle.app.v6.common.ld
│ ├── eagle.app.v6.ld
│ ├── eagle.app.v6.new.1024.app1.ld
│ ├── eagle.app.v6.new.1024.app2.ld
│ ├── eagle.app.v6.new.2048.ld
│ ├── eagle.app.v6.new.512.app1.ld
│ ├── eagle.app.v6.new.512.app2.ld
│ └── eagle.rom.addr.v6.ld
├── lib
│ ├── libairkiss.a
│ ├── libcirom.a
│ ├── libcrypto.a
│ ├── libespconn.a
│ ├── libespnow.a
│ ├── libetilink.a
│ ├── libfac.a
│ ├── libfreertos.a
│ ├── libgcc.a
│ ├── libjson.a
│ ├── liblwip.a
│ ├── libmain.a
│ ├── libmesh.a
│ ├── libminic.a
│ ├── libmirom.a
│ ├── libnet80211.a
│ ├── libnopoll.a
│ ├── libphy.a
│ ├── libpp.a
│ ├── libpwm.a
│ ├── libsmartconfig.a
│ ├── libspiffs.a
│ ├── libssc.a
│ ├── libssl.a
│ ├── libwpa.a
│ └── libwps.a
├── LICENSE
├── Makefile
├── README.md
├── SI
│ ├── ESP8266.IAB
│ ├── ESP8266.IAD
│ ├── ESP8266.IMB
│ ├── ESP8266.IMD
│ ├── ESP8266.PFI
│ ├── ESP8266.PO
│ ├── ESP8266.PR
│ ├── ESP8266.PRI
│ ├── ESP8266.PS
│ ├── ESP8266.SearchResults
│ └── ESP8266.WK3
├── third_party
│ ├── freertos
│ │ ├── croutine.c
│ │ ├── heap_4.c
│ │ ├── list.c
│ │ ├── Makefile
│ │ ├── port.c
│ │ ├── queue.c
│ │ ├── readme.txt
│ │ ├── tasks.c
│ │ └── timers.c
│ ├── json
│ │ ├── cJSON.c
│ │ └── Makefile
│ ├── lwip
│ │ ├── api
│ │ │ ├── api_lib.c
│ │ │ ├── api_msg.c
│ │ │ ├── err.c
│ │ │ ├── Makefile
│ │ │ ├── netbuf.c
│ │ │ ├── netdb.c
│ │ │ ├── netifapi.c
│ │ │ ├── sockets.c
│ │ │ └── tcpip.c
│ │ ├── arch
│ │ │ ├── Makefile
│ │ │ └── sys_arch.c
│ │ ├── core
│ │ │ ├── def.c
│ │ │ ├── dhcp.c
│ │ │ ├── dhcpserver.c
│ │ │ ├── dns.c
│ │ │ ├── inet_chksum.c
│ │ │ ├── init.c
│ │ │ ├── ipv4
│ │ │ │ ├── autoip.c
│ │ │ │ ├── icmp.c
│ │ │ │ ├── igmp.c
│ │ │ │ ├── ip4_addr.c
│ │ │ │ ├── ip4.c
│ │ │ │ ├── ip_frag.c
│ │ │ │ └── Makefile
│ │ │ ├── ipv6
│ │ │ │ ├── dhcp6.c
│ │ │ │ ├── ethip6.c
│ │ │ │ ├── icmp6.c
│ │ │ │ ├── inet6.c
│ │ │ │ ├── ip6_addr.c
│ │ │ │ ├── ip6.c
│ │ │ │ ├── ip6_frag.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── mld6.c
│ │ │ │ ├── nd6.c
│ │ │ │ └── README
│ │ │ ├── Makefile
│ │ │ ├── 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
│ │ │ ├── timers.c
│ │ │ └── udp.c
│ │ ├── FILES
│ │ ├── Makefile
│ │ └── netif
│ │ ├── etharp.c
│ │ ├── ethernetif.c
│ │ ├── FILES
│ │ ├── Makefile
│ │ ├── 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_impl.h
│ │ │ ├── ppp_oe.c
│ │ │ ├── randm.c
│ │ │ ├── randm.h
│ │ │ ├── readme.txt
│ │ │ ├── vj.c
│ │ │ └── vj.h
│ │ └── slipif.c
│ ├── Makefile
│ ├── make_lib.sh
│ ├── nopoll
│ │ ├── Makefile
│ │ ├── nopoll.c
│ │ ├── nopoll_conn.c
│ │ ├── nopoll_conn_opts.c
│ │ ├── nopoll_ctx.c
│ │ ├── nopoll_decl.c
│ │ ├── nopoll_io.c
│ │ ├── nopoll_listener.c
│ │ ├── nopoll_log.c
│ │ ├── nopoll_loop.c
│ │ ├── nopoll_msg.c
│ │ ├── nopoll-regression-client.c
│ │ └── nopoll_win32.c
│ ├── spiffs
│ │ ├── esp_spiffs.c
│ │ ├── Makefile
│ │ ├── spiffs_cache.c
│ │ ├── spiffs_check.c
│ │ ├── spiffs_gc.c
│ │ ├── spiffs_hydrogen.c
│ │ └── spiffs_nucleus.c
│ └── ssl
│ ├── crypto
│ │ ├── Makefile
│ │ ├── sha256.c
│ │ ├── sha384.c
│ │ ├── sha512.c
│ │ ├── ssl_aes.c
│ │ ├── ssl_bigint.c
│ │ ├── ssl_crypto_misc.c
│ │ ├── ssl_hmac.c
│ │ ├── ssl_md5.c
│ │ ├── ssl_rc4.c
│ │ ├── ssl_rsa.c
│ │ └── ssl_sha1.c
│ ├── Makefile
│ └── ssl
│ ├── Makefile
│ ├── ssl_asn1.c
│ ├── ssl_gen_cert.c
│ ├── ssl_loader.c
│ ├── ssl_openssl.c
│ ├── ssl_os_port.c
│ ├── ssl_p12.c
│ ├── ssl_platform.c
│ ├── ssl_tls1.c
│ ├── ssl_tls1_clnt.c
│ ├── ssl_tls1_svr.c
│ └── ssl_x509.c
└── tools
├── gen_appbin.py
├── make_cert.py
└── makefile.sh
56 directories, 442 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论