fix: 添加clangd和iperf工具
This commit is contained in:
parent
6d4a298b46
commit
24eb664d8d
|
@ -253,6 +253,11 @@ MODULE_LICENSE("GPL");
|
||||||
MODULE_AUTHOR("zuozhongkai");
|
MODULE_AUTHOR("zuozhongkai");
|
||||||
```
|
```
|
||||||
#### platform驱动
|
#### 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/types.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
https://www.kancaibao.com/ep
|
https://www.kancaibao.com/ep
|
||||||
一定要按策略操作
|
一定要按策略操作
|
||||||
股债比高的时候找买点,低的时候找卖点
|
股债比高的时候找买点,低的时候找卖点
|
||||||
买点:买在上涨趋势,第二个峰值大于第一个峰值的时候
|
买点:买在上涨趋势,第二个峰值大于第一个峰值的时候(缩量上涨,或者上涨的曲率明显比量上涨的曲率大)
|
||||||
卖点:卖在类似下降趋势,第二个峰小于前一个峰的时候
|
卖点:卖在类似下降趋势,第二个峰小于前一个峰的时候
|
||||||
买点卖点还需配合股债比,macd曲线和加息降息,汇率(一般美元兑人民币越高,a股越低)
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue