找传奇、传世资源到传世资源站!

lora

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

lora LINKWAN核心代码
该SDK是针对翱捷公司ASR6505单片机;该版本主要是支持linkwan平台,支持AT指令;from clipboardasr6505_sdk_at_linkwan-master├── 1_文档资料
│   ├── 1_ASR6505_包含环境搭建等
│   │   ├── ASR6505_Datasheet_V0.3.pdf
│   │   ├── ASR6505_LinkWan参数配置说明.pdf
│   │   ├── ASR6505_芯片API使用手册.pdf
│   │   ├── ASR6505_应用开发DEMO说明.pdf
│   │   ├── ASR6505_参考板测试指南.pdf
│   │   └── ASR6505_应用开发环境搭建指南.pdf
│   ├── 2_STM8L152
│   │   ├── DS_STM8L152.pdf
│   │   └── TRM_STM8L152.pdf
│   ├── 3_SX1262
│   │   ├── AN1200.40_SX1261-2_Reference_Design_Explanation_V1.1.pdf
│   │   └── DS_SX1261-2_V1.0.pdf
│   ├── 4_硬件参考设计
│   │   ├── ASR6505_MODULE_BOARD_V11_190819.DSN
│   │   ├── ASR6505_MODULE_BOARD_V11_190819.pdf
│   │   └── BOM_ASR6505_MODULE_BOARD_V11_190819.xls
│   ├── ASR6501-ASR6502-AT-Commands-Introduction-V4.3.pdf
│   ├── ASR6501_2_5 阻抗匹配_V11_190819.xlsx
│   ├── ASR6505 测试报告_V10_190514.pdf
│   ├── ASR6505_硬件设计应用指南_V11_191008.pdf
│   ├── CMW综测仪LoRa测试指南.pdf
│   └── LoRa 模块RF调试指南.pdf
├── At命令说明.pdf
├── Libraries
│   ├── STM8L15x_StdPeriph_Driver
│   │   ├── inc
│   │   │   ├── stm8l15x.h
│   │   │   ├── stm8l15x_adc.h
│   │   │   ├── stm8l15x_aes.h
│   │   │   ├── stm8l15x_beep.h
│   │   │   ├── stm8l15x_clk.h
│   │   │   ├── stm8l15x_comp.h
│   │   │   ├── stm8l15x_dac.h
│   │   │   ├── stm8l15x_dma.h
│   │   │   ├── stm8l15x_exti.h
│   │   │   ├── stm8l15x_flash.h
│   │   │   ├── stm8l15x_gpio.h
│   │   │   ├── stm8l15x_i2c.h
│   │   │   ├── stm8l15x_irtim.h
│   │   │   ├── stm8l15x_itc.h
│   │   │   ├── stm8l15x_iwdg.h
│   │   │   ├── stm8l15x_lcd.h
│   │   │   ├── stm8l15x_pwr.h
│   │   │   ├── stm8l15x_rst.h
│   │   │   ├── stm8l15x_rtc.h
│   │   │   ├── stm8l15x_spi.h
│   │   │   ├── stm8l15x_syscfg.h
│   │   │   ├── stm8l15x_tim1.h
│   │   │   ├── stm8l15x_tim2.h
│   │   │   ├── stm8l15x_tim3.h
│   │   │   ├── stm8l15x_tim4.h
│   │   │   ├── stm8l15x_tim5.h
│   │   │   ├── stm8l15x_usart.h
│   │   │   ├── stm8l15x_wfe.h
│   │   │   └── stm8l15x_wwdg.h
│   │   └── src
│   │       ├── stm8l15x_aes.c
│   │       ├── stm8l15x_clk.c
│   │       ├── stm8l15x_dma.c
│   │       ├── stm8l15x_exti.c
│   │       ├── stm8l15x_flash.c
│   │       ├── stm8l15x_gpio.c
│   │       ├── stm8l15x_i2c.c
│   │       ├── stm8l15x_iwdg.c
│   │       ├── stm8l15x_lcd.c
│   │       ├── stm8l15x_pwr.c
│   │       ├── stm8l15x_rtc.c
│   │       ├── stm8l15x_spi.c
│   │       ├── stm8l15x_syscfg.c
│   │       ├── stm8l15x_tim1.c
│   │       ├── stm8l15x_tim2.c
│   │       ├── stm8l15x_tim3.c
│   │       ├── stm8l15x_tim4.c
│   │       ├── stm8l15x_tim5.c
│   │       ├── stm8l15x_usart.c
│   │       └── stm8l15x_wwdg.c
│   └── asrlib
│       ├── COSMIC
│       │   └── asrlib.o
│       └── IAR
│           └── asrlib.a
├── LinkWan
│   ├── at_command.c
│   ├── at_command.h
│   ├── linkwan.c
│   ├── linkwan.h
│   ├── lwan_config.c
│   ├── lwan_config.h
│   └── region
│       ├── RegionCN470A.c
│       └── RegionCN470A.h
├── LoRaMac-node
│   └── src
│       ├── apps
│       │   ├── LoRaMac
│       │   │   ├── CMakeLists.txt
│       │   │   ├── classA
│       │   │   │   └── ASR6505
│       │   │   │       ├── Commissioning.h
│       │   │   │       └── main.c
│       │   │   └── classC
│       │   │       └── ASR6505
│       │   │           ├── Commissioning.h
│       │   │           └── main.c
│       │   └── ping-pong
│       │       ├── ASR6505
│       │       │   └── main.c
│       │       └── CMakeLists.txt
│       ├── boards
│       │   ├── ASR6505
│       │   │   ├── board-config.h
│       │   │   ├── board.c
│       │   │   ├── delay-board.c
│       │   │   ├── gpio-board.c
│       │   │   ├── spi-board.c
│       │   │   └── sx1262-board.c
│       │   ├── CMakeLists.txt
│       │   ├── adc-board.h
│       │   ├── board.h
│       │   ├── delay-board.h
│       │   ├── display-board.h
│       │   ├── eeprom-board.h
│       │   ├── gpio-board.h
│       │   ├── gps-board.h
│       │   ├── i2c-board.h
│       │   ├── mcu
│       │   │   └── utilities.c
│       │   ├── pinName-board.h
│       │   ├── pinName-ioe.h
│       │   ├── rtc-board.h
│       │   ├── spi-board.h
│       │   ├── sx126x-board.h
│       │   ├── sx1272-board.h
│       │   ├── sx1276-board.h
│       │   ├── uart-board.h
│       │   ├── uart-usb-board.h
│       │   └── utilities.h
│       ├── mac
│       │   ├── CMakeLists.txt
│       │   ├── LoRaMac.c
│       │   ├── LoRaMac.h
│       │   ├── LoRaMacCrypto.c
│       │   ├── LoRaMacCrypto.h
│       │   ├── LoRaMacTest.h
│       │   └── region
│       │       ├── Region.c
│       │       ├── Region.h
│       │       ├── RegionAS923.c
│       │       ├── RegionAS923.h
│       │       ├── RegionAU915.c
│       │       ├── RegionAU915.h
│       │       ├── RegionCN470.c
│       │       ├── RegionCN470.h
│       │       ├── RegionCN779.c
│       │       ├── RegionCN779.h
│       │       ├── RegionCommon.c
│       │       ├── RegionCommon.h
│       │       ├── RegionEU433.c
│       │       ├── RegionEU433.h
│       │       ├── RegionEU868.c
│       │       ├── RegionEU868.h
│       │       ├── RegionIN865.c
│       │       ├── RegionIN865.h
│       │       ├── RegionKR920.c
│       │       ├── RegionKR920.h
│       │       ├── RegionUS915-Hybrid.c
│       │       ├── RegionUS915-Hybrid.h
│       │       ├── RegionUS915.c
│       │       └── RegionUS915.h
│       ├── peripherals
│       │   ├── CMakeLists.txt
│       │   ├── gpio-ioe.c
│       │   ├── gpio-ioe.h
│       │   ├── mag3110.c
│       │   ├── mag3110.h
│       │   ├── mma8451.c
│       │   ├── mma8451.h
│       │   ├── mpl3115.c
│       │   ├── mpl3115.h
│       │   ├── pam7q.c
│       │   ├── pam7q.h
│       │   ├── sx1509.c
│       │   ├── sx1509.h
│       │   ├── sx9500.c
│       │   └── sx9500.h
│       ├── radio
│       │   ├── CMakeLists.txt
│       │   ├── radio.h
│       │   └── sx126x
│       │       ├── radio.c
│       │       ├── sx126x.c
│       │       └── sx126x.h
│       └── system
│           ├── CMakeLists.txt
│           ├── adc.c
│           ├── adc.h
│           ├── crypto
│           │   ├── aes.c
│           │   ├── aes.h
│           │   ├── cmac.c
│           │   └── cmac.h
│           ├── delay.c
│           ├── delay.h
│           ├── eeprom.c
│           ├── eeprom.h
│           ├── fifo.c
│           ├── fifo.h
│           ├── gpio.c
│           ├── gpio.h
│           ├── gps.c
│           ├── gps.h
│           ├── i2c.c
│           ├── i2c.h
│           ├── serial.h
│           ├── spi.h
│           ├── timer.c
│           ├── timer.h
│           ├── uart.c
│           └── uart.h
├── Projects
│   ├── LoRaATCmd
│   │   ├── EWSTM8
│   │   │   ├── BuildLog.log
│   │   │   ├── Debug
│   │   │   │   ├── Exe
│   │   │   │   │   ├── asr6505_linkwan_20200311.s19
│   │   │   │   │   ├── asr6505_linkwan_20200311_02.s19
│   │   │   │   │   ├── project.hex
│   │   │   │   │   └── project.s19
│   │   │   │   └── Obj
│   │   │   │       ├── LoRaMac.pbi.xcl
│   │   │   │       ├── LoRaMacCrypto.pbi.xcl
│   │   │   │       ├── Region.pbi.xcl
│   │   │   │       ├── RegionCN470A.pbi
│   │   │   │       ├── RegionCN470A.pbi.xcl
│   │   │   │       ├── RegionCommon.pbi.xcl
│   │   │   │       ├── aes.pbi.xcl
│   │   │   │       ├── at_command.pbi
│   │   │   │       ├── at_command.pbi.xcl
│   │   │   │       ├── board.pbi.xcl
│   │   │   │       ├── cmac.pbi.xcl
│   │   │   │       ├── delay-board.pbi.xcl
│   │   │   │       ├── delay.pbi.xcl
│   │   │   │       ├── gpio-board.pbi.xcl
│   │   │   │       ├── gpio.pbi.xcl
│   │   │   │       ├── linkwan.pbi
│   │   │   │       ├── linkwan.pbi.xcl
│   │   │   │       ├── lwan_config.pbi
│   │   │   │       ├── lwan_config.pbi.xcl
│   │   │   │       ├── main.pbi.xcl
│   │   │   │       ├── project.pbd
│   │   │   │       ├── radio.pbi.xcl
│   │   │   │       ├── spi-board.pbi.xcl
│   │   │   │       ├── stm8_interrupt_vector.pbi.xcl
│   │   │   │       ├── stm8l15x_aes.pbi.xcl
│   │   │   │       ├── stm8l15x_clk.pbi.xcl
│   │   │   │       ├── stm8l15x_dma.pbi.xcl
│   │   │   │       ├── stm8l15x_exti.pbi.xcl
│   │   │   │       ├── stm8l15x_flash.pbi.xcl
│   │   │   │       ├── stm8l15x_gpio.pbi.xcl
│   │   │   │       ├── stm8l15x_i2c.pbi.xcl
│   │   │   │       ├── stm8l15x_it.pbi.xcl
│   │   │   │       ├── stm8l15x_iwdg.pbi.xcl
│   │   │   │       ├── stm8l15x_pwr.pbi.xcl
│   │   │   │       ├── stm8l15x_rtc.pbi.xcl
│   │   │   │       ├── stm8l15x_spi.pbi.xcl
│   │   │   │       ├── stm8l15x_syscfg.pbi.xcl
│   │   │   │       ├── stm8l15x_tim1.pbi.xcl
│   │   │   │       ├── stm8l15x_tim2.pbi.xcl
│   │   │   │       ├── stm8l15x_tim3.pbi.xcl
│   │   │   │       ├── stm8l15x_tim4.pbi.xcl
│   │   │   │       ├── stm8l15x_tim5.pbi.xcl
│   │   │   │       ├── stm8l15x_usart.pbi.xcl
│   │   │   │       ├── stm8l15x_wwdg.pbi.xcl
│   │   │   │       ├── sx1262-board.pbi.xcl
│   │   │   │       ├── sx126x.pbi.xcl
│   │   │   │       ├── timer.pbi.xcl
│   │   │   │       └── utilities.pbi.xcl
│   │   │   ├── project.dep
│   │   │   ├── project.ewd
│   │   │   ├── project.ewp
│   │   │   ├── project.ewt
│   │   │   ├── settings
│   │   │   │   ├── project.Debug.cspy.bat
│   │   │   │   ├── project.Debug.cspy.ps1
│   │   │   │   ├── project.Debug.driver.xcl
│   │   │   │   ├── project.Debug.general.xcl
│   │   │   │   ├── project.dbgdt
│   │   │   │   ├── project.dnx
│   │   │   │   └── workspace.wsdt
│   │   │   └── workspace.eww
│   │   ├── STVD
│   │   │   └── Cosmic
│   │   │       ├── STVD_workspace.stw
│   │   │       └── stvd_project.stp
│   │   ├── inc
│   │   │   ├── Commissioning.h
│   │   │   ├── debug.h
│   │   │   ├── stm8l15x_conf.h
│   │   │   └── stm8l15x_it.h
│   │   └── src
│   │       ├── main.c
│   │       ├── stm8_interrupt_vector.c
│   │       ├── stm8l15x_conf.h
│   │       └── stm8l15x_it.c
│   └── PingPong
│       ├── EWSTM8
│       │   ├── project.ewd
│       │   ├── project.ewp
│       │   └── workspace.eww
│       ├── STVD
│       │   └── Cosmic
│       │       ├── STVD_workspace.stw
│       │       └── stvd_project.stp
│       ├── inc
│       │   ├── stm8l15x_conf.h
│       │   ├── stm8l15x_it.h
│       │   └── test_cases.h
│       └── src
│           ├── stm8_interrupt_vector.c
│           ├── stm8l15x_conf.h
│           └── stm8l15x_it.c
├── asr6505_linkwan_20200311.s19
├── lorawan代码说明.pdf
├── readme.MD
├── 修正问题记录_串口.pdf
└── 连接阿里云步骤说明.txt

51 directories, 278 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复