摘要: 安装aws-cdk npm install -g aws-cdk 提示了我升级新的npm版本。 cdk --version 同样提示了我升级新的npm版本 安装图一的提示执行npm install -g npm@10.3.0 这个错误表明在运行 npm install 时,遇到了与 Node.js 阅读全文
posted @ 2024-01-17 11:47 空水 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 版本号: 1.11.1 PCL LOG Level ALWAYS ERROR WARN INFO DEBUG VERBOSE 设置 PCL log level 的方法 1. 使用环境变量 在编译和运行 PCL 程序之前,可以设置 PCL_VERBOSITY_LEVEL 环境变量。例如,在终端中执行以 阅读全文
posted @ 2024-01-15 11:40 空水 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ProtoBufEditor 解析bin文件和json文件 ProtoBufEditor 是一个用于编辑 Protocol Buffers(ProtoBuf)文件的工具。 下载链接 https://protobufeditor.sourceforge.net/ 支持导入的文件类型 Single Me 阅读全文
posted @ 2024-01-10 17:53 空水 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 错误 10:17:34 FATAL: Unable to produce a script file 10:17:34 Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to xxxxxxx 10:17:34 at hudso 阅读全文
posted @ 2023-12-26 11:23 空水 阅读(129) 评论(0) 推荐(0) 编辑
摘要: > esp-idf的版本是V4.4.2 ## idf menuconfig使能片外Flash ![](https://img2023.cnblogs.com/blog/1347181/202308/1347181-20230816183750594-1959879316.png) ## idf bu 阅读全文
posted @ 2023-08-16 18:39 空水 阅读(18) 评论(0) 推荐(0) 编辑
摘要: - esp-idf版本 - tag-V4.4.2 - 示例路径 - examples/wifi/iperf ## iperf_example_main.c(修改后的版本) ```c /* Wi-Fi iperf Example This example code is in the Public D 阅读全文
posted @ 2023-07-30 10:56 空水 阅读(268) 评论(0) 推荐(0) 编辑
摘要: # Sample Ayla Support Request ## Information that should be supplied in a support request: - **Severity** - 1, 2, 3 - **Description** of the issue. Pl 阅读全文
posted @ 2023-07-27 10:58 空水 阅读(18) 评论(0) 推荐(0) 编辑
摘要: ## 示例用的文档及链接 1. US Dev Dashboard(查看oem-id和oem-key) https://dashboard-dev.aylanetworks.com/ 1. Ayla API Reference(绑定用户,设备和Ayla云) https://docs.aylanetwo 阅读全文
posted @ 2023-07-11 17:06 空水 阅读(82) 评论(0) 推荐(0) 编辑
摘要: # [ESP] 私有版Rainmaker User Mapping ## 1. 设备烧录的程序rainmaker自带gpio示例 > 我这里是自己的工程,可以参照 1. idf.py set-target esp32 2. idf.py build 3. idf.py -p /dev/ttyUSB0 阅读全文
posted @ 2023-06-14 16:22 空水 阅读(175) 评论(0) 推荐(0) 编辑
摘要: # ESP-IDF BLE配网(BLE + GATT Server)代备注 * ESP-IDF的版本是V5.0 * 使用 BLE 配网时,为了允许服务发现,必须在开始配置之前初始化 mDNS。 * protocomm_security 一共有3个选项,这里只说**protocomm_security 阅读全文
posted @ 2023-06-02 17:01 空水 阅读(164) 评论(0) 推荐(0) 编辑
摘要: # 解决Slidev export导出pdf报错 ## 问题 按照**Slidev**的官方文档使用导出为pdf需要安装**playwright-chromium** 官网安装方法如下: ```shell npm i -D playwright-chromium ``` 在我电脑上执行安装后直接执行 阅读全文
posted @ 2023-05-31 14:54 空水 阅读(173) 评论(0) 推荐(0) 编辑
摘要: ## 报错信息 ```shell xtensa-esp32-elf-gcc is not a full path and was not found in the PATH. ``` ## 解决办法 1. 找到**esp-idf**的**export.sh**路径,如:**/home/xxx/esp 阅读全文
posted @ 2023-05-29 14:53 空水 阅读(71) 评论(0) 推荐(0) 编辑
摘要: # ESP-IDF WiFi配网(SoftAP+HTTPD)代码备注 主要是为了方便了解实际代码层面的配网协议是什么样的,所以文档记录的基本上是代码片段。 * ESP-IDF的版本是V5.0 * 使用 SoftAP 传输时,为了允许服务发现,必须在开始配置之前初始化 mDNS。 * protocom 阅读全文
posted @ 2023-05-26 18:42 空水 阅读(392) 评论(0) 推荐(0) 编辑
摘要: # 规范Commit格式 **Jenkins**根据对比当次构建和上次构建的Commit信息来生成**ChangeLog**,但因为我们目前的提交不够规范,经常有类似"#","update"这列的提交,无法提供给PM有效的更新记录,所以建议大家尽量规范Commit格式。 ## Conventiona 阅读全文
posted @ 2023-04-14 09:47 空水 阅读(355) 评论(0) 推荐(1) 编辑
摘要: # 第三方库SDK需要满足的要求 ## 开发规范 1. 如果使用多线程,每个线程必须命名 2. 要有统一的log格式,方便在log文件内单独筛选出第三方库的log,ex: [LDLidar] ..... 3. log打印要尽量少,关键信息必须打印,最好可以设置log的级别,如**Debug**,** 阅读全文
posted @ 2023-02-14 10:25 空水 阅读(56) 评论(0) 推荐(0) 编辑