├── .gitattributes ├── .gitignore ├── Code └── v1 │ ├── .link_script.sct │ ├── .mbed │ ├── .travis.yml │ ├── .vscode │ ├── c_cpp_properties.json │ ├── configurationCache.log │ ├── dryrun.log │ ├── launch.json │ ├── settings.json │ ├── targets.log │ └── tasks.json │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── Communication │ ├── LoRa.cpp │ └── LoRa.hpp │ ├── GettingStarted.html │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── SensorFusion.cpp │ ├── SensorFusion.hpp │ ├── Sensors │ ├── BME688.cpp │ ├── BME688.hpp │ ├── BME688_defs.h │ ├── bme68x.c │ ├── bme68x.h │ ├── bme68x_defs.h │ ├── bsec_datatypes.h │ ├── bsec_interface.h │ └── libalgobsec.a │ ├── SerialStream.lib │ ├── __pycache__ │ └── mbed_settings.cpython-37.pyc │ ├── custom_targets.json │ ├── lora_radio_helper.h │ ├── main.cpp │ ├── mbed-os.lib │ ├── mbed_app.json │ ├── mbed_config.h │ ├── mbed_settings.py │ ├── mbedtls_lora_config.h │ ├── resources │ └── official_armmbed_example_badge.png │ ├── stm32customtargets.lib │ ├── stm32customtargets │ ├── .gitignore │ ├── .mbedignore │ ├── CMakeLists.txt │ ├── LICENSE-apache-2.0.txt │ ├── README.md │ ├── TARGET_STM32F0 │ │ └── CMakeLists.txt │ ├── TARGET_STM32F1 │ │ ├── CMakeLists.txt │ │ └── TARGET_BLUEPILL_F103C8 │ │ │ ├── CMakeLists.txt │ │ │ ├── PeripheralPins.c │ │ │ └── PinNames.h │ ├── TARGET_STM32F2 │ │ └── CMakeLists.txt │ ├── TARGET_STM32F3 │ │ └── CMakeLists.txt │ ├── TARGET_STM32F4 │ │ ├── CMakeLists.txt │ │ └── TARGET_CORE2 │ │ │ ├── CMakeLists.txt │ │ │ ├── PeripheralPinMaps.h │ │ │ ├── PeripheralPins.c │ │ │ ├── PinNames.h │ │ │ └── system_clock.c │ ├── TARGET_STM32F7 │ │ └── CMakeLists.txt │ ├── TARGET_STM32G0 │ │ └── CMakeLists.txt │ ├── TARGET_STM32G4 │ │ └── CMakeLists.txt │ ├── TARGET_STM32H7 │ │ └── CMakeLists.txt │ ├── TARGET_STM32L0 │ │ ├── CMakeLists.txt │ │ ├── TARGET_GNAT │ │ │ ├── CMakeLists.txt │ │ │ └── PinNames.h │ │ ├── TARGET_GRASSHOPPER │ │ │ ├── CMakeLists.txt │ │ │ └── PinNames.h │ │ └── TARGET_MTB_MURATA_ABZ │ │ │ ├── CMakeLists.txt │ │ │ ├── PeripheralPins.c │ │ │ ├── PinNames.h │ │ │ └── system_clock.c │ ├── TARGET_STM32L1 │ │ └── CMakeLists.txt │ ├── TARGET_STM32L4 │ │ ├── CMakeLists.txt │ │ └── TARGET_STWIN │ │ │ ├── CMakeLists.txt │ │ │ ├── PeripheralPins.c │ │ │ └── PinNames.h │ ├── TARGET_STM32L5 │ │ └── CMakeLists.txt │ ├── TARGET_STM32U5 │ │ └── CMakeLists.txt │ ├── TARGET_STM32WB │ │ └── CMakeLists.txt │ ├── TARGET_STM32WL │ │ ├── CMakeLists.txt │ │ ├── TARGET_LORA_E5 │ │ │ ├── CMakeLists.txt │ │ │ ├── LORA_E5_radio_driver.cpp │ │ │ ├── PeripheralPins.c │ │ │ └── PinNames.h │ │ ├── TARGET_LORA_E5_BREAKOUT │ │ │ └── CMakeLists.txt │ │ ├── TARGET_LORA_E5_DEV_BOARD │ │ │ └── CMakeLists.txt │ │ ├── TARGET_LORA_E5_MINI │ │ │ └── CMakeLists.txt │ │ ├── TARGET_LORA_E5_TINY │ │ │ └── CMakeLists.txt │ │ ├── TARGET_RAK3172 │ │ │ ├── CMakeLists.txt │ │ │ ├── PeripheralPins.c │ │ │ ├── PinNames.h │ │ │ └── RAK3172_radio_driver.cpp │ │ └── TARGET_RAK3172_BREAKOUT │ │ │ └── CMakeLists.txt │ ├── aci_build.py │ ├── aci_pinvalidate.py │ ├── custom_targets.json │ └── mbed_app_template.json │ ├── trace_helper.cpp │ └── trace_helper.h ├── Images ├── boards.jpg ├── iotcentral.png ├── kivyprototype.png └── ttndata.PNG ├── PCB ├── 101-3 │ ├── Gerbers │ │ ├── main-B_Cu.gbr │ │ ├── main-B_Mask.gbr │ │ ├── main-B_Paste.gbr │ │ ├── main-B_SilkS.gbr │ │ ├── main-Edge_Cuts.gbr │ │ ├── main-F_Cu.gbr │ │ ├── main-F_Mask.gbr │ │ ├── main-F_Paste.gbr │ │ ├── main-F_SilkS.gbr │ │ ├── main-GND.gbr │ │ ├── main-PWR.gbr │ │ ├── main-drl_map.ps │ │ ├── main-job.gbrjob │ │ └── main.drl │ ├── Schematic.pdf │ ├── Sensor.dcm │ ├── fp-info-cache │ ├── fp-lib-table │ ├── main-cache.lib │ ├── main-rescue.dcm │ ├── main-rescue.lib │ ├── main.kicad_pcb │ ├── main.kicad_pcb-bak │ ├── main.net │ ├── main.pro │ ├── main.sch │ ├── main.sch-bak │ ├── report.txt │ └── sym-lib-table └── 101-5 │ ├── Schematic.pdf │ ├── Sensor.dcm │ ├── fp-info-cache │ ├── fp-lib-table │ ├── main-cache.lib │ ├── main-rescue.dcm │ ├── main-rescue.lib │ ├── main.csv │ ├── main.kicad_pcb │ ├── main.kicad_pcb-bak │ ├── main.net │ ├── main.pro │ ├── main.sch │ ├── main.sch-bak │ ├── main.xml │ ├── report.txt │ └── sym-lib-table └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/v1/.link_script.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.link_script.sct -------------------------------------------------------------------------------- /Code/v1/.mbed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.mbed -------------------------------------------------------------------------------- /Code/v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.travis.yml -------------------------------------------------------------------------------- /Code/v1/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Code/v1/.vscode/configurationCache.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.vscode/configurationCache.log -------------------------------------------------------------------------------- /Code/v1/.vscode/dryrun.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.vscode/dryrun.log -------------------------------------------------------------------------------- /Code/v1/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.vscode/launch.json -------------------------------------------------------------------------------- /Code/v1/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.vscode/settings.json -------------------------------------------------------------------------------- /Code/v1/.vscode/targets.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.vscode/targets.log -------------------------------------------------------------------------------- /Code/v1/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/.vscode/tasks.json -------------------------------------------------------------------------------- /Code/v1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/CONTRIBUTING.md -------------------------------------------------------------------------------- /Code/v1/Communication/LoRa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Communication/LoRa.cpp -------------------------------------------------------------------------------- /Code/v1/Communication/LoRa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Communication/LoRa.hpp -------------------------------------------------------------------------------- /Code/v1/GettingStarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/GettingStarted.html -------------------------------------------------------------------------------- /Code/v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/LICENSE -------------------------------------------------------------------------------- /Code/v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Makefile -------------------------------------------------------------------------------- /Code/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/README.md -------------------------------------------------------------------------------- /Code/v1/SensorFusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/SensorFusion.cpp -------------------------------------------------------------------------------- /Code/v1/SensorFusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/SensorFusion.hpp -------------------------------------------------------------------------------- /Code/v1/Sensors/BME688.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/BME688.cpp -------------------------------------------------------------------------------- /Code/v1/Sensors/BME688.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/BME688.hpp -------------------------------------------------------------------------------- /Code/v1/Sensors/BME688_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/BME688_defs.h -------------------------------------------------------------------------------- /Code/v1/Sensors/bme68x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/bme68x.c -------------------------------------------------------------------------------- /Code/v1/Sensors/bme68x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/bme68x.h -------------------------------------------------------------------------------- /Code/v1/Sensors/bme68x_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/bme68x_defs.h -------------------------------------------------------------------------------- /Code/v1/Sensors/bsec_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/bsec_datatypes.h -------------------------------------------------------------------------------- /Code/v1/Sensors/bsec_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/bsec_interface.h -------------------------------------------------------------------------------- /Code/v1/Sensors/libalgobsec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/Sensors/libalgobsec.a -------------------------------------------------------------------------------- /Code/v1/SerialStream.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/SerialStream.lib -------------------------------------------------------------------------------- /Code/v1/__pycache__/mbed_settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/__pycache__/mbed_settings.cpython-37.pyc -------------------------------------------------------------------------------- /Code/v1/custom_targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/custom_targets.json -------------------------------------------------------------------------------- /Code/v1/lora_radio_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/lora_radio_helper.h -------------------------------------------------------------------------------- /Code/v1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/main.cpp -------------------------------------------------------------------------------- /Code/v1/mbed-os.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/mbed-os.lib -------------------------------------------------------------------------------- /Code/v1/mbed_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/mbed_app.json -------------------------------------------------------------------------------- /Code/v1/mbed_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/mbed_config.h -------------------------------------------------------------------------------- /Code/v1/mbed_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/mbed_settings.py -------------------------------------------------------------------------------- /Code/v1/mbedtls_lora_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/mbedtls_lora_config.h -------------------------------------------------------------------------------- /Code/v1/resources/official_armmbed_example_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/resources/official_armmbed_example_badge.png -------------------------------------------------------------------------------- /Code/v1/stm32customtargets.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets.lib -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/.gitignore -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/.mbedignore: -------------------------------------------------------------------------------- 1 | cmake_build/* 2 | -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/LICENSE-apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/LICENSE-apache-2.0.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/README.md -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F0/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F1/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/PeripheralPins.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F2/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F3/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F4/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/PeripheralPinMaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/PeripheralPinMaps.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/PeripheralPins.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/system_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F4/TARGET_CORE2/system_clock.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32F7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32F7/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32G0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32G0/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32G4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32G4/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32H7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32H7/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GNAT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GNAT/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GNAT/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GNAT/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GRASSHOPPER/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GRASSHOPPER/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GRASSHOPPER/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_GRASSHOPPER/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/PeripheralPins.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/system_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L0/TARGET_MTB_MURATA_ABZ/system_clock.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L1/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L4/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L4/TARGET_STWIN/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L4/TARGET_STWIN/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L4/TARGET_STWIN/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L4/TARGET_STWIN/PeripheralPins.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L4/TARGET_STWIN/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L4/TARGET_STWIN/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32L5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32L5/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32U5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32U5/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WB/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/LORA_E5_radio_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/LORA_E5_radio_driver.cpp -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/PeripheralPins.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_BREAKOUT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_BREAKOUT/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_DEV_BOARD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_DEV_BOARD/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_MINI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_MINI/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_TINY/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_LORA_E5_TINY/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/PeripheralPins.c -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/PinNames.h -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/RAK3172_radio_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172/RAK3172_radio_driver.cpp -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172_BREAKOUT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/TARGET_STM32WL/TARGET_RAK3172_BREAKOUT/CMakeLists.txt -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/aci_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/aci_build.py -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/aci_pinvalidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/aci_pinvalidate.py -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/custom_targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/custom_targets.json -------------------------------------------------------------------------------- /Code/v1/stm32customtargets/mbed_app_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/stm32customtargets/mbed_app_template.json -------------------------------------------------------------------------------- /Code/v1/trace_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/trace_helper.cpp -------------------------------------------------------------------------------- /Code/v1/trace_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Code/v1/trace_helper.h -------------------------------------------------------------------------------- /Images/boards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Images/boards.jpg -------------------------------------------------------------------------------- /Images/iotcentral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Images/iotcentral.png -------------------------------------------------------------------------------- /Images/kivyprototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Images/kivyprototype.png -------------------------------------------------------------------------------- /Images/ttndata.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/Images/ttndata.PNG -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-B_Cu.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-B_Mask.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-B_Paste.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-B_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-B_SilkS.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-Edge_Cuts.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-F_Cu.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-F_Mask.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-F_Paste.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-F_SilkS.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-F_SilkS.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-GND.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-GND.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-PWR.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-PWR.gbr -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-drl_map.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-drl_map.ps -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main-job.gbrjob -------------------------------------------------------------------------------- /PCB/101-3/Gerbers/main.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Gerbers/main.drl -------------------------------------------------------------------------------- /PCB/101-3/Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Schematic.pdf -------------------------------------------------------------------------------- /PCB/101-3/Sensor.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/Sensor.dcm -------------------------------------------------------------------------------- /PCB/101-3/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/fp-info-cache -------------------------------------------------------------------------------- /PCB/101-3/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/fp-lib-table -------------------------------------------------------------------------------- /PCB/101-3/main-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main-cache.lib -------------------------------------------------------------------------------- /PCB/101-3/main-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /PCB/101-3/main-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main-rescue.lib -------------------------------------------------------------------------------- /PCB/101-3/main.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main.kicad_pcb -------------------------------------------------------------------------------- /PCB/101-3/main.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main.kicad_pcb-bak -------------------------------------------------------------------------------- /PCB/101-3/main.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main.net -------------------------------------------------------------------------------- /PCB/101-3/main.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main.pro -------------------------------------------------------------------------------- /PCB/101-3/main.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main.sch -------------------------------------------------------------------------------- /PCB/101-3/main.sch-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/main.sch-bak -------------------------------------------------------------------------------- /PCB/101-3/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/report.txt -------------------------------------------------------------------------------- /PCB/101-3/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-3/sym-lib-table -------------------------------------------------------------------------------- /PCB/101-5/Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/Schematic.pdf -------------------------------------------------------------------------------- /PCB/101-5/Sensor.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/Sensor.dcm -------------------------------------------------------------------------------- /PCB/101-5/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/fp-info-cache -------------------------------------------------------------------------------- /PCB/101-5/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/fp-lib-table -------------------------------------------------------------------------------- /PCB/101-5/main-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main-cache.lib -------------------------------------------------------------------------------- /PCB/101-5/main-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /PCB/101-5/main-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main-rescue.lib -------------------------------------------------------------------------------- /PCB/101-5/main.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.csv -------------------------------------------------------------------------------- /PCB/101-5/main.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.kicad_pcb -------------------------------------------------------------------------------- /PCB/101-5/main.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.kicad_pcb-bak -------------------------------------------------------------------------------- /PCB/101-5/main.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.net -------------------------------------------------------------------------------- /PCB/101-5/main.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.pro -------------------------------------------------------------------------------- /PCB/101-5/main.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.sch -------------------------------------------------------------------------------- /PCB/101-5/main.sch-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.sch-bak -------------------------------------------------------------------------------- /PCB/101-5/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/main.xml -------------------------------------------------------------------------------- /PCB/101-5/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/report.txt -------------------------------------------------------------------------------- /PCB/101-5/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/PCB/101-5/sym-lib-table -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mircerson/AERQ/HEAD/README.md --------------------------------------------------------------------------------