摘要:
官网下载frp [ https://github.com/fatedier/frp/releases ] 1.frps配置(服务端) 解压 tar -zxvf frp_0.60.0_linux_amd64.tar.gz 进入该目录 cd frp_0.60.0_linux_amd64 编辑frps.t 阅读全文
摘要:
广播报文结构 一个完整的BLE广播报文由四部分组成,分别是前导码、接入地址、协议数据单元和CRC校验码。 Preamble 前导 Access address(接入设备) PDU CRC校验 1 Bytes 4 Bytes 2-37 Bytes 3 Bytes 前导码:用来同步时序,可以是0x55或 阅读全文
摘要:
git reset --soft <commit> git reset --hard <commit> git reset --mixed <commit> //默认这个版本 首先执行git log 查看本地有那些版本的代码。 执行 git reset --soft c97f6b343c6b6d04 阅读全文
摘要:
遇到../CMSIS/cmsis_compiler.h(47): error: 'cmsis_armclang.h' file not found这种报错 一般是缺少两个文件cmsis_armclang.h和mpu_armv8.h这两个文件,这两个文件在官方例程能被自动寻到。 自己新建工程无法找到所 阅读全文
摘要:
curl ifconfig.me curl icanhazip.com curl curlmyip.com curl ip.appspot.com curl ipinfo.io/ip curl ipecho.net/plain curl www.trackip.net/i #补充 curl ip.s 阅读全文
摘要:
本项目可以挂载到腾讯云函数上,也可以在服务器上运行。 1 import re 2 import time 3 import datetime 4 5 import requests 6 7 8 class XiaoMi: 9 10 headers = { 11 'Content-Type': 'ap 阅读全文