├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── ci └── Dockerfile ├── lmic ├── aes.c ├── aes.h ├── debug.c ├── debug.h ├── hal.h ├── lce.c ├── lce.h ├── lmic.c ├── lmic.h ├── lorabase.h ├── oslmic.c ├── oslmic.h ├── peripherals.h ├── radio-sx126x.c ├── radio-sx127x.c ├── radio.c └── region.h ├── projects ├── .gitignore ├── ex-join │ ├── Makefile │ ├── app.svc │ ├── main.c │ └── test.py ├── fam-devboards.mk ├── fam-simul.mk ├── platform.mk ├── projects.gmk └── variants.mk ├── services ├── appstart.svc ├── appstart │ └── main.c ├── eefs.svc ├── eefs │ ├── eefs.c │ ├── eefs.h │ ├── picofs.c │ ├── picofs.h │ └── ufid.py ├── frag.svc ├── fuota.svc ├── fuota │ ├── .gitignore │ ├── Makefile │ ├── frag.c │ ├── frag.h │ ├── frag.py │ ├── fuota.c │ ├── fuota.h │ ├── fuota_hal.h │ ├── fuota_hal_x86_64.h │ ├── fwman.c │ ├── test.c │ ├── test.py │ ├── test.up │ └── testkey.pem ├── fwman.svc ├── lwmux.svc ├── lwmux │ ├── lwmux.c │ └── lwmux.h ├── lwtest.svc ├── lwtest │ └── testmode.c ├── pwrman.svc ├── pwrman │ ├── pwrman.c │ └── pwrman.h ├── uexti.svc └── uexti │ ├── uexti.c │ └── uexti.h ├── stm32 ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32L0xx │ │ │ └── Include │ │ │ ├── stm32l051xx.h │ │ │ ├── stm32l052xx.h │ │ │ ├── stm32l053xx.h │ │ │ ├── stm32l061xx.h │ │ │ ├── stm32l062xx.h │ │ │ ├── stm32l063xx.h │ │ │ ├── stm32l071xx.h │ │ │ ├── stm32l072xx.h │ │ │ ├── stm32l073xx.h │ │ │ ├── stm32l081xx.h │ │ │ ├── stm32l082xx.h │ │ │ ├── stm32l083xx.h │ │ │ ├── stm32l0xx.h │ │ │ └── system_stm32l0xx.h │ └── Include │ │ ├── arm_common_tables.h │ │ ├── arm_const_structs.h │ │ ├── arm_math.h │ │ ├── core_cm0.h │ │ ├── core_cm0plus.h │ │ ├── core_cm3.h │ │ ├── core_cm4.h │ │ ├── core_cm7.h │ │ ├── core_cmFunc.h │ │ ├── core_cmInstr.h │ │ ├── core_cmSimd.h │ │ ├── core_sc000.h │ │ └── core_sc300.h ├── adc.c ├── board.h ├── brd_devboards.h ├── eeprom.c ├── fw.ld ├── gpio.c ├── hal.c ├── hal_stm32.h ├── hw.h ├── i2c.c ├── leds.c ├── persodata.c ├── sleep.S ├── startup.c ├── trng.c └── usart.c ├── tools ├── arch.gmk ├── openocd │ ├── flash.cfg │ ├── nucleo-l0.cfg │ └── stlink-rules.tgz ├── pylora │ ├── loracrypto.py │ ├── loradefs.py │ ├── loramsg.py │ ├── loraopts.py │ └── rtlib │ │ ├── __init__.py │ │ ├── eui.py │ │ └── types.py └── svctool │ ├── cc.py │ └── svctool.py └── unicorn ├── board.h ├── fw.ld ├── hal.c ├── hal_unicorn.h ├── hw.h ├── persodata.c ├── simul ├── devsimul.py ├── devtest.py ├── fuotatest.py ├── lwtest.py ├── peripherals.py └── vtimeloop.py └── startup.c /.gitattributes: -------------------------------------------------------------------------------- 1 | *.hex -diff 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/README.md -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /lmic/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/aes.c -------------------------------------------------------------------------------- /lmic/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/aes.h -------------------------------------------------------------------------------- /lmic/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/debug.c -------------------------------------------------------------------------------- /lmic/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/debug.h -------------------------------------------------------------------------------- /lmic/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/hal.h -------------------------------------------------------------------------------- /lmic/lce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/lce.c -------------------------------------------------------------------------------- /lmic/lce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/lce.h -------------------------------------------------------------------------------- /lmic/lmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/lmic.c -------------------------------------------------------------------------------- /lmic/lmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/lmic.h -------------------------------------------------------------------------------- /lmic/lorabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/lorabase.h -------------------------------------------------------------------------------- /lmic/oslmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/oslmic.c -------------------------------------------------------------------------------- /lmic/oslmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/oslmic.h -------------------------------------------------------------------------------- /lmic/peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/peripherals.h -------------------------------------------------------------------------------- /lmic/radio-sx126x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/radio-sx126x.c -------------------------------------------------------------------------------- /lmic/radio-sx127x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/radio-sx127x.c -------------------------------------------------------------------------------- /lmic/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/radio.c -------------------------------------------------------------------------------- /lmic/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/lmic/region.h -------------------------------------------------------------------------------- /projects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/.gitignore -------------------------------------------------------------------------------- /projects/ex-join/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/ex-join/Makefile -------------------------------------------------------------------------------- /projects/ex-join/app.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/ex-join/app.svc -------------------------------------------------------------------------------- /projects/ex-join/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/ex-join/main.c -------------------------------------------------------------------------------- /projects/ex-join/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/ex-join/test.py -------------------------------------------------------------------------------- /projects/fam-devboards.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/fam-devboards.mk -------------------------------------------------------------------------------- /projects/fam-simul.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/fam-simul.mk -------------------------------------------------------------------------------- /projects/platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/platform.mk -------------------------------------------------------------------------------- /projects/projects.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/projects.gmk -------------------------------------------------------------------------------- /projects/variants.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/projects/variants.mk -------------------------------------------------------------------------------- /services/appstart.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/appstart.svc -------------------------------------------------------------------------------- /services/appstart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/appstart/main.c -------------------------------------------------------------------------------- /services/eefs.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/eefs.svc -------------------------------------------------------------------------------- /services/eefs/eefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/eefs/eefs.c -------------------------------------------------------------------------------- /services/eefs/eefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/eefs/eefs.h -------------------------------------------------------------------------------- /services/eefs/picofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/eefs/picofs.c -------------------------------------------------------------------------------- /services/eefs/picofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/eefs/picofs.h -------------------------------------------------------------------------------- /services/eefs/ufid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/eefs/ufid.py -------------------------------------------------------------------------------- /services/frag.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/frag.svc -------------------------------------------------------------------------------- /services/fuota.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota.svc -------------------------------------------------------------------------------- /services/fuota/.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | *.d 3 | *.o 4 | -------------------------------------------------------------------------------- /services/fuota/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/Makefile -------------------------------------------------------------------------------- /services/fuota/frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/frag.c -------------------------------------------------------------------------------- /services/fuota/frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/frag.h -------------------------------------------------------------------------------- /services/fuota/frag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/frag.py -------------------------------------------------------------------------------- /services/fuota/fuota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/fuota.c -------------------------------------------------------------------------------- /services/fuota/fuota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/fuota.h -------------------------------------------------------------------------------- /services/fuota/fuota_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/fuota_hal.h -------------------------------------------------------------------------------- /services/fuota/fuota_hal_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/fuota_hal_x86_64.h -------------------------------------------------------------------------------- /services/fuota/fwman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/fwman.c -------------------------------------------------------------------------------- /services/fuota/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/test.c -------------------------------------------------------------------------------- /services/fuota/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/test.py -------------------------------------------------------------------------------- /services/fuota/test.up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/test.up -------------------------------------------------------------------------------- /services/fuota/testkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fuota/testkey.pem -------------------------------------------------------------------------------- /services/fwman.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/fwman.svc -------------------------------------------------------------------------------- /services/lwmux.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/lwmux.svc -------------------------------------------------------------------------------- /services/lwmux/lwmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/lwmux/lwmux.c -------------------------------------------------------------------------------- /services/lwmux/lwmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/lwmux/lwmux.h -------------------------------------------------------------------------------- /services/lwtest.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/lwtest.svc -------------------------------------------------------------------------------- /services/lwtest/testmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/lwtest/testmode.c -------------------------------------------------------------------------------- /services/pwrman.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/pwrman.svc -------------------------------------------------------------------------------- /services/pwrman/pwrman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/pwrman/pwrman.c -------------------------------------------------------------------------------- /services/pwrman/pwrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/pwrman/pwrman.h -------------------------------------------------------------------------------- /services/uexti.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/uexti.svc -------------------------------------------------------------------------------- /services/uexti/uexti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/uexti/uexti.c -------------------------------------------------------------------------------- /services/uexti/uexti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/services/uexti/uexti.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l051xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l051xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l052xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l052xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l061xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l061xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l062xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l062xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l063xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l063xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l071xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l071xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l072xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l072xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l073xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l073xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l081xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l081xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l082xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l082xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l083xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l083xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /stm32/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /stm32/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/adc.c -------------------------------------------------------------------------------- /stm32/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/board.h -------------------------------------------------------------------------------- /stm32/brd_devboards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/brd_devboards.h -------------------------------------------------------------------------------- /stm32/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/eeprom.c -------------------------------------------------------------------------------- /stm32/fw.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/fw.ld -------------------------------------------------------------------------------- /stm32/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/gpio.c -------------------------------------------------------------------------------- /stm32/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/hal.c -------------------------------------------------------------------------------- /stm32/hal_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/hal_stm32.h -------------------------------------------------------------------------------- /stm32/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/hw.h -------------------------------------------------------------------------------- /stm32/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/i2c.c -------------------------------------------------------------------------------- /stm32/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/leds.c -------------------------------------------------------------------------------- /stm32/persodata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/persodata.c -------------------------------------------------------------------------------- /stm32/sleep.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/sleep.S -------------------------------------------------------------------------------- /stm32/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/startup.c -------------------------------------------------------------------------------- /stm32/trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/trng.c -------------------------------------------------------------------------------- /stm32/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/stm32/usart.c -------------------------------------------------------------------------------- /tools/arch.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/arch.gmk -------------------------------------------------------------------------------- /tools/openocd/flash.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/openocd/flash.cfg -------------------------------------------------------------------------------- /tools/openocd/nucleo-l0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/openocd/nucleo-l0.cfg -------------------------------------------------------------------------------- /tools/openocd/stlink-rules.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/openocd/stlink-rules.tgz -------------------------------------------------------------------------------- /tools/pylora/loracrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/pylora/loracrypto.py -------------------------------------------------------------------------------- /tools/pylora/loradefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/pylora/loradefs.py -------------------------------------------------------------------------------- /tools/pylora/loramsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/pylora/loramsg.py -------------------------------------------------------------------------------- /tools/pylora/loraopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/pylora/loraopts.py -------------------------------------------------------------------------------- /tools/pylora/rtlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/pylora/rtlib/__init__.py -------------------------------------------------------------------------------- /tools/pylora/rtlib/eui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/pylora/rtlib/eui.py -------------------------------------------------------------------------------- /tools/pylora/rtlib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/pylora/rtlib/types.py -------------------------------------------------------------------------------- /tools/svctool/cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/svctool/cc.py -------------------------------------------------------------------------------- /tools/svctool/svctool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/tools/svctool/svctool.py -------------------------------------------------------------------------------- /unicorn/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/board.h -------------------------------------------------------------------------------- /unicorn/fw.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/fw.ld -------------------------------------------------------------------------------- /unicorn/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/hal.c -------------------------------------------------------------------------------- /unicorn/hal_unicorn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/hal_unicorn.h -------------------------------------------------------------------------------- /unicorn/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/hw.h -------------------------------------------------------------------------------- /unicorn/persodata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/persodata.c -------------------------------------------------------------------------------- /unicorn/simul/devsimul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/simul/devsimul.py -------------------------------------------------------------------------------- /unicorn/simul/devtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/simul/devtest.py -------------------------------------------------------------------------------- /unicorn/simul/fuotatest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/simul/fuotatest.py -------------------------------------------------------------------------------- /unicorn/simul/lwtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/simul/lwtest.py -------------------------------------------------------------------------------- /unicorn/simul/peripherals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/simul/peripherals.py -------------------------------------------------------------------------------- /unicorn/simul/vtimeloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/simul/vtimeloop.py -------------------------------------------------------------------------------- /unicorn/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorabasics/basicmac/HEAD/unicorn/startup.c --------------------------------------------------------------------------------