NRF52840DK PCA10056 BLE Mesh Light例程记录
1.创建项目
在打开的VS Code窗口,打开nRF Connect 选项卡,"Create a new application" 选择 "Copy a sample "
输入" light ", 选择 "Bluetooth Mesh light".
选择copy后,保存的路径。
键盘 "Enter" 一下。
点击 "Add Build Configuration"
Build...
烧录Flash
也可以通过命令行进行烧录:
west flash
备注:这样直接烧录,有一部分项目可能会烧写失败,显示如下。
这是因为,Nordic的MCU中通常都有一个用于存储用户信息的寄存器(UICR),可以认为是一块特殊的flash区域,存储了客户自己的加密密钥、引脚配置等产品信息。
由于信息安全的原因,是不允许在保持UICR不变的情况下烧写新的固件的。相关资料,可以参考Nordic芯片数据手册的UICR章节。
这种情况下只能全片擦除然后再烧录,点击Flash右边的按钮:
或者使用命令行方式:
west flash --force --erase
2. nRF Connect SDK documentation 链接
https://infocenter.nordicsemi.com/index.jsp?topic=%2Fstruct_sdk%2Fstruct%2Fsdk_mesh_latest.html
3.Bluetooth Mesh samples 链接
https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/mesh.html