嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
lORA GW1302的延时代码,代码很完善, 可以直接用于工程
gw1302s-master
├── LICENSE.TXT
├── Makefile
├── SX1302-LoRa-Gateway-project.md
├── VERSION
├── doc
│ ├── M-PCI-GW2-Pi-schematic.pdf
│ ├── faq.md
│ ├── faq.pdf
│ ├── image
│ │ ├── image-20210628230809221.png
│ │ ├── image-20210628231406568.png
│ │ ├── image-20210628231441094.png
│ │ └── image-20210628233639633.png
│ └── 安装说明.md
├── install.sh
├── libloragw
│ ├── Makefile
│ ├── inc
│ │ ├── loragw_ad5338r.h
│ │ ├── loragw_agc_params.h
│ │ ├── loragw_aux.h
│ │ ├── loragw_cal.h
│ │ ├── loragw_com.h
│ │ ├── loragw_debug.h
│ │ ├── loragw_gps.h
│ │ ├── loragw_hal.h
│ │ ├── loragw_i2c.h
│ │ ├── loragw_lbt.h
│ │ ├── loragw_mcu.h
│ │ ├── loragw_reg.h
│ │ ├── loragw_spi.h
│ │ ├── loragw_stts751.h
│ │ ├── loragw_sx1250.h
│ │ ├── loragw_sx125x.h
│ │ ├── loragw_sx1261.h
│ │ ├── loragw_sx1302.h
│ │ ├── loragw_sx1302_rx.h
│ │ ├── loragw_sx1302_timestamp.h
│ │ ├── loragw_usb.h
│ │ ├── sx1250_com.h
│ │ ├── sx1250_defs.h
│ │ ├── sx1250_spi.h
│ │ ├── sx1250_usb.h
│ │ ├── sx125x_com.h
│ │ ├── sx125x_spi.h
│ │ ├── sx1261_com.h
│ │ ├── sx1261_defs.h
│ │ ├── sx1261_spi.h
│ │ └── sx1261_usb.h
│ ├── library.cfg
│ ├── readme.md
│ ├── src
│ │ ├── agc_fw_sx1250.var
│ │ ├── agc_fw_sx1257.var
│ │ ├── arb_fw.var
│ │ ├── cal_fw.var
│ │ ├── loragw_ad5338r.c
│ │ ├── loragw_aux.c
│ │ ├── loragw_cal.c
│ │ ├── loragw_com.c
│ │ ├── loragw_debug.c
│ │ ├── loragw_gps.c
│ │ ├── loragw_hal.c
│ │ ├── loragw_i2c.c
│ │ ├── loragw_lbt.c
│ │ ├── loragw_mcu.c
│ │ ├── loragw_reg.c
│ │ ├── loragw_spi.c
│ │ ├── loragw_stts751.c
│ │ ├── loragw_sx1250.c
│ │ ├── loragw_sx125x.c
│ │ ├── loragw_sx1261.c
│ │ ├── loragw_sx1302.c
│ │ ├── loragw_sx1302_rx.c
│ │ ├── loragw_sx1302_timestamp.c
│ │ ├── loragw_usb.c
│ │ ├── sx1250_com.c
│ │ ├── sx1250_spi.c
│ │ ├── sx1250_usb.c
│ │ ├── sx125x_com.c
│ │ ├── sx125x_spi.c
│ │ ├── sx1261_com.c
│ │ ├── sx1261_pram.var
│ │ ├── sx1261_spi.c
│ │ └── sx1261_usb.c
│ └── tst
│ ├── test_loragw_cal_sx125x.c
│ ├── test_loragw_capture_ram.c
│ ├── test_loragw_com.c
│ ├── test_loragw_com_sx1250.c
│ ├── test_loragw_com_sx1261.c
│ ├── test_loragw_counter.c
│ ├── test_loragw_gps.c
│ ├── test_loragw_hal_rx.c
│ ├── test_loragw_hal_tx.c
│ ├── test_loragw_i2c.c
│ ├── test_loragw_reg.c
│ ├── test_loragw_sx1261_rssi.c
│ └── test_loragw_toa.c
├── libtools
│ ├── Makefile
│ ├── inc
│ │ ├── base64.h
│ │ ├── parson.h
│ │ └── tinymt32.h
│ └── src
│ ├── base64.c
│ ├── parson.c
│ └── tinymt32.c
├── packet_forwarder
│ ├── Makefile
│ ├── PROTOCOL.md
│ ├── global_conf.json
│ ├── global_conf.json.sx1250.AS923.USB
│ ├── global_conf.json.sx1250.CN490
│ ├── global_conf.json.sx1250.CN490.USB
│ ├── global_conf.json.sx1250.EU868
│ ├── global_conf.json.sx1250.EU868.USB
│ ├── global_conf.json.sx1250.US915
│ ├── global_conf.json.sx1250.US915.USB
│ ├── global_conf.json.sx1255.CN490.full-duplex
│ ├── global_conf.json.sx1257.EU868
│ ├── gwstart.sh
│ ├── inc
│ │ ├── jitqueue.h
│ │ └── trace.h
│ ├── readme.md
│ ├── src
│ │ ├── jitqueue.c
│ │ └── lora_pkt_fwd.c
│ └── update_gwid.sh
├── readme.md
├── setup
│ └── loragw.service
├── target.cfg
├── tools
│ ├── node-red-registers.json
│ ├── payload_tools
│ │ ├── Makefile
│ │ ├── payload_crc.c
│ │ ├── payload_diff.c
│ │ └── payload_gen.c
│ ├── reset_lgw.sh
│ └── systemd
│ ├── lora_pkt_fwd.conf
│ ├── lora_pkt_fwd.service
│ └── readme.md
├── util_boot
│ ├── Makefile
│ ├── readme.md
│ └── src
│ └── boot.c
├── util_chip_id
│ ├── Makefile
│ ├── readme.md
│ └── src
│ └── chip_id.c
├── util_net_downlink
│ ├── Makefile
│ ├── readme.md
│ └── src
│ └── net_downlink.c
└── util_spectral_scan
├── Makefile
├── plot_rssi_histogram.py
├── readme.md
└── src
└── spectral_scan.c
24 directories, 144 files