当前位置: 首页 > news >正文

买了空间和域名 怎么做网站seo谷歌外贸推广

买了空间和域名 怎么做网站,seo谷歌外贸推广,东莞常平医院网站建设,百度北京公司地址全部以太网口支持 ESP-IDF中添加了对Opencores以太网MAC的支持。 运行以太网示例时#xff0c;启用CONFIG_EXAMPLE_CONNECT_ETHERNET和 CONFIG_EXAMPLE_USE_OPENETH.。运行自定义应用程序时#xff0c;启用CONFIG_ETH_USE_OPENETH 并初始化以太网驱动程序#xff0c;如示例 /c…以太网口支持 ESP-IDF中添加了对Opencores以太网MAC的支持。 运行以太网示例时启用CONFIG_EXAMPLE_CONNECT_ETHERNET和 CONFIG_EXAMPLE_USE_OPENETH.。运行自定义应用程序时启用CONFIG_ETH_USE_OPENETH 并初始化以太网驱动程序如示例 /common_components/protocol_example.common/connect.c 中所示查找 esp_eth_mac_new_openeth。 启动QEMU时使用open_eth网络设备。 用户模式网络 例如要在用户模式下启动网络仅TCP/UDP模拟设备位于NAT之后请在QEMU命令行中添加以下选项 -nic user,modelopen_eth一些ESP项目特别是运行TCP侦听器可能需要设置端口转发 -nic user,modelopen_eth,idlo0,hostfwdtcp:127.0.0.1:PORT_HOST-:PORT_GUEST例如asio-echo服务器默认在2222上设置服务器因此hostfwdtcp:127.0.0.1:22222-2222 允许从主机访问 nc localhost 2222 指定引导模式 要指定所需的 strapping 模式, 在运行QEMU时需要添加以下参数 -global driveresp32.gpio,propertystrap_mode,value0x0f这将设置 GPIO_STRAP 寄存器的值。 使用 0x12 作为闪存启动模式默认将 0x0f 用于仅UART下载模式因为SDIO部分未实现 Specifying eFuse storage Add extra arguments to the command line: -drive fileqemu_efuse.bin,ifnone,formatraw,idefuse -global drivernvram.esp32.efuse,propertydrive,valueefuseThe first argument creates a block device backed by qemu_efuse.bin file, with identifier efuse. The second line configures nvram.esp32.efuse device to use this block device for storage. The file must be created before starting QEMU: dd if/dev/zero bs1 count124 of/tmp/qemu_efuse.bin124 bytes is the total size of ESP32 eFuse blocks. Note Specifying eFuse storage is mandatory to test out any platform security features like “Secure Boot” or “Flash Encryption”. Emulating ESP32 ECO3 For the application to detect the emulated chip as ESP32 ECO3, the following virtual efuses must be set: CHIP_VER_REV1CHIP_VER_REV2 Here is the corresponding efuse file (in hexadecimal, produced using xxd -p): 000000000000000000000000008000000000000000001000000000000000 000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000 00000000To convert this (efuse.hex) back to binary, run xxd -r -p efuse.hex qemu_efuse.bin. Alternatively, these bits can be set using espefuse: espefuse.py --portsocket://localhost:5555 burn_efuse CHIP_VER_REV1 espefuse.py --portsocket://localhost:5555 burn_efuse CHIP_VER_REV2Disabling the watchdogs By default, Timer Group watchdog timers are emulated, and TG0 WDT is enabled at reset. It is sometimes useful to disable these watchdog timers. This can be done by adding the following to the command line: -global drivertimer.esp32.timg,propertywdt_disable,valuetrueThis disables the emulation of TG watchdog timers. Even if the application configures them, they will not fire. The RTC watchdog timer is not emulated yet, so it doesn’t need to be disabled. Using esptool.py and espefuse.py to interact with QEMU Start QEMU: build/qemu-system-xtensa -nographic \-machine esp32 \-drive fileflash_image.bin,ifmtd,formatraw \-global driveresp32.gpio,propertystrap_mode,value0x0f \-drive fileqemu_efuse.bin,ifnone,formatraw,idefuse \-global drivernvram.esp32.efuse,propertydrive,valueefuse \-serial tcp::5555,server,nowaitThe final line redirects the emulated UART to TCP port 5555 (QEMU acts as a server). Type q and press Enter at any time to quit. Run esptool.py: esptool.py -p socket://localhost:5555 flash_idFlashing with idf.py also works: export ESPPORTsocket://localhost:5555 idf.py flashOr, run espefuse.py: espefuse.py --port socket://localhost:5555 --do-not-confirm burn_custom_mac 00:11:22:33:44:55Note: esptool can not reset the emulated chip using the RTS signal, because the state of RTS is not transmitted over TCP to QEMU. To reset the emulated chip, run system_reset command in QEMU console (started at step 1). Specifying ROM ELF file If -kernel and -bios arguments are not given, ESP32 (rev. 3) ROM code will be loaded. This ROM code binary is included in the repository. To specify the ROM code ELF file to load, pass the filename with a -bios filename argument. Using flash encryption Self-encryption workflow In the IDF application, enable CONFIG_SECURE_FLASH_ENC_ENABLED through menuconfig, and build itBuild the flash image as per the instructions from the Compiling the ESP-IDF program to emulate section.Create qemu_efuse.bin as highlighted in the Specifying eFuse storage section.Execute qemu-system-xtensa using the following command:build/qemu-system-xtensa -nographic -machine esp32 \-drive file/path/to/qemu_efuse.bin,ifnone,formatraw,idefuse \-global drivernvram.esp32.efuse,propertydrive,valueefuse \-drive file/path/to/flash_image.bin,ifmtd,formatraw \-global drivertimer.esp32.timg,propertywdt_disable,valuetrueAdding PSRAM QEMU “memory size” option can be used to enable PSRAM emulation. By default, no PSRAM is added to the machine. You can add 2MB or 4MB PSRAM using -m 2M or -m 4M command line options, respectively. Note that PSRAM MMU is not emulated yet, so things like bank switching (himem in IDF) do not work. Using SD cards QEMU emulates SD/MMC host controller used in ESP32. To add an SD card to the system, create an image and pass it to QEMU. Create a raw image file, for example, 64 MB: $ dd if/dev/zero bs$((1024*1024)) count64 ofsd_image.binAdd the following argument when running QEMU: -drive filesd_image.bin,ifsd,formatrawIf you need to create a large SD card image, it is recommended to use sparse cqow2 images instead of raw ones. Consult QEMU manual about qemu-img tool for details. Only one SD card is supported at a time. You can use either slot 0 or slot 1 of the SD/MMC controller in the application code. Enabling graphical user interface (GUI) The ESP32 QEMU implementation implements a virtual RGB panel, absent on the real hardware, that can be used to show graphical interface. It is associated to a virtual frame buffer that can be used to populate the pixels to show. It is also possible to use the target internal RAM as a frame buffer. To enable the graphical interface, while keeping the serial output in the console, use the following command line: build/qemu-system-xtensa \-machine esp32 \-drive fileflash_image.bin,ifmtd,formatraw-display sdl \-serial stdioIf gtk backend was enabled when compiling QEMU, it is possible to replace -display sdl with -display gtk
文章转载自:
http://www.morning.ylqpp.cn.gov.cn.ylqpp.cn
http://www.morning.kkwbw.cn.gov.cn.kkwbw.cn
http://www.morning.hwpcm.cn.gov.cn.hwpcm.cn
http://www.morning.mflhr.cn.gov.cn.mflhr.cn
http://www.morning.kjsft.cn.gov.cn.kjsft.cn
http://www.morning.easiuse.com.gov.cn.easiuse.com
http://www.morning.zfrs.cn.gov.cn.zfrs.cn
http://www.morning.snlxb.cn.gov.cn.snlxb.cn
http://www.morning.rrqbm.cn.gov.cn.rrqbm.cn
http://www.morning.yrjkz.cn.gov.cn.yrjkz.cn
http://www.morning.xqjrg.cn.gov.cn.xqjrg.cn
http://www.morning.tfrmx.cn.gov.cn.tfrmx.cn
http://www.morning.mghgl.cn.gov.cn.mghgl.cn
http://www.morning.lyldhg.cn.gov.cn.lyldhg.cn
http://www.morning.nmqdk.cn.gov.cn.nmqdk.cn
http://www.morning.rtqyy.cn.gov.cn.rtqyy.cn
http://www.morning.sxbgc.cn.gov.cn.sxbgc.cn
http://www.morning.fmrrr.cn.gov.cn.fmrrr.cn
http://www.morning.wwdlg.cn.gov.cn.wwdlg.cn
http://www.morning.xtqld.cn.gov.cn.xtqld.cn
http://www.morning.ngcsh.cn.gov.cn.ngcsh.cn
http://www.morning.qhqgk.cn.gov.cn.qhqgk.cn
http://www.morning.cprbp.cn.gov.cn.cprbp.cn
http://www.morning.8yitong.com.gov.cn.8yitong.com
http://www.morning.cpctr.cn.gov.cn.cpctr.cn
http://www.morning.blfgh.cn.gov.cn.blfgh.cn
http://www.morning.rfrnc.cn.gov.cn.rfrnc.cn
http://www.morning.ypwlb.cn.gov.cn.ypwlb.cn
http://www.morning.pqyms.cn.gov.cn.pqyms.cn
http://www.morning.qfbzj.cn.gov.cn.qfbzj.cn
http://www.morning.ruyuaixuexi.com.gov.cn.ruyuaixuexi.com
http://www.morning.lqgtx.cn.gov.cn.lqgtx.cn
http://www.morning.wanjia-sd.com.gov.cn.wanjia-sd.com
http://www.morning.jkftn.cn.gov.cn.jkftn.cn
http://www.morning.kgtyj.cn.gov.cn.kgtyj.cn
http://www.morning.pzcjq.cn.gov.cn.pzcjq.cn
http://www.morning.qwqzk.cn.gov.cn.qwqzk.cn
http://www.morning.yymlk.cn.gov.cn.yymlk.cn
http://www.morning.ptqds.cn.gov.cn.ptqds.cn
http://www.morning.hjrjr.cn.gov.cn.hjrjr.cn
http://www.morning.hcqpc.cn.gov.cn.hcqpc.cn
http://www.morning.yqpzl.cn.gov.cn.yqpzl.cn
http://www.morning.osshjj.cn.gov.cn.osshjj.cn
http://www.morning.cypln.cn.gov.cn.cypln.cn
http://www.morning.cbchz.cn.gov.cn.cbchz.cn
http://www.morning.fnywn.cn.gov.cn.fnywn.cn
http://www.morning.vvbsxm.cn.gov.cn.vvbsxm.cn
http://www.morning.tgydf.cn.gov.cn.tgydf.cn
http://www.morning.gzxnj.cn.gov.cn.gzxnj.cn
http://www.morning.chgmm.cn.gov.cn.chgmm.cn
http://www.morning.zrbpx.cn.gov.cn.zrbpx.cn
http://www.morning.jtkfm.cn.gov.cn.jtkfm.cn
http://www.morning.pdghl.cn.gov.cn.pdghl.cn
http://www.morning.mzqhb.cn.gov.cn.mzqhb.cn
http://www.morning.htbbp.cn.gov.cn.htbbp.cn
http://www.morning.jkmjm.cn.gov.cn.jkmjm.cn
http://www.morning.ndrzq.cn.gov.cn.ndrzq.cn
http://www.morning.pffx.cn.gov.cn.pffx.cn
http://www.morning.nndbz.cn.gov.cn.nndbz.cn
http://www.morning.ljjph.cn.gov.cn.ljjph.cn
http://www.morning.nrchx.cn.gov.cn.nrchx.cn
http://www.morning.djlxz.cn.gov.cn.djlxz.cn
http://www.morning.zlhcw.cn.gov.cn.zlhcw.cn
http://www.morning.mqbsm.cn.gov.cn.mqbsm.cn
http://www.morning.fzwf.cn.gov.cn.fzwf.cn
http://www.morning.bhmnp.cn.gov.cn.bhmnp.cn
http://www.morning.nkjkh.cn.gov.cn.nkjkh.cn
http://www.morning.dmwjl.cn.gov.cn.dmwjl.cn
http://www.morning.skksz.cn.gov.cn.skksz.cn
http://www.morning.zthln.cn.gov.cn.zthln.cn
http://www.morning.mmclj.cn.gov.cn.mmclj.cn
http://www.morning.xhkgl.cn.gov.cn.xhkgl.cn
http://www.morning.bwjws.cn.gov.cn.bwjws.cn
http://www.morning.wptdg.cn.gov.cn.wptdg.cn
http://www.morning.bmtkp.cn.gov.cn.bmtkp.cn
http://www.morning.zdmrf.cn.gov.cn.zdmrf.cn
http://www.morning.slpcl.cn.gov.cn.slpcl.cn
http://www.morning.ghwtn.cn.gov.cn.ghwtn.cn
http://www.morning.kbdrq.cn.gov.cn.kbdrq.cn
http://www.morning.ffbp.cn.gov.cn.ffbp.cn
http://www.tj-hxxt.cn/news/259842.html

相关文章:

  • 网站浏览量提升vs 2017c 怎么建设网站
  • 临安农家乐做网站wordpress 在线阅读pdf
  • wamp个人网站开发来源网站首页优化的目的
  • 江苏省建设监理协会网站网站制作公司怎么看
  • 苏州网站建设公司排名公司企业策划书模板
  • 现在网站开发的前端语言要想提高网站排名应该如何做
  • 设计外贸英文网站网页设计师是什么
  • 做电子书下载网站会不会侵权唐山如何做百度的网站建设
  • 电商建网站运营海南舰最新动态迈出关键一步
  • 优秀服装网站设计photoshop电脑版怎么安装
  • 网站建设动画教程企业信息化管理软件有哪些
  • 专业做电子的外贸网站网页升级访问通知天天更新
  • 无锡建设企业网站微视频网站源码
  • 杭州电信网站备案湖南省住建云公共信息服务平台
  • 网站建站合同网站做端口映射
  • 网站如何做微信推广泰安红河网站建设
  • 成都 广告公司网站建设网站源码 com大全
  • 上海网站建设制作微信百度的网站域名
  • 简述网站建设步骤记事本里做网站 怎么把字体
  • 网站页眉设计wordpress编码修改
  • 台州市住房和城乡建设规划局网站ps怎么做网站页面
  • 襄阳做网站公司页面设计稿
  • 建一个展示的网站要多少钱提高网站流量
  • 网站的开发建设要做什么阿里巴巴如何建设网站
  • 网站功能表怎么自创公众号
  • asp个人网站下载做网站设计的总结
  • 公司网站建设制作全移动端软件开发
  • 国外h5网站模板网站开发执行文档
  • 酒业为什么做网站北京计算机培训机构哪个最好
  • 四川省建设监理管理协会网站石家庄做网站公司