上一页 1 2 3 4 5 6 7 8 ··· 76 下一页
摘要: 修改日志输出级别 #define LOG_LOCAL_LEVEL ESP_LOG_ERROR #include "esp_log.h" #define GATTS_TAG "GATTS_DEMO" ESP_LOGE(GATTS_TAG, "Advertising start failed\n"); 阅读全文
posted @ 2023-12-05 10:41 ahuo 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-11-27 11:50 ahuo 阅读(2) 评论(0) 推荐(0) 编辑
摘要: docker exec -u 0 -it <container_id> /bin/bash 阅读全文
posted @ 2023-11-24 10:41 ahuo 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1. 上传证书,/usr/local/share/ca-certificates/ crt后缀的格式 2. 更新,update-ca-certificates 3. 验证,tail /etc/ssl/certs/ca-certificates.crt -n 50 阅读全文
posted @ 2023-11-22 14:19 ahuo 阅读(252) 评论(0) 推荐(0) 编辑
摘要: =VLOOKUP(E1,A1:B3,2) 阅读全文
posted @ 2023-11-16 14:12 ahuo 阅读(3) 评论(0) 推荐(0) 编辑
摘要: | 模型 | 参数数量 || | || AlexNet | 约 60 million || VGG16 | 约 138 million || ResNet50 | 约 25 million || InceptionV3 | 约 23 million || MobileNetV2 | 约 3.5 mi 阅读全文
posted @ 2023-11-14 18:20 ahuo 阅读(15) 评论(0) 推荐(0) 编辑
摘要: I2C 4.7K IR接收管的上拉 10K 3.3V 阅读全文
posted @ 2023-11-14 14:03 ahuo 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 红色(VCC) 白色(D-[ DM ]) 绿色(D+[ DP ]) 黑色(GND) 阅读全文
posted @ 2023-11-14 14:00 ahuo 阅读(584) 评论(0) 推荐(0) 编辑
摘要: docker-compose.yml services: db: image: mariadb:10.11 container_name: seafile-mysql environment: - MYSQL_ROOT_PASSWORD=12345678 # Requested, set the r 阅读全文
posted @ 2023-11-02 15:02 ahuo 阅读(180) 评论(0) 推荐(0) 编辑
摘要: can't find package Expect while executing "package require Expect" (file "unbuffer"" line 6) 原因是/usr/lib/缺少了/usr/lib/expect5.45/libexpect5.45.so 找到这个文 阅读全文
posted @ 2023-10-31 17:26 ahuo 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 临时保存密码 git config --global credential.helper cache 取消最近一次条件 git reset HEAD~1 git branch -vv 删除远端分支 git push origin --delete 删除文件夹的历史记录 git count-objec 阅读全文
posted @ 2023-10-26 17:47 ahuo 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #PC Linux X86 / X86_64 编译mkdir buildcd buildcmake ..make #嵌入式Linux aarch64mkdir buildcd buildCC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++ cmake 阅读全文
posted @ 2023-10-24 17:15 ahuo 阅读(113) 评论(0) 推荐(0) 编辑
摘要: update-alternatives --config gcc 选择编号 gcc --version测试 gcc库目录 ls /usr/lib/gcc/x86_64-linux-gnu/ 阅读全文
posted @ 2023-10-24 15:34 ahuo 阅读(21) 评论(0) 推荐(0) 编辑
摘要: # Name, Type, SubType, Offset, Size, Flags # Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap,,,, nvs 阅读全文
posted @ 2023-10-20 15:03 ahuo 阅读(102) 评论(0) 推荐(0) 编辑
摘要: #!/usr/local/bin/python3 import datetime, bisect def parse_timestamp(raw_str): tokens = raw_str.split() if len(tokens) == 1: if tokens[0].lower() == ' 阅读全文
posted @ 2023-10-18 14:03 ahuo 阅读(66) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 76 下一页