实例介绍
sx1280,stm32l4
【实例截图】
【核心代码】
sx1280devkit
└── SX1280DevKit
├── Demo
│ ├── DemoApplication.cpp
│ ├── DemoApplication.h
│ ├── FreqLUT.h
│ ├── SX1280Lib
│ │ ├── radio.h
│ │ ├── sx1280-hal.cpp
│ │ ├── sx1280-hal.h
│ │ ├── sx1280.cpp
│ │ └── sx1280.h
│ └── SX1280Lib.lib
├── Display
│ ├── DisplayDriver.cpp
│ ├── DisplayDriver.h
│ ├── DmTftLibrary
│ │ ├── DmTftBase.cpp
│ │ ├── DmTftBase.h
│ │ ├── DmTftHX8353C.cpp
│ │ ├── DmTftHX8353C.h
│ │ ├── DmTftIli9325.cpp
│ │ ├── DmTftIli9325.h
│ │ ├── DmTftIli9341.cpp
│ │ ├── DmTftIli9341.h
│ │ ├── DmTftRa8875.cpp
│ │ ├── DmTftRa8875.h
│ │ ├── DmTftS6D0164.cpp
│ │ ├── DmTftS6D0164.h
│ │ ├── DmTftSsd2119.cpp
│ │ ├── DmTftSsd2119.h
│ │ ├── DmTouch.cpp
│ │ ├── DmTouch.h
│ │ ├── DmTouchCalibration.cpp
│ │ ├── DmTouchCalibration.h
│ │ ├── DmTpFt6x06.cpp
│ │ ├── DmTpFt6x06.h
│ │ ├── dm_platform.h
│ │ └── font.c
│ ├── DmTftLibrary.lib
│ ├── Menu.cpp
│ ├── Menu.h
│ └── SemtechLogo.c
├── GettingStarted.html
├── Peripherals
│ ├── Eeprom.cpp
│ ├── Eeprom.h
│ ├── GpsMax7.cpp
│ ├── GpsMax7.h
│ ├── SX9306.cpp
│ ├── SX9306.h
│ ├── Timers.cpp
│ └── Timers.h
├── SX1280DevKit.uvoptx
├── SX1280DevKit.uvprojx
├── main.cpp
├── mbed
│ ├── TARGET_NUCLEO_L476RG
│ │ ├── TARGET_STM
│ │ │ ├── PeripheralPins.h
│ │ │ ├── PinNamesTypes.h
│ │ │ ├── PortNames.h
│ │ │ ├── TARGET_STM32L4
│ │ │ │ ├── TARGET_STM32L476xG
│ │ │ │ │ ├── TARGET_NUCLEO_L476RG
│ │ │ │ │ │ ├── PeripheralNames.h
│ │ │ │ │ │ └── PinNames.h
│ │ │ │ │ ├── device
│ │ │ │ │ │ ├── cmsis.h
│ │ │ │ │ │ ├── cmsis_nvic.h
│ │ │ │ │ │ ├── hal_tick.h
│ │ │ │ │ │ ├── stm32l476xx.h
│ │ │ │ │ │ ├── stm32l4xx.h
│ │ │ │ │ │ └── system_stm32l4xx.h
│ │ │ │ │ └── objects.h
│ │ │ │ ├── can_device.h
│ │ │ │ ├── common_objects.h
│ │ │ │ ├── device
│ │ │ │ │ ├── stm32_hal_legacy.h
│ │ │ │ │ ├── stm32l4xx_hal.h
│ │ │ │ │ ├── stm32l4xx_hal_adc.h
│ │ │ │ │ ├── stm32l4xx_hal_adc_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_can.h
│ │ │ │ │ ├── stm32l4xx_hal_comp.h
│ │ │ │ │ ├── stm32l4xx_hal_conf.h
│ │ │ │ │ ├── stm32l4xx_hal_cortex.h
│ │ │ │ │ ├── stm32l4xx_hal_crc.h
│ │ │ │ │ ├── stm32l4xx_hal_crc_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_cryp.h
│ │ │ │ │ ├── stm32l4xx_hal_cryp_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_dac.h
│ │ │ │ │ ├── stm32l4xx_hal_dac_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_def.h
│ │ │ │ │ ├── stm32l4xx_hal_dfsdm.h
│ │ │ │ │ ├── stm32l4xx_hal_dma.h
│ │ │ │ │ ├── stm32l4xx_hal_firewall.h
│ │ │ │ │ ├── stm32l4xx_hal_flash.h
│ │ │ │ │ ├── stm32l4xx_hal_flash_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_flash_ramfunc.h
│ │ │ │ │ ├── stm32l4xx_hal_gpio.h
│ │ │ │ │ ├── stm32l4xx_hal_gpio_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_hcd.h
│ │ │ │ │ ├── stm32l4xx_hal_i2c.h
│ │ │ │ │ ├── stm32l4xx_hal_i2c_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_irda.h
│ │ │ │ │ ├── stm32l4xx_hal_irda_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_iwdg.h
│ │ │ │ │ ├── stm32l4xx_hal_lcd.h
│ │ │ │ │ ├── stm32l4xx_hal_lptim.h
│ │ │ │ │ ├── stm32l4xx_hal_nand.h
│ │ │ │ │ ├── stm32l4xx_hal_nor.h
│ │ │ │ │ ├── stm32l4xx_hal_opamp.h
│ │ │ │ │ ├── stm32l4xx_hal_opamp_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_pcd.h
│ │ │ │ │ ├── stm32l4xx_hal_pcd_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_pwr.h
│ │ │ │ │ ├── stm32l4xx_hal_pwr_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_qspi.h
│ │ │ │ │ ├── stm32l4xx_hal_rcc.h
│ │ │ │ │ ├── stm32l4xx_hal_rcc_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_rng.h
│ │ │ │ │ ├── stm32l4xx_hal_rtc.h
│ │ │ │ │ ├── stm32l4xx_hal_rtc_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_sai.h
│ │ │ │ │ ├── stm32l4xx_hal_sd.h
│ │ │ │ │ ├── stm32l4xx_hal_smartcard.h
│ │ │ │ │ ├── stm32l4xx_hal_smartcard_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_smbus.h
│ │ │ │ │ ├── stm32l4xx_hal_spi.h
│ │ │ │ │ ├── stm32l4xx_hal_spi_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_sram.h
│ │ │ │ │ ├── stm32l4xx_hal_swpmi.h
│ │ │ │ │ ├── stm32l4xx_hal_tim.h
│ │ │ │ │ ├── stm32l4xx_hal_tim_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_tsc.h
│ │ │ │ │ ├── stm32l4xx_hal_uart.h
│ │ │ │ │ ├── stm32l4xx_hal_uart_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_usart.h
│ │ │ │ │ ├── stm32l4xx_hal_usart_ex.h
│ │ │ │ │ ├── stm32l4xx_hal_wwdg.h
│ │ │ │ │ ├── stm32l4xx_ll_adc.h
│ │ │ │ │ ├── stm32l4xx_ll_bus.h
│ │ │ │ │ ├── stm32l4xx_ll_comp.h
│ │ │ │ │ ├── stm32l4xx_ll_cortex.h
│ │ │ │ │ ├── stm32l4xx_ll_crc.h
│ │ │ │ │ ├── stm32l4xx_ll_crs.h
│ │ │ │ │ ├── stm32l4xx_ll_dac.h
│ │ │ │ │ ├── stm32l4xx_ll_dma.h
│ │ │ │ │ ├── stm32l4xx_ll_exti.h
│ │ │ │ │ ├── stm32l4xx_ll_fmc.h
│ │ │ │ │ ├── stm32l4xx_ll_gpio.h
│ │ │ │ │ ├── stm32l4xx_ll_i2c.h
│ │ │ │ │ ├── stm32l4xx_ll_iwdg.h
│ │ │ │ │ ├── stm32l4xx_ll_lptim.h
│ │ │ │ │ ├── stm32l4xx_ll_lpuart.h
│ │ │ │ │ ├── stm32l4xx_ll_opamp.h
│ │ │ │ │ ├── stm32l4xx_ll_pwr.h
│ │ │ │ │ ├── stm32l4xx_ll_rcc.h
│ │ │ │ │ ├── stm32l4xx_ll_rng.h
│ │ │ │ │ ├── stm32l4xx_ll_rtc.h
│ │ │ │ │ ├── stm32l4xx_ll_sdmmc.h
│ │ │ │ │ ├── stm32l4xx_ll_spi.h
│ │ │ │ │ ├── stm32l4xx_ll_swpmi.h
│ │ │ │ │ ├── stm32l4xx_ll_system.h
│ │ │ │ │ ├── stm32l4xx_ll_tim.h
│ │ │ │ │ ├── stm32l4xx_ll_usart.h
│ │ │ │ │ ├── stm32l4xx_ll_usb.h
│ │ │ │ │ ├── stm32l4xx_ll_utils.h
│ │ │ │ │ └── stm32l4xx_ll_wwdg.h
│ │ │ │ ├── device.h
│ │ │ │ ├── gpio_irq_device.h
│ │ │ │ ├── i2c_device.h
│ │ │ │ ├── pin_device.h
│ │ │ │ └── pwmout_device.h
│ │ │ ├── gpio_object.h
│ │ │ ├── mbed_rtx.h
│ │ │ └── rtc_api_hal.h
│ │ ├── TOOLCHAIN_ARM_STD
│ │ │ ├── PeripheralPins.o
│ │ │ ├── analogin_api.o
│ │ │ ├── analogout_api.o
│ │ │ ├── can_api.o
│ │ │ ├── cmsis_nvic.o
│ │ │ ├── gpio_api.o
│ │ │ ├── gpio_irq_api.o
│ │ │ ├── gpio_irq_device.o
│ │ │ ├── hal_tick_16b.o
│ │ │ ├── hal_tick_32b.o
│ │ │ ├── i2c_api.o
│ │ │ ├── lp_ticker.o
│ │ │ ├── mbed.ar
│ │ │ ├── mbed_board.o
│ │ │ ├── mbed_overrides.o
│ │ │ ├── mbed_retarget.o
│ │ │ ├── pinmap.o
│ │ │ ├── port_api.o
│ │ │ ├── pwmout_api.o
│ │ │ ├── pwmout_device.o
│ │ │ ├── rtc_api.o
│ │ │ ├── serial_api.o
│ │ │ ├── sleep.o
│ │ │ ├── spi_api.o
│ │ │ ├── startup_stm32l476xx.o
│ │ │ ├── stm32l476xx.sct
│ │ │ ├── stm32l4xx_hal.o
│ │ │ ├── stm32l4xx_hal_adc.o
│ │ │ ├── stm32l4xx_hal_adc_ex.o
│ │ │ ├── stm32l4xx_hal_can.o
│ │ │ ├── stm32l4xx_hal_comp.o
│ │ │ ├── stm32l4xx_hal_cortex.o
│ │ │ ├── stm32l4xx_hal_crc.o
│ │ │ ├── stm32l4xx_hal_crc_ex.o
│ │ │ ├── stm32l4xx_hal_cryp.o
│ │ │ ├── stm32l4xx_hal_cryp_ex.o
│ │ │ ├── stm32l4xx_hal_dac.o
│ │ │ ├── stm32l4xx_hal_dac_ex.o
│ │ │ ├── stm32l4xx_hal_dfsdm.o
│ │ │ ├── stm32l4xx_hal_dma.o
│ │ │ ├── stm32l4xx_hal_firewall.o
│ │ │ ├── stm32l4xx_hal_flash.o
│ │ │ ├── stm32l4xx_hal_flash_ex.o
│ │ │ ├── stm32l4xx_hal_flash_ramfunc.o
│ │ │ ├── stm32l4xx_hal_gpio.o
│ │ │ ├── stm32l4xx_hal_hcd.o
│ │ │ ├── stm32l4xx_hal_i2c.o
│ │ │ ├── stm32l4xx_hal_i2c_ex.o
│ │ │ ├── stm32l4xx_hal_irda.o
│ │ │ ├── stm32l4xx_hal_iwdg.o
│ │ │ ├── stm32l4xx_hal_lcd.o
│ │ │ ├── stm32l4xx_hal_lptim.o
│ │ │ ├── stm32l4xx_hal_msp_template.o
│ │ │ ├── stm32l4xx_hal_nand.o
│ │ │ ├── stm32l4xx_hal_nor.o
│ │ │ ├── stm32l4xx_hal_opamp.o
│ │ │ ├── stm32l4xx_hal_opamp_ex.o
│ │ │ ├── stm32l4xx_hal_pcd.o
│ │ │ ├── stm32l4xx_hal_pcd_ex.o
│ │ │ ├── stm32l4xx_hal_pwr.o
│ │ │ ├── stm32l4xx_hal_pwr_ex.o
│ │ │ ├── stm32l4xx_hal_qspi.o
│ │ │ ├── stm32l4xx_hal_rcc.o
│ │ │ ├── stm32l4xx_hal_rcc_ex.o
│ │ │ ├── stm32l4xx_hal_rng.o
│ │ │ ├── stm32l4xx_hal_rtc.o
│ │ │ ├── stm32l4xx_hal_rtc_ex.o
│ │ │ ├── stm32l4xx_hal_sai.o
│ │ │ ├── stm32l4xx_hal_sd.o
│ │ │ ├── stm32l4xx_hal_smartcard.o
│ │ │ ├── stm32l4xx_hal_smartcard_ex.o
│ │ │ ├── stm32l4xx_hal_smbus.o
│ │ │ ├── stm32l4xx_hal_spi.o
│ │ │ ├── stm32l4xx_hal_spi_ex.o
│ │ │ ├── stm32l4xx_hal_sram.o
│ │ │ ├── stm32l4xx_hal_swpmi.o
│ │ │ ├── stm32l4xx_hal_tim.o
│ │ │ ├── stm32l4xx_hal_tim_ex.o
│ │ │ ├── stm32l4xx_hal_tsc.o
│ │ │ ├── stm32l4xx_hal_uart.o
│ │ │ ├── stm32l4xx_hal_uart_ex.o
│ │ │ ├── stm32l4xx_hal_usart.o
│ │ │ ├── stm32l4xx_hal_wwdg.o
│ │ │ ├── stm32l4xx_ll_adc.o
│ │ │ ├── stm32l4xx_ll_comp.o
│ │ │ ├── stm32l4xx_ll_crc.o
│ │ │ ├── stm32l4xx_ll_crs.o
│ │ │ ├── stm32l4xx_ll_dac.o
│ │ │ ├── stm32l4xx_ll_dma.o
│ │ │ ├── stm32l4xx_ll_exti.o
│ │ │ ├── stm32l4xx_ll_fmc.o
│ │ │ ├── stm32l4xx_ll_gpio.o
│ │ │ ├── stm32l4xx_ll_i2c.o
│ │ │ ├── stm32l4xx_ll_lptim.o
│ │ │ ├── stm32l4xx_ll_lpuart.o
│ │ │ ├── stm32l4xx_ll_opamp.o
│ │ │ ├── stm32l4xx_ll_pwr.o
│ │ │ ├── stm32l4xx_ll_rcc.o
│ │ │ ├── stm32l4xx_ll_rng.o
│ │ │ ├── stm32l4xx_ll_rtc.o
│ │ │ ├── stm32l4xx_ll_sdmmc.o
│ │ │ ├── stm32l4xx_ll_spi.o
│ │ │ ├── stm32l4xx_ll_swpmi.o
│ │ │ ├── stm32l4xx_ll_tim.o
│ │ │ ├── stm32l4xx_ll_usart.o
│ │ │ ├── stm32l4xx_ll_usb.o
│ │ │ ├── stm32l4xx_ll_utils.o
│ │ │ ├── stm_spi_api.o
│ │ │ ├── sys.o
│ │ │ ├── system_stm32l4xx.o
│ │ │ ├── trng_api.o
│ │ │ ├── us_ticker_16b.o
│ │ │ └── us_ticker_32b.o
│ │ ├── arm_common_tables.h
│ │ ├── arm_const_structs.h
│ │ ├── arm_math.h
│ │ ├── core_ca9.h
│ │ ├── core_caFunc.h
│ │ ├── core_caInstr.h
│ │ ├── core_ca_mmu.h
│ │ ├── core_cm0.h
│ │ ├── core_cm0plus.h
│ │ ├── core_cm3.h
│ │ ├── core_cm4.h
│ │ ├── core_cm4_simd.h
│ │ ├── core_cm7.h
│ │ ├── core_cmFunc.h
│ │ ├── core_cmInstr.h
│ │ ├── core_cmSecureAccess.h
│ │ ├── core_cmSimd.h
│ │ ├── core_sc000.h
│ │ ├── core_sc300.h
│ │ └── mbed_lib.json
│ ├── drivers
│ │ ├── AnalogIn.h
│ │ ├── AnalogOut.h
│ │ ├── BusIn.h
│ │ ├── BusInOut.h
│ │ ├── BusOut.h
│ │ ├── CAN.h
│ │ ├── DigitalIn.h
│ │ ├── DigitalInOut.h
│ │ ├── DigitalOut.h
│ │ ├── DirHandle.h
│ │ ├── Ethernet.h
│ │ ├── FileBase.h
│ │ ├── FileHandle.h
│ │ ├── FileLike.h
│ │ ├── FilePath.h
│ │ ├── FileSystemLike.h
│ │ ├── FlashIAP.h
│ │ ├── I2C.h
│ │ ├── I2CSlave.h
│ │ ├── InterruptIn.h
│ │ ├── InterruptManager.h
│ │ ├── LocalFileSystem.h
│ │ ├── LowPowerTicker.h
│ │ ├── LowPowerTimeout.h
│ │ ├── LowPowerTimer.h
│ │ ├── PortIn.h
│ │ ├── PortInOut.h
│ │ ├── PortOut.h
│ │ ├── PwmOut.h
│ │ ├── RawSerial.h
│ │ ├── SPI.h
│ │ ├── SPISlave.h
│ │ ├── Serial.h
│ │ ├── SerialBase.h
│ │ ├── Stream.h
│ │ ├── Ticker.h
│ │ ├── Timeout.h
│ │ ├── Timer.h
│ │ └── TimerEvent.h
│ ├── hal
│ │ ├── Driver_Common.h
│ │ ├── Driver_Storage.h
│ │ ├── analogin_api.h
│ │ ├── analogout_api.h
│ │ ├── buffer.h
│ │ ├── can_api.h
│ │ ├── can_helper.h
│ │ ├── dma_api.h
│ │ ├── emac_api.h
│ │ ├── ethernet_api.h
│ │ ├── flash_api.h
│ │ ├── flash_data.h
│ │ ├── gpio_api.h
│ │ ├── gpio_irq_api.h
│ │ ├── i2c_api.h
│ │ ├── lp_ticker_api.h
│ │ ├── pinmap.h
│ │ ├── port_api.h
│ │ ├── pwmout_api.h
│ │ ├── rtc_api.h
│ │ ├── serial_api.h
│ │ ├── sleep_api.h
│ │ ├── spi_api.h
│ │ ├── ticker_api.h
│ │ ├── trng_api.h
│ │ └── us_ticker_api.h
│ ├── mbed.h
│ ├── platform
│ │ ├── CThunk.h
│ │ ├── CallChain.h
│ │ ├── Callback.h
│ │ ├── CircularBuffer.h
│ │ ├── FunctionPointer.h
│ │ ├── PlatformMutex.h
│ │ ├── SingletonPtr.h
│ │ ├── Transaction.h
│ │ ├── critical.h
│ │ ├── mbed_application.h
│ │ ├── mbed_assert.h
│ │ ├── mbed_critical.h
│ │ ├── mbed_debug.h
│ │ ├── mbed_error.h
│ │ ├── mbed_interface.h
│ │ ├── mbed_mem_trace.h
│ │ ├── mbed_preprocessor.h
│ │ ├── mbed_retarget.h
│ │ ├── mbed_rtc_time.h
│ │ ├── mbed_semihost_api.h
│ │ ├── mbed_sleep.h
│ │ ├── mbed_stats.h
│ │ ├── mbed_toolchain.h
│ │ ├── mbed_wait_api.h
│ │ ├── platform.h
│ │ ├── rtc_time.h
│ │ ├── semihost_api.h
│ │ ├── sleep.h
│ │ ├── toolchain.h
│ │ └── wait_api.h
│ └── targets.json
├── mbed.bld
└── mbed_config.h
18 directories, 394 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论