标签:连接 rtos ref sel level 1.3 比较 环境 mingw
when debuging,you‘d better select the project title first.
otherwise, it will be not up to date.
Unable to connect to the target device.
Failed to get Device ID
方法:将usb下载线断开重新连接即可
注意调试好软件功能后,再添加flash写的功能,防止写的次数超过最大的次数。
/COM3—对应Windows下真实的串口
COM口编号最好是3以下
只能使用mingw32模式,不能使用msys,在app下输入eg:hello,world
make app-flash
git clone –recursive https://github.com/espressif/esp-idf.git
cd ~/esp/esp-idf
git pull
git submodule update –init –recursive
start.s->cpuinitcp15—>cpuinitcrit->lowlevelinit(mach-zynq/lowlevelinit.s)
->main(crt0.s)->boardinitf(common/boardf.c)->initsequencef(common/boardf.c)
->relocatecode(relocate.s)->relocatevectors(relocate.s)->cruntimecpusetup(start.s)
->boardinitr(common/boardr.c)->initsequencer(common/boardr.c)->runmainloop(common/boardr.c)
->mainloop(main.c)->bootdelayprocess()->autobootcommand(s)->cliloop->clisimpleloop()(for(;;))
command parse
runcommandlist(s, -1, 0)->clisimpleruncommandlist(buff, flag)->clisimpleruncommand->cmdprocess
->cmdcall(cmdtp, flag, argc, argv)
bootm->dobootm->dobootmstates->bootfn->dobootmlinux->bootjumplinux->kernelentry(0, machid, r2
head.s->_mmapswitched(head-common.s)->startkernel(main.c)->restinit
->kernelthread->kernelinit
sp->CONFIGSYSINITSPADDR 0xFFFF0000+0x1000-GENERATEDGBLDATASIZE
sp->(sp-GDSIZE) CONFIGSYSINITSPADDR-184
The command "make headersinstallall" exports headers for all architectures
simultaneously.
如果提示冲突,则使用pacman -S –force mingw-w64-x8664-toolchain
pacman -S base-devel 开发的各种辅助工具
pacman -S –force mingw-w64-x8664-gtk3 安装gtk
要指定编译的工具路径
export CC=/c/msys64/usr/bin/x8664-pc-msys-gcc
export CXX=/c/msys64/usr/bin/x8664-pc-msys-g++
指定生成的Makefile文件类型为MinGW Makefiles
cmake -G "MinGW Makefiles" .
cmake -G "MSYS Makefiles" .
cmake 中的环境变量的设置一律使用大写
180.76.76.76 182.254.116.116
页面创建的时候执行
页面销毁的时候执行
权限的回调
页面的回调
创建按钮之后的回调
通过在较宽的频谱上传送极低功率的信号,UWB能在10米左右的范围内实现
数百Mbit/s至数Gbit/s的数据传输速率。UWB具有抗干扰性能强、传输速率高、
带宽极宽、消耗电能小、发送功率小等诸多优势,主要应用于室内通信、高速无线LAN、
家庭网络、无绳电话、安全检测、位置测定、雷达等领域。
是LPWAN通信技术中的一种,是美国Semtech公司采用和推广的一种
基于扩频技术的超远距离无线传输方案,为用户提供了一种简单的能实现远距离、
长电池寿命、大容量的系统,进而扩展传感网络,目前,LORA主要在全球免费频段运行
,包括314、868、915MHz等。
标签:连接 rtos ref sel level 1.3 比较 环境 mingw
原文地址:https://www.cnblogs.com/e66-source-coder/p/9560705.html