fix: 添加clangd和iperf工具

This commit is contained in:
luozhikun 2024-04-07 09:23:44 +08:00
parent 6d4a298b46
commit 24eb664d8d
4 changed files with 6 additions and 2 deletions

View File

@ -253,6 +253,11 @@ MODULE_LICENSE("GPL");
MODULE_AUTHOR("zuozhongkai");
```
#### platform驱动
>- i2c,spi等都属于此类驱动i2c控制器驱动和spi控制器驱动就相当于platform驱动通过core注册。
i2c和spi设备分别可通过内核态或者用户态控制。platform驱动匹配过程->driver_register->bus_add_driver
->driver_attach->__driver_attach->device_driver_attach->driver_probe_device->really_probe-> drv->probe(dev)
或者 dev->bus->probe(dev)
```
#include <linux/types.h>
#include <linux/kernel.h>

View File

@ -1,6 +1,5 @@
https://www.kancaibao.com/ep
一定要按策略操作
股债比高的时候找买点,低的时候找卖点
买点:买在上涨趋势,第二个峰值大于第一个峰值的时候
买点:买在上涨趋势,第二个峰值大于第一个峰值的时候(缩量上涨,或者上涨的曲率明显比量上涨的曲率大)
卖点:卖在类似下降趋势,第二个峰小于前一个峰的时候
买点卖点还需配合股债比,macd曲线和加息降息汇率一般美元兑人民币越高a股越低

BIN
tool/ubuntu/clangd/clangd Executable file

Binary file not shown.

BIN
tool/ubuntu/iperf/iperf3 Executable file

Binary file not shown.