├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.sh ├── .travis.yml ├── LICENSE ├── Makefile ├── Makefile.esp32 ├── Makefile.stm32 ├── Makefile.stm32f1 ├── README.md ├── cases ├── rx │ ├── nmaggioni │ │ ├── LoRa_RX.stl │ │ └── README.md │ └── shellixyz │ │ ├── LoRa_RxCase_1_bottom.stl │ │ ├── LoRa_RxCase_1_top.stl │ │ ├── LoRa_RxCase_2_bottom.stl │ │ ├── LoRa_RxCase_2_top.stl │ │ ├── LoRa_RxCase_3.stl │ │ └── README.md └── tx │ ├── helio │ ├── LoRa_Bottom.stl │ ├── LoRa_Middle.stl │ ├── LoRa_Top.stl │ └── README.md │ ├── nmaggioni │ ├── LoRa_Bottom.stl │ ├── LoRa_Middle.stl │ ├── LoRa_Top.stl │ └── README.md │ └── shellixyz │ ├── LoRa_Back.stl │ └── README.md ├── components ├── hal-common │ ├── component.mk │ └── include │ │ └── hal │ │ ├── gpio_base.h │ │ ├── i2c_base.h │ │ ├── init.h │ │ ├── md5_base.h │ │ ├── mutex_base.h │ │ ├── pwm.h │ │ ├── rand.h │ │ ├── spi_base.h │ │ ├── storage_base.h │ │ ├── wd.h │ │ └── ws2812.h ├── hal-esp32 │ ├── component.mk │ ├── gpio.c │ ├── i2c.c │ ├── include │ │ └── hal │ │ │ ├── err.h │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── log.h │ │ │ ├── md5.h │ │ │ ├── mutex.h │ │ │ ├── p2p.h │ │ │ ├── spi.h │ │ │ ├── storage.h │ │ │ └── time.h │ ├── init.c │ ├── md5.c │ ├── mutex.c │ ├── p2p.c │ ├── pwm.c │ ├── rand.c │ ├── spi.c │ ├── storage.c │ ├── wd.c │ └── ws2812.c ├── hal-stm32 │ ├── gpio.c │ ├── include │ │ └── hal │ │ │ ├── err.h │ │ │ ├── gpio-private.h │ │ │ ├── gpio.h │ │ │ ├── i2c.h │ │ │ ├── log.h │ │ │ ├── md5.h │ │ │ ├── mutex.h │ │ │ ├── spi.h │ │ │ ├── storage.h │ │ │ └── time.h │ ├── init.c │ ├── log.c │ ├── md5.c │ ├── rand.c │ ├── spi.c │ ├── storage.c │ └── wd.c ├── os │ ├── component.mk │ └── include │ │ └── os │ │ └── os.h └── u8g2 │ └── component.mk ├── docs ├── antennas.md ├── getting_started.md ├── images │ ├── raven_qx7.png │ ├── schematic_tx.jpg │ └── schematic_tx.psd ├── settings.md └── tx_module.md ├── format.sh ├── lib └── FreeRTOSv10.1.1 │ └── FreeRTOS │ ├── License │ └── license.txt │ └── Source │ ├── croutine.c │ ├── event_groups.c │ ├── include │ ├── FreeRTOS.h │ ├── StackMacros.h │ ├── croutine.h │ ├── deprecated_definitions.h │ ├── event_groups.h │ ├── list.h │ ├── message_buffer.h │ ├── mpu_prototypes.h │ ├── mpu_wrappers.h │ ├── portable.h │ ├── projdefs.h │ ├── queue.h │ ├── semphr.h │ ├── stack_macros.h │ ├── stdint.readme │ ├── stream_buffer.h │ ├── task.h │ └── timers.h │ ├── list.c │ ├── portable │ ├── Common │ │ └── mpu_wrappers.c │ ├── GCC │ │ ├── ARM7_AT91FR40008 │ │ │ ├── port.c │ │ │ ├── portISR.c │ │ │ └── portmacro.h │ │ ├── ARM7_AT91SAM7S │ │ │ ├── AT91SAM7X256.h │ │ │ ├── ioat91sam7x256.h │ │ │ ├── lib_AT91SAM7X256.c │ │ │ ├── lib_AT91SAM7X256.h │ │ │ ├── port.c │ │ │ ├── portISR.c │ │ │ └── portmacro.h │ │ ├── ARM7_LPC2000 │ │ │ ├── port.c │ │ │ ├── portISR.c │ │ │ └── portmacro.h │ │ ├── ARM7_LPC23xx │ │ │ ├── port.c │ │ │ ├── portISR.c │ │ │ └── portmacro.h │ │ ├── ARM_CA53_64_BIT │ │ │ ├── port.c │ │ │ ├── portASM.S │ │ │ └── portmacro.h │ │ ├── ARM_CA9 │ │ │ ├── port.c │ │ │ ├── portASM.S │ │ │ └── portmacro.h │ │ ├── ARM_CM0 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ARM_CM3 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ARM_CM3_MPU │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ARM_CM4F │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ARM_CM4_MPU │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ARM_CM7 │ │ │ ├── ReadMe.txt │ │ │ └── r0p1 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ ├── ARM_CR5 │ │ │ ├── port.c │ │ │ ├── portASM.S │ │ │ └── portmacro.h │ │ ├── ARM_CRx_No_GIC │ │ │ ├── port.c │ │ │ ├── portASM.S │ │ │ └── portmacro.h │ │ ├── ATMega323 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── AVR32_UC3 │ │ │ ├── exception.S │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── CORTUS_APS3 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── ColdFire_V2 │ │ │ ├── port.c │ │ │ ├── portasm.S │ │ │ └── portmacro.h │ │ ├── H8S2329 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── HCS12 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── IA32_flat │ │ │ ├── ISR_Support.h │ │ │ ├── port.c │ │ │ ├── portASM.S │ │ │ └── portmacro.h │ │ ├── MCF5235 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── MSP430F449 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── MicroBlaze │ │ │ ├── port.c │ │ │ ├── portasm.s │ │ │ └── portmacro.h │ │ ├── MicroBlazeV8 │ │ │ ├── port.c │ │ │ ├── port_exceptions.c │ │ │ ├── portasm.S │ │ │ └── portmacro.h │ │ ├── MicroBlazeV9 │ │ │ ├── port.c │ │ │ ├── port_exceptions.c │ │ │ ├── portasm.S │ │ │ └── portmacro.h │ │ ├── NiosII │ │ │ ├── port.c │ │ │ ├── port_asm.S │ │ │ └── portmacro.h │ │ ├── PPC405_Xilinx │ │ │ ├── FPU_Macros.h │ │ │ ├── port.c │ │ │ ├── portasm.S │ │ │ └── portmacro.h │ │ ├── PPC440_Xilinx │ │ │ ├── FPU_Macros.h │ │ │ ├── port.c │ │ │ ├── portasm.S │ │ │ └── portmacro.h │ │ ├── RL78 │ │ │ ├── isr_support.h │ │ │ ├── port.c │ │ │ ├── portasm.S │ │ │ └── portmacro.h │ │ ├── RX100 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── RX600 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── RX600v2 │ │ │ ├── port.c │ │ │ └── portmacro.h │ │ ├── STR75x │ │ │ ├── port.c │ │ │ ├── portISR.c │ │ │ └── portmacro.h │ │ └── TriCore_1782 │ │ │ ├── port.c │ │ │ ├── portmacro.h │ │ │ └── porttrap.c │ ├── MemMang │ │ ├── ReadMe.url │ │ ├── heap_1.c │ │ ├── heap_2.c │ │ ├── heap_3.c │ │ ├── heap_4.c │ │ └── heap_5.c │ ├── SDCC │ │ └── Cygnal │ │ │ ├── port.c │ │ │ └── portmacro.h │ ├── ThirdParty │ │ └── XCC │ │ │ └── Xtensa │ │ │ ├── Makefile │ │ │ ├── port.c │ │ │ ├── portasm.S │ │ │ ├── portbenchmark.h │ │ │ ├── portclib.c │ │ │ ├── portmacro.h │ │ │ ├── porttrace.h │ │ │ ├── readme_xtensa.txt │ │ │ ├── xtensa_api.h │ │ │ ├── xtensa_config.h │ │ │ ├── xtensa_context.S │ │ │ ├── xtensa_context.h │ │ │ ├── xtensa_init.c │ │ │ ├── xtensa_intr.c │ │ │ ├── xtensa_intr_asm.S │ │ │ ├── xtensa_overlay_os_hook.c │ │ │ ├── xtensa_rtos.h │ │ │ ├── xtensa_timer.h │ │ │ └── xtensa_vectors.S │ └── readme.txt │ ├── queue.c │ ├── readme.txt │ ├── stream_buffer.c │ ├── tasks.c │ └── timers.c └── main ├── Kconfig ├── air ├── air.c ├── air.h ├── air_band.c ├── air_band.h ├── air_cmd.c ├── air_cmd.h ├── air_config.h ├── air_freq.c ├── air_freq.h ├── air_io.c ├── air_io.h ├── air_mode.c ├── air_mode.h ├── air_radio.h ├── air_radio_driver.h ├── air_radio_fake.c ├── air_radio_fake.h ├── air_radio_sx127x.c ├── air_radio_sx127x.h ├── air_rf_power.c ├── air_rf_power.h ├── air_stream.c └── air_stream.h ├── bluetooth ├── bluetooth.c ├── bluetooth.h ├── bluetooth_hal.c ├── bluetooth_hal.h ├── bluetooth_ota.c ├── bluetooth_ota.h └── bluetooth_uuid.h ├── component.mk ├── config ├── config.c ├── config.h ├── settings.c ├── settings.h ├── settings_rmp.c └── settings_rmp.h ├── input ├── input.c ├── input.h ├── input_air.c ├── input_air.h ├── input_air_bind.c ├── input_air_bind.h ├── input_crsf.c ├── input_crsf.h ├── input_fake.c ├── input_fake.h ├── input_ibus.c ├── input_ibus.h ├── input_ppm.c ├── input_ppm.h ├── input_sbus.c └── input_sbus.h ├── io ├── gpio.c ├── gpio.h ├── io.c ├── io.h ├── pwm.c ├── pwm.h ├── serial.c ├── serial.h ├── storage.c ├── storage.h ├── sx127x.c └── sx127x.h ├── main.c ├── msp ├── msp.c ├── msp.h ├── msp_air.c ├── msp_air.h ├── msp_io.c ├── msp_io.h ├── msp_serial.c ├── msp_serial.h ├── msp_telemetry.c ├── msp_telemetry.h ├── msp_transport.c └── msp_transport.h ├── ota ├── ota.c └── ota.h ├── output ├── output.c ├── output.h ├── output_air.c ├── output_air.h ├── output_air_bind.c ├── output_air_bind.h ├── output_air_rf_power_test.c ├── output_air_rf_power_test.h ├── output_crsf.c ├── output_crsf.h ├── output_fport.c ├── output_fport.h ├── output_msp.c ├── output_msp.h ├── output_none.c ├── output_none.h ├── output_sbus.c └── output_sbus.h ├── p2p ├── p2p.c └── p2p.h ├── platform ├── dispatch.c ├── dispatch.h ├── system.c └── system.h ├── protocols ├── crsf.c ├── crsf.h ├── crsf_units.c ├── crsf_units.h ├── ibus.c ├── ibus.h ├── sbus.c ├── sbus.h ├── smartport.c └── smartport.h ├── rc ├── failsafe.c ├── failsafe.h ├── rc-private.h ├── rc.c ├── rc.h ├── rc_data.c ├── rc_data.h ├── rc_rmp.c ├── rc_rmp.h ├── telemetry.c └── telemetry.h ├── rmp ├── rmp.c ├── rmp.h ├── rmp_air.c └── rmp_air.h ├── target ├── bands │ ├── 433.h │ └── 868_915.h ├── platforms │ ├── esp32 │ │ ├── make_release.py │ │ ├── partitions.csv │ │ ├── post_platform.h │ │ ├── pre_platform.h │ │ ├── sdkconfig.base │ │ ├── serial.c │ │ ├── single_button.h │ │ └── system.c │ ├── esp32_AFnano_433 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_AFnano_915 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_MicroRX_RFM_433 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_heltec_oled_v1_433 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_high_power_v1_433 │ │ ├── platform.h │ │ ├── sdkconfig │ │ └── variants │ ├── esp32_lora_omega │ │ ├── platform.h │ │ ├── sdkconfig │ │ └── variants │ ├── esp32_lora_ttgo_oled_v1_433 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_ttgo_oled_v1_868_915 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_ttgo_oled_v2_433 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_ttgo_oled_v2_868_915 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_ttgo_v1 │ │ ├── common.h │ │ └── screen.h │ ├── esp32_lora_ttgo_v1_433 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_ttgo_v1_868_915 │ │ ├── platform.h │ │ └── sdkconfig │ ├── esp32_lora_ttgo_v2 │ │ ├── common.h │ │ ├── screen.h │ │ └── touch.h │ ├── stm32 │ │ ├── FreeRTOS-libopencm3-glue.c │ │ ├── FreeRTOSConfig.h │ │ ├── f1 │ │ │ ├── ldscript.ld │ │ │ ├── libopencm3.target.mk │ │ │ ├── openocd.cfg │ │ │ ├── post_platform.h │ │ │ └── pre_platform.h │ │ ├── gdbinit │ │ ├── libopencm3.rules.mk │ │ ├── main.c │ │ ├── serial.c │ │ └── system.c │ └── stm32f1_blackpill │ │ └── platform.h ├── target.h └── variants │ ├── rx │ └── sdkconfig │ ├── tx │ └── sdkconfig │ └── txrx │ └── sdkconfig ├── ui ├── animation │ ├── animation.h │ ├── images.sh │ ├── raven.gif │ ├── raven_0.xbm │ ├── raven_1.xbm │ ├── raven_2.xbm │ ├── raven_3.xbm │ ├── raven_4.xbm │ ├── raven_5.xbm │ ├── raven_6.xbm │ ├── raven_7.xbm │ ├── raven_8.xbm │ └── raven_9.xbm ├── beeper.c ├── beeper.h ├── button.c ├── button.h ├── led.c ├── led.h ├── menu.c ├── menu.h ├── screen.c ├── screen.h ├── screen_i2c.c ├── screen_i2c.h ├── u8g2_hal.c ├── u8g2_hal.h ├── ui.c └── ui.h └── util ├── crc.c ├── crc.h ├── data_state.c ├── data_state.h ├── fec.c ├── fec.h ├── lpf.c ├── lpf.h ├── macros.h ├── ringbuffer.c ├── ringbuffer.h ├── stringutil.c ├── stringutil.h ├── time.h ├── uvarint.c ├── uvarint.h └── version.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.esp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/Makefile.esp32 -------------------------------------------------------------------------------- /Makefile.stm32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/Makefile.stm32 -------------------------------------------------------------------------------- /Makefile.stm32f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/Makefile.stm32f1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/README.md -------------------------------------------------------------------------------- /cases/rx/nmaggioni/LoRa_RX.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/nmaggioni/LoRa_RX.stl -------------------------------------------------------------------------------- /cases/rx/nmaggioni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/nmaggioni/README.md -------------------------------------------------------------------------------- /cases/rx/shellixyz/LoRa_RxCase_1_bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/shellixyz/LoRa_RxCase_1_bottom.stl -------------------------------------------------------------------------------- /cases/rx/shellixyz/LoRa_RxCase_1_top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/shellixyz/LoRa_RxCase_1_top.stl -------------------------------------------------------------------------------- /cases/rx/shellixyz/LoRa_RxCase_2_bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/shellixyz/LoRa_RxCase_2_bottom.stl -------------------------------------------------------------------------------- /cases/rx/shellixyz/LoRa_RxCase_2_top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/shellixyz/LoRa_RxCase_2_top.stl -------------------------------------------------------------------------------- /cases/rx/shellixyz/LoRa_RxCase_3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/shellixyz/LoRa_RxCase_3.stl -------------------------------------------------------------------------------- /cases/rx/shellixyz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/rx/shellixyz/README.md -------------------------------------------------------------------------------- /cases/tx/helio/LoRa_Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/helio/LoRa_Bottom.stl -------------------------------------------------------------------------------- /cases/tx/helio/LoRa_Middle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/helio/LoRa_Middle.stl -------------------------------------------------------------------------------- /cases/tx/helio/LoRa_Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/helio/LoRa_Top.stl -------------------------------------------------------------------------------- /cases/tx/helio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/helio/README.md -------------------------------------------------------------------------------- /cases/tx/nmaggioni/LoRa_Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/nmaggioni/LoRa_Bottom.stl -------------------------------------------------------------------------------- /cases/tx/nmaggioni/LoRa_Middle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/nmaggioni/LoRa_Middle.stl -------------------------------------------------------------------------------- /cases/tx/nmaggioni/LoRa_Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/nmaggioni/LoRa_Top.stl -------------------------------------------------------------------------------- /cases/tx/nmaggioni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/nmaggioni/README.md -------------------------------------------------------------------------------- /cases/tx/shellixyz/LoRa_Back.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/shellixyz/LoRa_Back.stl -------------------------------------------------------------------------------- /cases/tx/shellixyz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/cases/tx/shellixyz/README.md -------------------------------------------------------------------------------- /components/hal-common/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/component.mk -------------------------------------------------------------------------------- /components/hal-common/include/hal/gpio_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/gpio_base.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/i2c_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/i2c_base.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/init.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/md5_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/md5_base.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/mutex_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/mutex_base.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/pwm.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/rand.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | uint32_t hal_rand_u32(void); 6 | -------------------------------------------------------------------------------- /components/hal-common/include/hal/spi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/spi_base.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/storage_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/storage_base.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/wd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/wd.h -------------------------------------------------------------------------------- /components/hal-common/include/hal/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-common/include/hal/ws2812.h -------------------------------------------------------------------------------- /components/hal-esp32/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/component.mk -------------------------------------------------------------------------------- /components/hal-esp32/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/gpio.c -------------------------------------------------------------------------------- /components/hal-esp32/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/i2c.c -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/err.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/gpio.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/i2c.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/log.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/md5.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/mutex.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/p2p.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/spi.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/storage.h -------------------------------------------------------------------------------- /components/hal-esp32/include/hal/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/include/hal/time.h -------------------------------------------------------------------------------- /components/hal-esp32/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/init.c -------------------------------------------------------------------------------- /components/hal-esp32/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/md5.c -------------------------------------------------------------------------------- /components/hal-esp32/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/mutex.c -------------------------------------------------------------------------------- /components/hal-esp32/p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/p2p.c -------------------------------------------------------------------------------- /components/hal-esp32/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/pwm.c -------------------------------------------------------------------------------- /components/hal-esp32/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/rand.c -------------------------------------------------------------------------------- /components/hal-esp32/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/spi.c -------------------------------------------------------------------------------- /components/hal-esp32/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/storage.c -------------------------------------------------------------------------------- /components/hal-esp32/wd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/wd.c -------------------------------------------------------------------------------- /components/hal-esp32/ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-esp32/ws2812.c -------------------------------------------------------------------------------- /components/hal-stm32/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/gpio.c -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/err.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/gpio-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/gpio-private.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/gpio.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/i2c.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/log.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/md5.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/mutex.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/spi.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/storage.h -------------------------------------------------------------------------------- /components/hal-stm32/include/hal/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/include/hal/time.h -------------------------------------------------------------------------------- /components/hal-stm32/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/init.c -------------------------------------------------------------------------------- /components/hal-stm32/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/log.c -------------------------------------------------------------------------------- /components/hal-stm32/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/md5.c -------------------------------------------------------------------------------- /components/hal-stm32/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/rand.c -------------------------------------------------------------------------------- /components/hal-stm32/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/spi.c -------------------------------------------------------------------------------- /components/hal-stm32/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/storage.c -------------------------------------------------------------------------------- /components/hal-stm32/wd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/hal-stm32/wd.c -------------------------------------------------------------------------------- /components/os/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/os/component.mk -------------------------------------------------------------------------------- /components/os/include/os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/os/include/os/os.h -------------------------------------------------------------------------------- /components/u8g2/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/components/u8g2/component.mk -------------------------------------------------------------------------------- /docs/antennas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/docs/antennas.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/images/raven_qx7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/docs/images/raven_qx7.png -------------------------------------------------------------------------------- /docs/images/schematic_tx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/docs/images/schematic_tx.jpg -------------------------------------------------------------------------------- /docs/images/schematic_tx.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/docs/images/schematic_tx.psd -------------------------------------------------------------------------------- /docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/docs/settings.md -------------------------------------------------------------------------------- /docs/tx_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/docs/tx_module.md -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/format.sh -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/License/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/License/license.txt -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/croutine.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/event_groups.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/StackMacros.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/croutine.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/deprecated_definitions.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/event_groups.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/list.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/message_buffer.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/mpu_prototypes.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/mpu_wrappers.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/portable.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/projdefs.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/queue.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/semphr.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/stack_macros.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/stdint.readme -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/stream_buffer.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/task.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/include/timers.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/list.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/Common/mpu_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/Common/mpu_wrappers.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91FR40008/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91FR40008/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91FR40008/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91FR40008/portISR.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91FR40008/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91FR40008/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/AT91SAM7X256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/AT91SAM7X256.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/ioat91sam7x256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/ioat91sam7x256.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/lib_AT91SAM7X256.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/portISR.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_AT91SAM7S/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC2000/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC2000/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC2000/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC2000/portISR.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC2000/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC2000/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA53_64_BIT/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA53_64_BIT/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA53_64_BIT/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA53_64_BIT/portASM.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA53_64_BIT/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA53_64_BIT/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA9/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA9/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA9/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA9/portASM.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA9/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CA9/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM0/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3_MPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3_MPU/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3_MPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM3_MPU/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4_MPU/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4_MPU/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4_MPU/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM4_MPU/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM7/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM7/ReadMe.txt -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CM7/r0p1/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CR5/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CR5/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CR5/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CR5/portASM.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CR5/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CR5/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CRx_No_GIC/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CRx_No_GIC/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CRx_No_GIC/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CRx_No_GIC/portASM.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CRx_No_GIC/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ARM_CRx_No_GIC/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ATMega323/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ATMega323/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ATMega323/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ATMega323/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/AVR32_UC3/exception.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/AVR32_UC3/exception.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/AVR32_UC3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/AVR32_UC3/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/AVR32_UC3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/AVR32_UC3/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/CORTUS_APS3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/CORTUS_APS3/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/CORTUS_APS3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/CORTUS_APS3/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ColdFire_V2/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ColdFire_V2/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ColdFire_V2/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ColdFire_V2/portasm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ColdFire_V2/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/ColdFire_V2/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/H8S2329/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/H8S2329/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/H8S2329/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/H8S2329/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/HCS12/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/HCS12/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/HCS12/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/HCS12/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/ISR_Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/ISR_Support.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/portASM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/portASM.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/IA32_flat/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MCF5235/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MCF5235/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MCF5235/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MCF5235/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MSP430F449/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MSP430F449/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MSP430F449/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MSP430F449/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlaze/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlaze/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlaze/portasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlaze/portasm.s -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlaze/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlaze/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/port_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/port_exceptions.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/portasm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV8/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/port_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/port_exceptions.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/portasm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/MicroBlazeV9/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/NiosII/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/NiosII/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/NiosII/port_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/NiosII/port_asm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/NiosII/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/NiosII/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/FPU_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/FPU_Macros.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/portasm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC405_Xilinx/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/FPU_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/FPU_Macros.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/portasm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/PPC440_Xilinx/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/isr_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/isr_support.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/portasm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RL78/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX100/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX100/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX100/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX100/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600v2/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600v2/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600v2/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/RX600v2/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/STR75x/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/STR75x/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/STR75x/portISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/STR75x/portISR.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/STR75x/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/STR75x/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/TriCore_1782/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/TriCore_1782/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/TriCore_1782/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/TriCore_1782/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/TriCore_1782/porttrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/GCC/TriCore_1782/porttrap.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/ReadMe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/ReadMe.url -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_1.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_2.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_3.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/MemMang/heap_5.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/SDCC/Cygnal/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/SDCC/Cygnal/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/SDCC/Cygnal/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/SDCC/Cygnal/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/Makefile -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/port.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portasm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portbenchmark.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portclib.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/portmacro.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/porttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/porttrace.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/readme_xtensa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/readme_xtensa.txt -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_api.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_config.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_context.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_context.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_context.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_init.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_intr.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_intr_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_intr_asm.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_overlay_os_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_overlay_os_hook.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_rtos.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_timer.h -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/ThirdParty/XCC/Xtensa/xtensa_vectors.S -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/portable/readme.txt -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/queue.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/readme.txt -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/stream_buffer.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/tasks.c -------------------------------------------------------------------------------- /lib/FreeRTOSv10.1.1/FreeRTOS/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/lib/FreeRTOSv10.1.1/FreeRTOS/Source/timers.c -------------------------------------------------------------------------------- /main/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/Kconfig -------------------------------------------------------------------------------- /main/air/air.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air.c -------------------------------------------------------------------------------- /main/air/air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air.h -------------------------------------------------------------------------------- /main/air/air_band.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_band.c -------------------------------------------------------------------------------- /main/air/air_band.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_band.h -------------------------------------------------------------------------------- /main/air/air_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_cmd.c -------------------------------------------------------------------------------- /main/air/air_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_cmd.h -------------------------------------------------------------------------------- /main/air/air_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_config.h -------------------------------------------------------------------------------- /main/air/air_freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_freq.c -------------------------------------------------------------------------------- /main/air/air_freq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_freq.h -------------------------------------------------------------------------------- /main/air/air_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_io.c -------------------------------------------------------------------------------- /main/air/air_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_io.h -------------------------------------------------------------------------------- /main/air/air_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_mode.c -------------------------------------------------------------------------------- /main/air/air_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_mode.h -------------------------------------------------------------------------------- /main/air/air_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_radio.h -------------------------------------------------------------------------------- /main/air/air_radio_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_radio_driver.h -------------------------------------------------------------------------------- /main/air/air_radio_fake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_radio_fake.c -------------------------------------------------------------------------------- /main/air/air_radio_fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_radio_fake.h -------------------------------------------------------------------------------- /main/air/air_radio_sx127x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_radio_sx127x.c -------------------------------------------------------------------------------- /main/air/air_radio_sx127x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_radio_sx127x.h -------------------------------------------------------------------------------- /main/air/air_rf_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_rf_power.c -------------------------------------------------------------------------------- /main/air/air_rf_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_rf_power.h -------------------------------------------------------------------------------- /main/air/air_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_stream.c -------------------------------------------------------------------------------- /main/air/air_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/air/air_stream.h -------------------------------------------------------------------------------- /main/bluetooth/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/bluetooth/bluetooth.c -------------------------------------------------------------------------------- /main/bluetooth/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/bluetooth/bluetooth.h -------------------------------------------------------------------------------- /main/bluetooth/bluetooth_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/bluetooth/bluetooth_hal.c -------------------------------------------------------------------------------- /main/bluetooth/bluetooth_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/bluetooth/bluetooth_hal.h -------------------------------------------------------------------------------- /main/bluetooth/bluetooth_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/bluetooth/bluetooth_ota.c -------------------------------------------------------------------------------- /main/bluetooth/bluetooth_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/bluetooth/bluetooth_ota.h -------------------------------------------------------------------------------- /main/bluetooth/bluetooth_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/bluetooth/bluetooth_uuid.h -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/config/config.c -------------------------------------------------------------------------------- /main/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/config/config.h -------------------------------------------------------------------------------- /main/config/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/config/settings.c -------------------------------------------------------------------------------- /main/config/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/config/settings.h -------------------------------------------------------------------------------- /main/config/settings_rmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/config/settings_rmp.c -------------------------------------------------------------------------------- /main/config/settings_rmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/config/settings_rmp.h -------------------------------------------------------------------------------- /main/input/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input.c -------------------------------------------------------------------------------- /main/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input.h -------------------------------------------------------------------------------- /main/input/input_air.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_air.c -------------------------------------------------------------------------------- /main/input/input_air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_air.h -------------------------------------------------------------------------------- /main/input/input_air_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_air_bind.c -------------------------------------------------------------------------------- /main/input/input_air_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_air_bind.h -------------------------------------------------------------------------------- /main/input/input_crsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_crsf.c -------------------------------------------------------------------------------- /main/input/input_crsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_crsf.h -------------------------------------------------------------------------------- /main/input/input_fake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_fake.c -------------------------------------------------------------------------------- /main/input/input_fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_fake.h -------------------------------------------------------------------------------- /main/input/input_ibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_ibus.c -------------------------------------------------------------------------------- /main/input/input_ibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_ibus.h -------------------------------------------------------------------------------- /main/input/input_ppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_ppm.c -------------------------------------------------------------------------------- /main/input/input_ppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_ppm.h -------------------------------------------------------------------------------- /main/input/input_sbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_sbus.c -------------------------------------------------------------------------------- /main/input/input_sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/input/input_sbus.h -------------------------------------------------------------------------------- /main/io/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/gpio.c -------------------------------------------------------------------------------- /main/io/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/gpio.h -------------------------------------------------------------------------------- /main/io/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/io.c -------------------------------------------------------------------------------- /main/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/io.h -------------------------------------------------------------------------------- /main/io/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/pwm.c -------------------------------------------------------------------------------- /main/io/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/pwm.h -------------------------------------------------------------------------------- /main/io/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/serial.c -------------------------------------------------------------------------------- /main/io/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/serial.h -------------------------------------------------------------------------------- /main/io/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/storage.c -------------------------------------------------------------------------------- /main/io/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/storage.h -------------------------------------------------------------------------------- /main/io/sx127x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/sx127x.c -------------------------------------------------------------------------------- /main/io/sx127x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/io/sx127x.h -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/main.c -------------------------------------------------------------------------------- /main/msp/msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp.c -------------------------------------------------------------------------------- /main/msp/msp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp.h -------------------------------------------------------------------------------- /main/msp/msp_air.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_air.c -------------------------------------------------------------------------------- /main/msp/msp_air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_air.h -------------------------------------------------------------------------------- /main/msp/msp_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_io.c -------------------------------------------------------------------------------- /main/msp/msp_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_io.h -------------------------------------------------------------------------------- /main/msp/msp_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_serial.c -------------------------------------------------------------------------------- /main/msp/msp_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_serial.h -------------------------------------------------------------------------------- /main/msp/msp_telemetry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_telemetry.c -------------------------------------------------------------------------------- /main/msp/msp_telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_telemetry.h -------------------------------------------------------------------------------- /main/msp/msp_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_transport.c -------------------------------------------------------------------------------- /main/msp/msp_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/msp/msp_transport.h -------------------------------------------------------------------------------- /main/ota/ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ota/ota.c -------------------------------------------------------------------------------- /main/ota/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ota/ota.h -------------------------------------------------------------------------------- /main/output/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output.c -------------------------------------------------------------------------------- /main/output/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output.h -------------------------------------------------------------------------------- /main/output/output_air.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_air.c -------------------------------------------------------------------------------- /main/output/output_air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_air.h -------------------------------------------------------------------------------- /main/output/output_air_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_air_bind.c -------------------------------------------------------------------------------- /main/output/output_air_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_air_bind.h -------------------------------------------------------------------------------- /main/output/output_air_rf_power_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_air_rf_power_test.c -------------------------------------------------------------------------------- /main/output/output_air_rf_power_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_air_rf_power_test.h -------------------------------------------------------------------------------- /main/output/output_crsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_crsf.c -------------------------------------------------------------------------------- /main/output/output_crsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_crsf.h -------------------------------------------------------------------------------- /main/output/output_fport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_fport.c -------------------------------------------------------------------------------- /main/output/output_fport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_fport.h -------------------------------------------------------------------------------- /main/output/output_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_msp.c -------------------------------------------------------------------------------- /main/output/output_msp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_msp.h -------------------------------------------------------------------------------- /main/output/output_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_none.c -------------------------------------------------------------------------------- /main/output/output_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_none.h -------------------------------------------------------------------------------- /main/output/output_sbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_sbus.c -------------------------------------------------------------------------------- /main/output/output_sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/output/output_sbus.h -------------------------------------------------------------------------------- /main/p2p/p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/p2p/p2p.c -------------------------------------------------------------------------------- /main/p2p/p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/p2p/p2p.h -------------------------------------------------------------------------------- /main/platform/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/platform/dispatch.c -------------------------------------------------------------------------------- /main/platform/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/platform/dispatch.h -------------------------------------------------------------------------------- /main/platform/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/platform/system.c -------------------------------------------------------------------------------- /main/platform/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/platform/system.h -------------------------------------------------------------------------------- /main/protocols/crsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/crsf.c -------------------------------------------------------------------------------- /main/protocols/crsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/crsf.h -------------------------------------------------------------------------------- /main/protocols/crsf_units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/crsf_units.c -------------------------------------------------------------------------------- /main/protocols/crsf_units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/crsf_units.h -------------------------------------------------------------------------------- /main/protocols/ibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/ibus.c -------------------------------------------------------------------------------- /main/protocols/ibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/ibus.h -------------------------------------------------------------------------------- /main/protocols/sbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/sbus.c -------------------------------------------------------------------------------- /main/protocols/sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/sbus.h -------------------------------------------------------------------------------- /main/protocols/smartport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/smartport.c -------------------------------------------------------------------------------- /main/protocols/smartport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/protocols/smartport.h -------------------------------------------------------------------------------- /main/rc/failsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/failsafe.c -------------------------------------------------------------------------------- /main/rc/failsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/failsafe.h -------------------------------------------------------------------------------- /main/rc/rc-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/rc-private.h -------------------------------------------------------------------------------- /main/rc/rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/rc.c -------------------------------------------------------------------------------- /main/rc/rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/rc.h -------------------------------------------------------------------------------- /main/rc/rc_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/rc_data.c -------------------------------------------------------------------------------- /main/rc/rc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/rc_data.h -------------------------------------------------------------------------------- /main/rc/rc_rmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/rc_rmp.c -------------------------------------------------------------------------------- /main/rc/rc_rmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/rc_rmp.h -------------------------------------------------------------------------------- /main/rc/telemetry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/telemetry.c -------------------------------------------------------------------------------- /main/rc/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rc/telemetry.h -------------------------------------------------------------------------------- /main/rmp/rmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rmp/rmp.c -------------------------------------------------------------------------------- /main/rmp/rmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rmp/rmp.h -------------------------------------------------------------------------------- /main/rmp/rmp_air.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rmp/rmp_air.c -------------------------------------------------------------------------------- /main/rmp/rmp_air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/rmp/rmp_air.h -------------------------------------------------------------------------------- /main/target/bands/433.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/bands/433.h -------------------------------------------------------------------------------- /main/target/bands/868_915.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/bands/868_915.h -------------------------------------------------------------------------------- /main/target/platforms/esp32/make_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/make_release.py -------------------------------------------------------------------------------- /main/target/platforms/esp32/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/partitions.csv -------------------------------------------------------------------------------- /main/target/platforms/esp32/post_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/post_platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32/pre_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/pre_platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32/sdkconfig.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/sdkconfig.base -------------------------------------------------------------------------------- /main/target/platforms/esp32/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/serial.c -------------------------------------------------------------------------------- /main/target/platforms/esp32/single_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/single_button.h -------------------------------------------------------------------------------- /main/target/platforms/esp32/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32/system.c -------------------------------------------------------------------------------- /main/target/platforms/esp32_AFnano_433/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_AFnano_433/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_AFnano_433/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_AFnano_433/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_AFnano_915/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_AFnano_915/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_AFnano_915/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_AFnano_915/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_MicroRX_RFM_433/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_MicroRX_RFM_433/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_MicroRX_RFM_433/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_MicroRX_RFM_433/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_heltec_oled_v1_433/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_heltec_oled_v1_433/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_heltec_oled_v1_433/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_heltec_oled_v1_433/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_high_power_v1_433/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_high_power_v1_433/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_high_power_v1_433/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_high_power_v1_433/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_high_power_v1_433/variants: -------------------------------------------------------------------------------- 1 | tx 2 | -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_omega/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_omega/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_omega/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_omega/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_omega/variants: -------------------------------------------------------------------------------- 1 | rx 2 | -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v1_433/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v1_433/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v1_433/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v1_433/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v1_868_915/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v1_868_915/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v1_868_915/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v1_868_915/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v2_433/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v2_433/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v2_433/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v2_433/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v2_868_915/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v2_868_915/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_oled_v2_868_915/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_oled_v2_868_915/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v1/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v1/common.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v1/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v1/screen.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v1_433/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v1_433/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v1_433/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v1_433/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v1_868_915/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v1_868_915/platform.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v1_868_915/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v1_868_915/sdkconfig -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v2/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v2/common.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v2/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v2/screen.h -------------------------------------------------------------------------------- /main/target/platforms/esp32_lora_ttgo_v2/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/esp32_lora_ttgo_v2/touch.h -------------------------------------------------------------------------------- /main/target/platforms/stm32/FreeRTOS-libopencm3-glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/FreeRTOS-libopencm3-glue.c -------------------------------------------------------------------------------- /main/target/platforms/stm32/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/FreeRTOSConfig.h -------------------------------------------------------------------------------- /main/target/platforms/stm32/f1/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/f1/ldscript.ld -------------------------------------------------------------------------------- /main/target/platforms/stm32/f1/libopencm3.target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/f1/libopencm3.target.mk -------------------------------------------------------------------------------- /main/target/platforms/stm32/f1/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/f1/openocd.cfg -------------------------------------------------------------------------------- /main/target/platforms/stm32/f1/post_platform.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/target/platforms/stm32/f1/pre_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/f1/pre_platform.h -------------------------------------------------------------------------------- /main/target/platforms/stm32/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/gdbinit -------------------------------------------------------------------------------- /main/target/platforms/stm32/libopencm3.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/libopencm3.rules.mk -------------------------------------------------------------------------------- /main/target/platforms/stm32/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/main.c -------------------------------------------------------------------------------- /main/target/platforms/stm32/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/serial.c -------------------------------------------------------------------------------- /main/target/platforms/stm32/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32/system.c -------------------------------------------------------------------------------- /main/target/platforms/stm32f1_blackpill/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/platforms/stm32f1_blackpill/platform.h -------------------------------------------------------------------------------- /main/target/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/target.h -------------------------------------------------------------------------------- /main/target/variants/rx/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/variants/rx/sdkconfig -------------------------------------------------------------------------------- /main/target/variants/tx/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/variants/tx/sdkconfig -------------------------------------------------------------------------------- /main/target/variants/txrx/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/target/variants/txrx/sdkconfig -------------------------------------------------------------------------------- /main/ui/animation/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/animation.h -------------------------------------------------------------------------------- /main/ui/animation/images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/images.sh -------------------------------------------------------------------------------- /main/ui/animation/raven.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven.gif -------------------------------------------------------------------------------- /main/ui/animation/raven_0.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_0.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_1.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_1.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_2.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_2.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_3.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_3.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_4.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_4.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_5.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_5.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_6.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_6.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_7.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_7.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_8.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_8.xbm -------------------------------------------------------------------------------- /main/ui/animation/raven_9.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/animation/raven_9.xbm -------------------------------------------------------------------------------- /main/ui/beeper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/beeper.c -------------------------------------------------------------------------------- /main/ui/beeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/beeper.h -------------------------------------------------------------------------------- /main/ui/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/button.c -------------------------------------------------------------------------------- /main/ui/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/button.h -------------------------------------------------------------------------------- /main/ui/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/led.c -------------------------------------------------------------------------------- /main/ui/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/led.h -------------------------------------------------------------------------------- /main/ui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/menu.c -------------------------------------------------------------------------------- /main/ui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/menu.h -------------------------------------------------------------------------------- /main/ui/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/screen.c -------------------------------------------------------------------------------- /main/ui/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/screen.h -------------------------------------------------------------------------------- /main/ui/screen_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/screen_i2c.c -------------------------------------------------------------------------------- /main/ui/screen_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/screen_i2c.h -------------------------------------------------------------------------------- /main/ui/u8g2_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/u8g2_hal.c -------------------------------------------------------------------------------- /main/ui/u8g2_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/u8g2_hal.h -------------------------------------------------------------------------------- /main/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/ui.c -------------------------------------------------------------------------------- /main/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/ui/ui.h -------------------------------------------------------------------------------- /main/util/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/crc.c -------------------------------------------------------------------------------- /main/util/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/crc.h -------------------------------------------------------------------------------- /main/util/data_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/data_state.c -------------------------------------------------------------------------------- /main/util/data_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/data_state.h -------------------------------------------------------------------------------- /main/util/fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/fec.c -------------------------------------------------------------------------------- /main/util/fec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/fec.h -------------------------------------------------------------------------------- /main/util/lpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/lpf.c -------------------------------------------------------------------------------- /main/util/lpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/lpf.h -------------------------------------------------------------------------------- /main/util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/macros.h -------------------------------------------------------------------------------- /main/util/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/ringbuffer.c -------------------------------------------------------------------------------- /main/util/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/ringbuffer.h -------------------------------------------------------------------------------- /main/util/stringutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/stringutil.c -------------------------------------------------------------------------------- /main/util/stringutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/stringutil.h -------------------------------------------------------------------------------- /main/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/time.h -------------------------------------------------------------------------------- /main/util/uvarint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/uvarint.c -------------------------------------------------------------------------------- /main/util/uvarint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/uvarint.h -------------------------------------------------------------------------------- /main/util/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RavenLRS/raven/HEAD/main/util/version.h --------------------------------------------------------------------------------