├── .gitignore ├── README.md ├── boards.txt ├── cores └── arduino │ ├── Arduino.h │ ├── CDC.cpp │ ├── Callback.cpp │ ├── Callback.h │ ├── Client.h │ ├── FS.cpp │ ├── FS.h │ ├── HardwareSerial.cpp │ ├── HardwareSerial.h │ ├── HardwareSerial1.cpp │ ├── HardwareSerial2.cpp │ ├── HardwareSerial3.cpp │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Makefile │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── RingBuffer.cpp │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Tone.cpp │ ├── Tone.h │ ├── USBAPI.h │ ├── USBCore.cpp │ ├── Uart.cpp │ ├── Uart.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WInterrupts.c │ ├── WInterrupts.h │ ├── WMath.cpp │ ├── WMath.h │ ├── WString.cpp │ ├── WString.h │ ├── WVariant.h │ ├── abi.cpp │ ├── avr │ ├── dtostrf.c │ ├── dtostrf.h │ ├── eeprom.c │ ├── eeprom.h │ ├── fdevopen.c │ ├── interrupt.h │ ├── io.h │ └── pgmspace.h │ ├── binary.h │ ├── delay.c │ ├── delay.h │ ├── hooks.c │ ├── itoa.c │ ├── itoa.h │ ├── main.cpp │ ├── new.cpp │ ├── syscalls_stm32l0.c │ ├── wiring.c │ ├── wiring.h │ ├── wiring_analog.c │ ├── wiring_analog.h │ ├── wiring_constants.h │ ├── wiring_digital.c │ ├── wiring_digital.h │ ├── wiring_private.h │ ├── wiring_pulse.c │ ├── wiring_pulse.h │ ├── wiring_shift.c │ └── wiring_shift.h ├── drivers ├── linux │ ├── 49-cicada.rules │ ├── 49-cricket.rules │ ├── 49-gnat.rules │ ├── 49-grasshopper.rules │ └── 49-nucleo.rules └── windows │ ├── cicada-cdc-acm.inf │ ├── cricket-cdc-acm.inf │ ├── dpinst.xml │ ├── dpinst_amd64.exe │ ├── dpinst_x86.exe │ ├── gnat-cdc-acm.inf │ └── grasshopper-cdc-acm.inf ├── libraries ├── CayenneLPP │ ├── examples │ │ └── CayenneLPP_GNSS │ │ │ └── CayenneLPP_GNSS.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── CayenneLPP.cpp │ │ └── CayenneLPP.h ├── DOSFS │ ├── examples │ │ ├── DOSFS_DataLogger │ │ │ └── DOSFS_DataLogger.ino │ │ ├── DOSFS_Directories │ │ │ └── DOSFS_Directories.ino │ │ ├── DOSFS_Files │ │ │ └── DOSFS_Files.ino │ │ └── DOSFS_ReadWrite │ │ │ └── DOSFS_ReadWrite.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── DOSFS.cpp │ │ └── DOSFS.h ├── EEPROM │ ├── examples │ │ ├── eeprom_clear │ │ │ └── eeprom_clear.ino │ │ ├── eeprom_crc │ │ │ └── eeprom_crc.ino │ │ ├── eeprom_get │ │ │ └── eeprom_get.ino │ │ ├── eeprom_iteration │ │ │ └── eeprom_iteration.ino │ │ ├── eeprom_put │ │ │ └── eeprom_put.ino │ │ ├── eeprom_read │ │ │ └── eeprom_read.ino │ │ ├── eeprom_update │ │ │ └── eeprom_update.ino │ │ └── eeprom_write │ │ │ └── eeprom_write.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ └── EEPROM.h ├── FskRadio │ ├── examples │ │ ├── Fsk_AddressFiltering │ │ │ └── Fsk_AddressFiltering.ino │ │ ├── Fsk_Callbacks │ │ │ └── Fsk_Callback.ino │ │ ├── Fsk_FixedPayload │ │ │ └── Fsk_FixedPayload.ino │ │ ├── Fsk_PingPong │ │ │ └── Fsk_PingPong.ino │ │ └── Fsk_Sense │ │ │ └── Fsk_Sense.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── FskRadio.cpp │ │ └── FskRadio.h ├── GNSS │ ├── examples │ │ ├── GNSS_external │ │ │ └── GNSS_external.ino │ │ ├── GNSS_periodic │ │ │ └── GNSS_periodic.ino │ │ ├── GNSS_suspend │ │ │ └── GNSS_suspend.ino │ │ └── GPS │ │ │ └── GPS.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── GNSS.cpp │ │ ├── GNSS.h │ │ └── utility │ │ ├── gnss_api.h │ │ └── gnss_core.c ├── LoRaRadio │ ├── examples │ │ ├── LoRa_Callbacks │ │ │ └── LoRa_Callbacks.ino │ │ ├── LoRa_FixedPayload │ │ │ └── LoRa_FixedPayload.ino │ │ ├── LoRa_PingPong │ │ │ └── LoRa_PingPong.ino │ │ └── LoRa_Sense │ │ │ └── LoRa_Sense.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── LoRaRadio.cpp │ │ └── LoRaRadio.h ├── LoRaWAN │ ├── examples │ │ ├── LoRaWAN_ADR_Disable │ │ │ └── LoRaWAN_ADR_Disable.ino │ │ ├── LoRaWAN_BatteryLevel │ │ │ └── LoRaWAN_BatteryLevel.ino │ │ ├── LoRaWAN_Callbacks │ │ │ └── LoRaWAN_Callbacks.ino │ │ ├── LoRaWAN_Confirmed │ │ │ └── LoRaWAN_Confirmed.ino │ │ ├── LoRaWAN_DeepSleep │ │ │ └── LoRaWAN_DeepSleep.ino │ │ ├── LoRaWAN_Disconnect │ │ │ └── LoRaWAN_Disconnect.ino │ │ ├── LoRaWAN_Join_ABP │ │ │ └── LoRaWAN_Join_ABP.ino │ │ ├── LoRaWAN_Join_Commissioning │ │ │ └── LoRaWAN_Join_Commissioning.ino │ │ ├── LoRaWAN_Join_OTAA │ │ │ └── LoRaWAN_Join_OTAA.ino │ │ ├── LoRaWAN_Save_Commissioning │ │ │ └── LoRaWAN_Save_Commissioning.ino │ │ ├── LoRaWAN_Save_Session │ │ │ └── LoRaWAN_Save_Session.ino │ │ ├── LoRaWAN_TTN_ABP │ │ │ └── LoRaWAN_TTN_ABP.ino │ │ ├── LoRaWAN_TTN_OTAA │ │ │ └── LoRaWAN_TTN_OTAA.ino │ │ └── LoRaWAN_TimerMillis │ │ │ └── LoRaWAN_TimerMillis.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── LoRaWAN.cpp │ │ └── LoRaWAN.h ├── RTC │ ├── examples │ │ ├── Epoch │ │ │ └── Epoch.ino │ │ ├── SimpleRTC │ │ │ └── SimpleRTC.ino │ │ └── SimpleRTCAlarm │ │ │ └── SimpleRTCAlarm.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── RTC.cpp │ │ └── RTC.h ├── SPI │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SPI.cpp │ │ └── SPI.h ├── STM32L0 │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── STM32L0.cpp │ │ └── STM32L0.h ├── TimerMillis │ ├── examples │ │ └── TimerMillis_Blink │ │ │ └── TimerMillis_Blink.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── TimerMillis.cpp │ │ └── TimerMillis.h └── Wire │ ├── examples │ ├── Wire_Extended │ │ └── Wire_Extended.ino │ ├── Wire_Interrupt │ │ └── Wire_Interrupt.ino │ ├── Wire_Master │ │ └── Wire_Master.ino │ ├── Wire_Poll │ │ └── Wire_Poll.ino │ ├── Wire_Simple │ │ └── Wire_Simple.ino │ ├── Wire_Slave │ │ └── Wire_Slave.ino │ ├── Wire_TimerMillis │ │ └── Wire_TimerMillis.ino │ └── Wire_Transfer │ │ └── Wire_Transfer.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ ├── Wire.cpp │ └── Wire.h ├── platform.txt ├── programmers.txt ├── system ├── CMSIS │ ├── Device │ │ └── ST │ │ │ └── STM32L0xx │ │ │ └── Include │ │ │ ├── stm32l011xx.h │ │ │ ├── stm32l021xx.h │ │ │ ├── stm32l031xx.h │ │ │ ├── stm32l041xx.h │ │ │ ├── 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 │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armcc_V6.h │ │ ├── cmsis_gcc.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 │ └── Lib │ │ ├── libarm_cortexM0l_math.a │ │ └── license.txt └── STM32L0xx │ ├── Include │ ├── LoRaMac.h │ ├── LoRaMacTest.h │ ├── armv6m.h │ ├── armv6m_atomic.h │ ├── armv6m_core.h │ ├── armv6m_pendsv.h │ ├── armv6m_svcall.h │ ├── armv6m_systick.h │ ├── armv6m_work.h │ ├── dosfs_api.h │ ├── dosfs_config.h │ ├── dosfs_core.h │ ├── dosfs_device.h │ ├── dosfs_sflash.h │ ├── dosfs_storage.h │ ├── stm32l0_adc.h │ ├── stm32l0_aes.h │ ├── stm32l0_comp.h │ ├── stm32l0_dac.h │ ├── stm32l0_dma.h │ ├── stm32l0_eeprom.h │ ├── stm32l0_exti.h │ ├── stm32l0_flash.h │ ├── stm32l0_gpio.h │ ├── stm32l0_i2c.h │ ├── stm32l0_iwdg.h │ ├── stm32l0_lptim.h │ ├── stm32l0_random.h │ ├── stm32l0_rtc.h │ ├── stm32l0_sdspi.h │ ├── stm32l0_servo.h │ ├── stm32l0_sfspi.h │ ├── stm32l0_spi.h │ ├── stm32l0_system.h │ ├── stm32l0_timer.h │ ├── stm32l0_uart.h │ ├── stm32l0_usbd_cdc.h │ ├── stm32l0_usbd_class.h │ └── stm32l0_usbd_msc.h │ ├── Lib │ ├── libstm32l052xx.a │ ├── libstm32l072xx.a │ └── libstm32l082xx.a │ └── Source │ ├── LoRa │ ├── Boards │ │ ├── cmwx1zzabz-board.c │ │ ├── sx1272-board.h │ │ ├── sx1272mb2das-board.c │ │ ├── sx1276-board.h │ │ └── wmsgsm42-board.c │ ├── Crypto │ │ ├── aes.c │ │ ├── aes.h │ │ ├── cmac.c │ │ └── cmac.h │ ├── Mac │ │ ├── LoRaMac.c │ │ ├── LoRaMacCrypto.c │ │ ├── LoRaMacCrypto.h │ │ └── region │ │ │ ├── Region.h │ │ │ ├── RegionAS923.c │ │ │ ├── RegionAS923.h │ │ │ ├── RegionAU915.c │ │ │ ├── RegionAU915.h │ │ │ ├── RegionCN470.c │ │ │ ├── RegionCN470.h │ │ │ ├── RegionCN779.c │ │ │ ├── RegionCN779.h │ │ │ ├── RegionCommon.c │ │ │ ├── RegionCommon.h │ │ │ ├── RegionEU433.c │ │ │ ├── RegionEU433.h │ │ │ ├── RegionEU868.c │ │ │ ├── RegionEU868.h │ │ │ ├── RegionIN865.c │ │ │ ├── RegionIN865.h │ │ │ ├── RegionKR920.c │ │ │ ├── RegionKR920.h │ │ │ ├── RegionUS915.c │ │ │ └── RegionUS915.h │ ├── Radio │ │ ├── radio.c │ │ ├── radio.h │ │ ├── sx1272 │ │ │ ├── sx1272.c │ │ │ ├── sx1272.h │ │ │ ├── sx1272Regs-Fsk.h │ │ │ └── sx1272Regs-LoRa.h │ │ └── sx1276 │ │ │ ├── sx1276.c │ │ │ ├── sx1276.h │ │ │ ├── sx1276Regs-Fsk.h │ │ │ └── sx1276Regs-LoRa.h │ ├── System │ │ ├── timer.c │ │ └── timer.h │ └── Utilities │ │ ├── utilities.c │ │ └── utilities.h │ ├── Makefile │ ├── USB │ ├── Core │ │ ├── Inc │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ └── usbd_ioreq.h │ │ └── Src │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ └── usbd_ioreq.c │ ├── HAL │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32l0xx_hal.h │ │ │ ├── stm32l0xx_hal_conf.h │ │ │ ├── stm32l0xx_hal_def.h │ │ │ ├── stm32l0xx_hal_pcd.h │ │ │ ├── stm32l0xx_hal_pcd_ex.h │ │ │ ├── stm32l0xx_hal_pwr.h │ │ │ ├── stm32l0xx_hal_pwr_ex.h │ │ │ ├── stm32l0xx_hal_rcc.h │ │ │ ├── stm32l0xx_hal_rcc_ex.h │ │ │ ├── stm32l0xx_ll_pwr.h │ │ │ ├── stm32l0xx_ll_rcc.h │ │ │ └── stm32l0xx_ll_usb.h │ │ └── Src │ │ │ ├── stm32l0xx_hal_pcd.c │ │ │ ├── stm32l0xx_hal_pcd_ex.c │ │ │ └── stm32l0xx_ll_usb.c │ ├── usbd_conf.c │ ├── usbd_conf.h │ ├── usbd_desc.c │ └── usbd_desc.h │ ├── armv6m_atomic.c │ ├── armv6m_core.c │ ├── armv6m_pendsv.c │ ├── armv6m_svcall.c │ ├── armv6m_systick.c │ ├── armv6m_work.c │ ├── dosfs_core.c │ ├── dosfs_device.c │ ├── dosfs_sflash.c │ ├── dosfs_storage.c │ ├── startup_stm32l052xx.S │ ├── startup_stm32l072xx.S │ ├── startup_stm32l082xx.S │ ├── stm32l0_adc.c │ ├── stm32l0_aes.c │ ├── stm32l0_comp.c │ ├── stm32l0_dac.c │ ├── stm32l0_dma.c │ ├── stm32l0_eeprom.c │ ├── stm32l0_exti.c │ ├── stm32l0_flash.c │ ├── stm32l0_gpio.c │ ├── stm32l0_i2c.c │ ├── stm32l0_iwdg.c │ ├── stm32l0_lptim.c │ ├── stm32l0_random.c │ ├── stm32l0_rtc.c │ ├── stm32l0_sdspi.c │ ├── stm32l0_servo.c │ ├── stm32l0_sfspi.c │ ├── stm32l0_spi.c │ ├── stm32l0_system.c │ ├── stm32l0_timer.c │ ├── stm32l0_uart.c │ ├── stm32l0_usbd_cdc.c │ ├── stm32l0_usbd_class.c │ └── stm32l0_usbd_msc.c ├── tools ├── linux │ ├── dfu-prefix │ ├── dfu-suffix │ ├── dfu-util │ ├── openocd │ │ └── bin │ │ │ ├── libudev.so.0 │ │ │ └── openocd │ └── stm32l0-upload ├── macosx │ ├── dfu-prefix │ ├── dfu-suffix │ ├── dfu-util │ ├── openocd │ │ └── bin │ │ │ └── openocd │ └── stm32l0-upload ├── share │ └── openocd │ │ └── scripts │ │ ├── board │ │ ├── st_nucleo_f0.cfg │ │ ├── st_nucleo_f103rb.cfg │ │ ├── st_nucleo_f3.cfg │ │ ├── st_nucleo_f4.cfg │ │ ├── st_nucleo_f7.cfg │ │ ├── st_nucleo_h743zi.cfg │ │ ├── st_nucleo_l073rz.cfg │ │ ├── st_nucleo_l1.cfg │ │ ├── st_nucleo_l4.cfg │ │ ├── steval-idb007v1.cfg │ │ ├── steval-idb008v1.cfg │ │ ├── stm320518_eval.cfg │ │ ├── stm320518_eval_stlink.cfg │ │ ├── stm32100b_eval.cfg │ │ ├── stm3210b_eval.cfg │ │ ├── stm3210c_eval.cfg │ │ ├── stm3210e_eval.cfg │ │ ├── stm3220g_eval.cfg │ │ ├── stm3220g_eval_stlink.cfg │ │ ├── stm3241g_eval.cfg │ │ ├── stm3241g_eval_stlink.cfg │ │ ├── stm32429i_eval.cfg │ │ ├── stm32429i_eval_stlink.cfg │ │ ├── stm32439i_eval.cfg │ │ ├── stm32439i_eval_stlink.cfg │ │ ├── stm327x6g_eval.cfg │ │ ├── stm32f0discovery.cfg │ │ ├── stm32f334discovery.cfg │ │ ├── stm32f3discovery.cfg │ │ ├── stm32f429disc1.cfg │ │ ├── stm32f429discovery.cfg │ │ ├── stm32f469discovery.cfg │ │ ├── stm32f4discovery.cfg │ │ ├── stm32f7discovery.cfg │ │ ├── stm32h7x3i_eval.cfg │ │ ├── stm32l0discovery.cfg │ │ ├── stm32l4discovery.cfg │ │ ├── stm32ldiscovery.cfg │ │ └── stm32vldiscovery.cfg │ │ ├── chip │ │ └── st │ │ │ └── stm32 │ │ │ ├── stm32.tcl │ │ │ ├── stm32_rcc.tcl │ │ │ └── stm32_regs.tcl │ │ ├── cpu │ │ └── arm │ │ │ └── cortex_m3.tcl │ │ ├── interface │ │ ├── cmsis-dap.cfg │ │ ├── stlink-v1.cfg │ │ ├── stlink-v2-1.cfg │ │ ├── stlink-v2.cfg │ │ └── stlink.cfg │ │ ├── mem_helper.tcl │ │ └── target │ │ ├── bluenrg-x.cfg │ │ ├── stm32_stlink.cfg │ │ ├── stm32f0x.cfg │ │ ├── stm32f0x_stlink.cfg │ │ ├── stm32f1x.cfg │ │ ├── stm32f1x_stlink.cfg │ │ ├── stm32f2x.cfg │ │ ├── stm32f2x_stlink.cfg │ │ ├── stm32f3x.cfg │ │ ├── stm32f3x_stlink.cfg │ │ ├── stm32f4x.cfg │ │ ├── stm32f4x_stlink.cfg │ │ ├── stm32f7x.cfg │ │ ├── stm32h7x.cfg │ │ ├── stm32h7x_dual_bank.cfg │ │ ├── stm32l0.cfg │ │ ├── stm32l0_dual_bank.cfg │ │ ├── stm32l1.cfg │ │ ├── stm32l1x_dual_bank.cfg │ │ ├── stm32l4x.cfg │ │ ├── stm32lx_stlink.cfg │ │ ├── stm32w108_stlink.cfg │ │ ├── stm32w108xx.cfg │ │ ├── stm32xl.cfg │ │ └── swj-dp.tcl └── windows │ ├── dfu-prefix.exe │ ├── dfu-suffix.exe │ ├── dfu-util.exe │ ├── libwinpthread-1.dll │ ├── openocd │ └── bin │ │ ├── libusb0.dll │ │ └── openocd.exe │ └── stm32l0-upload.bat └── variants ├── B-L072Z-LRWAN1 ├── linker_scripts │ └── STM32L072CZ_FLASH.ld ├── openocd_scripts │ └── b-l072z-lrwan1.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h ├── Cicada-L082CZ ├── linker_scripts │ └── STM32L082CZ_FLASH.ld ├── openocd_scripts │ └── cicada-l082cz.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h ├── Cricket-L082CZ ├── linker_scripts │ └── STM32L082CZ_FLASH.ld ├── openocd_scripts │ └── cricket-l082cz.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h ├── Gnat-L082CZ ├── linker_scripts │ └── STM32L082CZ_FLASH.ld ├── openocd_scripts │ └── gnat-l082cz.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h ├── Grasshopper-L082CZ ├── linker_scripts │ └── STM32L082CZ_FLASH.ld ├── openocd_scripts │ └── grasshopper-l082cz.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h ├── I-NUCLEO-LRWAN1 ├── linker_scripts │ └── STM32L052T8_FLASH.ld ├── openocd_scripts │ └── i-nucleo-lrwan1.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h ├── NUCLEO-L053R8 ├── linker_scripts │ └── STM32L053R8_FLASH.ld ├── openocd_scripts │ └── nucleo-l053rb.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h ├── NUCLEO-L073RZ ├── linker_scripts │ └── STM32L073RZ_FLASH.ld ├── openocd_scripts │ └── nucleo-l073rz.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h └── P-NUCLEO-LRWAN1 ├── linker_scripts └── STM32L073RZ_FLASH.ld ├── openocd_scripts └── p-nucleo-lrwan1.cfg ├── pins_arduino.h ├── variant.cpp └── variant.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.bz2 2 | 3 | bootloaders/*/build/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/boards.txt -------------------------------------------------------------------------------- /cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /cores/arduino/CDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/CDC.cpp -------------------------------------------------------------------------------- /cores/arduino/Callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Callback.cpp -------------------------------------------------------------------------------- /cores/arduino/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Callback.h -------------------------------------------------------------------------------- /cores/arduino/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Client.h -------------------------------------------------------------------------------- /cores/arduino/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/FS.cpp -------------------------------------------------------------------------------- /cores/arduino/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/FS.h -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/HardwareSerial.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/HardwareSerial1.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/HardwareSerial2.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/HardwareSerial3.cpp -------------------------------------------------------------------------------- /cores/arduino/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/IPAddress.cpp -------------------------------------------------------------------------------- /cores/arduino/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/IPAddress.h -------------------------------------------------------------------------------- /cores/arduino/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Makefile -------------------------------------------------------------------------------- /cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Print.h -------------------------------------------------------------------------------- /cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Printable.h -------------------------------------------------------------------------------- /cores/arduino/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/RingBuffer.cpp -------------------------------------------------------------------------------- /cores/arduino/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/RingBuffer.h -------------------------------------------------------------------------------- /cores/arduino/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Server.h -------------------------------------------------------------------------------- /cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Stream.h -------------------------------------------------------------------------------- /cores/arduino/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Tone.cpp -------------------------------------------------------------------------------- /cores/arduino/Tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Tone.h -------------------------------------------------------------------------------- /cores/arduino/USBAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/USBAPI.h -------------------------------------------------------------------------------- /cores/arduino/USBCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/USBCore.cpp -------------------------------------------------------------------------------- /cores/arduino/Uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Uart.cpp -------------------------------------------------------------------------------- /cores/arduino/Uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Uart.h -------------------------------------------------------------------------------- /cores/arduino/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/Udp.h -------------------------------------------------------------------------------- /cores/arduino/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WCharacter.h -------------------------------------------------------------------------------- /cores/arduino/WInterrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WInterrupts.c -------------------------------------------------------------------------------- /cores/arduino/WInterrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WInterrupts.h -------------------------------------------------------------------------------- /cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /cores/arduino/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WMath.h -------------------------------------------------------------------------------- /cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WString.h -------------------------------------------------------------------------------- /cores/arduino/WVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/WVariant.h -------------------------------------------------------------------------------- /cores/arduino/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/abi.cpp -------------------------------------------------------------------------------- /cores/arduino/avr/dtostrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/dtostrf.c -------------------------------------------------------------------------------- /cores/arduino/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/dtostrf.h -------------------------------------------------------------------------------- /cores/arduino/avr/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/eeprom.c -------------------------------------------------------------------------------- /cores/arduino/avr/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/eeprom.h -------------------------------------------------------------------------------- /cores/arduino/avr/fdevopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/fdevopen.c -------------------------------------------------------------------------------- /cores/arduino/avr/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/interrupt.h -------------------------------------------------------------------------------- /cores/arduino/avr/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/io.h -------------------------------------------------------------------------------- /cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /cores/arduino/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/binary.h -------------------------------------------------------------------------------- /cores/arduino/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/delay.c -------------------------------------------------------------------------------- /cores/arduino/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/delay.h -------------------------------------------------------------------------------- /cores/arduino/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/hooks.c -------------------------------------------------------------------------------- /cores/arduino/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/itoa.c -------------------------------------------------------------------------------- /cores/arduino/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/itoa.h -------------------------------------------------------------------------------- /cores/arduino/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/main.cpp -------------------------------------------------------------------------------- /cores/arduino/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/new.cpp -------------------------------------------------------------------------------- /cores/arduino/syscalls_stm32l0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/syscalls_stm32l0.c -------------------------------------------------------------------------------- /cores/arduino/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring.c -------------------------------------------------------------------------------- /cores/arduino/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring.h -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_analog.c -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_analog.h -------------------------------------------------------------------------------- /cores/arduino/wiring_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_constants.h -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_digital.c -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_digital.h -------------------------------------------------------------------------------- /cores/arduino/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_private.h -------------------------------------------------------------------------------- /cores/arduino/wiring_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_pulse.c -------------------------------------------------------------------------------- /cores/arduino/wiring_pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_pulse.h -------------------------------------------------------------------------------- /cores/arduino/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_shift.c -------------------------------------------------------------------------------- /cores/arduino/wiring_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/cores/arduino/wiring_shift.h -------------------------------------------------------------------------------- /drivers/linux/49-cicada.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/linux/49-cicada.rules -------------------------------------------------------------------------------- /drivers/linux/49-cricket.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/linux/49-cricket.rules -------------------------------------------------------------------------------- /drivers/linux/49-gnat.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/linux/49-gnat.rules -------------------------------------------------------------------------------- /drivers/linux/49-grasshopper.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/linux/49-grasshopper.rules -------------------------------------------------------------------------------- /drivers/linux/49-nucleo.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/linux/49-nucleo.rules -------------------------------------------------------------------------------- /drivers/windows/cicada-cdc-acm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/windows/cicada-cdc-acm.inf -------------------------------------------------------------------------------- /drivers/windows/cricket-cdc-acm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/windows/cricket-cdc-acm.inf -------------------------------------------------------------------------------- /drivers/windows/dpinst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/windows/dpinst.xml -------------------------------------------------------------------------------- /drivers/windows/dpinst_amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/windows/dpinst_amd64.exe -------------------------------------------------------------------------------- /drivers/windows/dpinst_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/windows/dpinst_x86.exe -------------------------------------------------------------------------------- /drivers/windows/gnat-cdc-acm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/windows/gnat-cdc-acm.inf -------------------------------------------------------------------------------- /drivers/windows/grasshopper-cdc-acm.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/drivers/windows/grasshopper-cdc-acm.inf -------------------------------------------------------------------------------- /libraries/CayenneLPP/examples/CayenneLPP_GNSS/CayenneLPP_GNSS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/CayenneLPP/examples/CayenneLPP_GNSS/CayenneLPP_GNSS.ino -------------------------------------------------------------------------------- /libraries/CayenneLPP/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/CayenneLPP/keywords.txt -------------------------------------------------------------------------------- /libraries/CayenneLPP/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/CayenneLPP/library.properties -------------------------------------------------------------------------------- /libraries/CayenneLPP/src/CayenneLPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/CayenneLPP/src/CayenneLPP.cpp -------------------------------------------------------------------------------- /libraries/CayenneLPP/src/CayenneLPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/CayenneLPP/src/CayenneLPP.h -------------------------------------------------------------------------------- /libraries/DOSFS/examples/DOSFS_DataLogger/DOSFS_DataLogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/examples/DOSFS_DataLogger/DOSFS_DataLogger.ino -------------------------------------------------------------------------------- /libraries/DOSFS/examples/DOSFS_Directories/DOSFS_Directories.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/examples/DOSFS_Directories/DOSFS_Directories.ino -------------------------------------------------------------------------------- /libraries/DOSFS/examples/DOSFS_Files/DOSFS_Files.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/examples/DOSFS_Files/DOSFS_Files.ino -------------------------------------------------------------------------------- /libraries/DOSFS/examples/DOSFS_ReadWrite/DOSFS_ReadWrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/examples/DOSFS_ReadWrite/DOSFS_ReadWrite.ino -------------------------------------------------------------------------------- /libraries/DOSFS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/keywords.txt -------------------------------------------------------------------------------- /libraries/DOSFS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/library.properties -------------------------------------------------------------------------------- /libraries/DOSFS/src/DOSFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/src/DOSFS.cpp -------------------------------------------------------------------------------- /libraries/DOSFS/src/DOSFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/DOSFS/src/DOSFS.h -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_get/eeprom_get.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_iteration/eeprom_iteration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_iteration/eeprom_iteration.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_put/eeprom_put.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_read/eeprom_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_update/eeprom_update.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_update/eeprom_update.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_write/eeprom_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino -------------------------------------------------------------------------------- /libraries/EEPROM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/keywords.txt -------------------------------------------------------------------------------- /libraries/EEPROM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/library.properties -------------------------------------------------------------------------------- /libraries/EEPROM/src/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/EEPROM/src/EEPROM.h -------------------------------------------------------------------------------- /libraries/FskRadio/examples/Fsk_AddressFiltering/Fsk_AddressFiltering.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/examples/Fsk_AddressFiltering/Fsk_AddressFiltering.ino -------------------------------------------------------------------------------- /libraries/FskRadio/examples/Fsk_Callbacks/Fsk_Callback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/examples/Fsk_Callbacks/Fsk_Callback.ino -------------------------------------------------------------------------------- /libraries/FskRadio/examples/Fsk_FixedPayload/Fsk_FixedPayload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/examples/Fsk_FixedPayload/Fsk_FixedPayload.ino -------------------------------------------------------------------------------- /libraries/FskRadio/examples/Fsk_PingPong/Fsk_PingPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/examples/Fsk_PingPong/Fsk_PingPong.ino -------------------------------------------------------------------------------- /libraries/FskRadio/examples/Fsk_Sense/Fsk_Sense.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/examples/Fsk_Sense/Fsk_Sense.ino -------------------------------------------------------------------------------- /libraries/FskRadio/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/keywords.txt -------------------------------------------------------------------------------- /libraries/FskRadio/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/library.properties -------------------------------------------------------------------------------- /libraries/FskRadio/src/FskRadio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/src/FskRadio.cpp -------------------------------------------------------------------------------- /libraries/FskRadio/src/FskRadio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/FskRadio/src/FskRadio.h -------------------------------------------------------------------------------- /libraries/GNSS/examples/GNSS_external/GNSS_external.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/examples/GNSS_external/GNSS_external.ino -------------------------------------------------------------------------------- /libraries/GNSS/examples/GNSS_periodic/GNSS_periodic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/examples/GNSS_periodic/GNSS_periodic.ino -------------------------------------------------------------------------------- /libraries/GNSS/examples/GNSS_suspend/GNSS_suspend.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/examples/GNSS_suspend/GNSS_suspend.ino -------------------------------------------------------------------------------- /libraries/GNSS/examples/GPS/GPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/examples/GPS/GPS.ino -------------------------------------------------------------------------------- /libraries/GNSS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/keywords.txt -------------------------------------------------------------------------------- /libraries/GNSS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/library.properties -------------------------------------------------------------------------------- /libraries/GNSS/src/GNSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/src/GNSS.cpp -------------------------------------------------------------------------------- /libraries/GNSS/src/GNSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/src/GNSS.h -------------------------------------------------------------------------------- /libraries/GNSS/src/utility/gnss_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/src/utility/gnss_api.h -------------------------------------------------------------------------------- /libraries/GNSS/src/utility/gnss_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/GNSS/src/utility/gnss_core.c -------------------------------------------------------------------------------- /libraries/LoRaRadio/examples/LoRa_Callbacks/LoRa_Callbacks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/examples/LoRa_Callbacks/LoRa_Callbacks.ino -------------------------------------------------------------------------------- /libraries/LoRaRadio/examples/LoRa_FixedPayload/LoRa_FixedPayload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/examples/LoRa_FixedPayload/LoRa_FixedPayload.ino -------------------------------------------------------------------------------- /libraries/LoRaRadio/examples/LoRa_PingPong/LoRa_PingPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/examples/LoRa_PingPong/LoRa_PingPong.ino -------------------------------------------------------------------------------- /libraries/LoRaRadio/examples/LoRa_Sense/LoRa_Sense.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/examples/LoRa_Sense/LoRa_Sense.ino -------------------------------------------------------------------------------- /libraries/LoRaRadio/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/keywords.txt -------------------------------------------------------------------------------- /libraries/LoRaRadio/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/library.properties -------------------------------------------------------------------------------- /libraries/LoRaRadio/src/LoRaRadio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/src/LoRaRadio.cpp -------------------------------------------------------------------------------- /libraries/LoRaRadio/src/LoRaRadio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaRadio/src/LoRaRadio.h -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_ADR_Disable/LoRaWAN_ADR_Disable.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_ADR_Disable/LoRaWAN_ADR_Disable.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_BatteryLevel/LoRaWAN_BatteryLevel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_BatteryLevel/LoRaWAN_BatteryLevel.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Callbacks/LoRaWAN_Callbacks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Callbacks/LoRaWAN_Callbacks.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Confirmed/LoRaWAN_Confirmed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Confirmed/LoRaWAN_Confirmed.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_DeepSleep/LoRaWAN_DeepSleep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_DeepSleep/LoRaWAN_DeepSleep.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Disconnect/LoRaWAN_Disconnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Disconnect/LoRaWAN_Disconnect.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Join_ABP/LoRaWAN_Join_ABP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Join_ABP/LoRaWAN_Join_ABP.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Join_Commissioning/LoRaWAN_Join_Commissioning.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Join_Commissioning/LoRaWAN_Join_Commissioning.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Join_OTAA/LoRaWAN_Join_OTAA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Join_OTAA/LoRaWAN_Join_OTAA.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Save_Commissioning/LoRaWAN_Save_Commissioning.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Save_Commissioning/LoRaWAN_Save_Commissioning.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_Save_Session/LoRaWAN_Save_Session.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_Save_Session/LoRaWAN_Save_Session.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_TTN_ABP/LoRaWAN_TTN_ABP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_TTN_ABP/LoRaWAN_TTN_ABP.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_TTN_OTAA/LoRaWAN_TTN_OTAA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_TTN_OTAA/LoRaWAN_TTN_OTAA.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/examples/LoRaWAN_TimerMillis/LoRaWAN_TimerMillis.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/examples/LoRaWAN_TimerMillis/LoRaWAN_TimerMillis.ino -------------------------------------------------------------------------------- /libraries/LoRaWAN/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/keywords.txt -------------------------------------------------------------------------------- /libraries/LoRaWAN/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/library.properties -------------------------------------------------------------------------------- /libraries/LoRaWAN/src/LoRaWAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/src/LoRaWAN.cpp -------------------------------------------------------------------------------- /libraries/LoRaWAN/src/LoRaWAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/LoRaWAN/src/LoRaWAN.h -------------------------------------------------------------------------------- /libraries/RTC/examples/Epoch/Epoch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/RTC/examples/Epoch/Epoch.ino -------------------------------------------------------------------------------- /libraries/RTC/examples/SimpleRTC/SimpleRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/RTC/examples/SimpleRTC/SimpleRTC.ino -------------------------------------------------------------------------------- /libraries/RTC/examples/SimpleRTCAlarm/SimpleRTCAlarm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/RTC/examples/SimpleRTCAlarm/SimpleRTCAlarm.ino -------------------------------------------------------------------------------- /libraries/RTC/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/RTC/keywords.txt -------------------------------------------------------------------------------- /libraries/RTC/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/RTC/library.properties -------------------------------------------------------------------------------- /libraries/RTC/src/RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/RTC/src/RTC.cpp -------------------------------------------------------------------------------- /libraries/RTC/src/RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/RTC/src/RTC.h -------------------------------------------------------------------------------- /libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino -------------------------------------------------------------------------------- /libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /libraries/STM32L0/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/STM32L0/keywords.txt -------------------------------------------------------------------------------- /libraries/STM32L0/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/STM32L0/library.properties -------------------------------------------------------------------------------- /libraries/STM32L0/src/STM32L0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/STM32L0/src/STM32L0.cpp -------------------------------------------------------------------------------- /libraries/STM32L0/src/STM32L0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/STM32L0/src/STM32L0.h -------------------------------------------------------------------------------- /libraries/TimerMillis/examples/TimerMillis_Blink/TimerMillis_Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/TimerMillis/examples/TimerMillis_Blink/TimerMillis_Blink.ino -------------------------------------------------------------------------------- /libraries/TimerMillis/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/TimerMillis/keywords.txt -------------------------------------------------------------------------------- /libraries/TimerMillis/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/TimerMillis/library.properties -------------------------------------------------------------------------------- /libraries/TimerMillis/src/TimerMillis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/TimerMillis/src/TimerMillis.cpp -------------------------------------------------------------------------------- /libraries/TimerMillis/src/TimerMillis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/TimerMillis/src/TimerMillis.h -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_Extended/Wire_Extended.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_Extended/Wire_Extended.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_Interrupt/Wire_Interrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_Interrupt/Wire_Interrupt.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_Master/Wire_Master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_Master/Wire_Master.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_Poll/Wire_Poll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_Poll/Wire_Poll.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_Simple/Wire_Simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_Simple/Wire_Simple.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_Slave/Wire_Slave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_Slave/Wire_Slave.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_TimerMillis/Wire_TimerMillis.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_TimerMillis/Wire_TimerMillis.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/Wire_Transfer/Wire_Transfer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/examples/Wire_Transfer/Wire_Transfer.ino -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/programmers.txt -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l011xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l021xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l021xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l031xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l031xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l041xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l041xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l051xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l051xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l052xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l052xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l053xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l061xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l061xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l062xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l062xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l063xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l063xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l071xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l071xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l072xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l072xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l073xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l073xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l081xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l081xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l082xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l082xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l083xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l083xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h -------------------------------------------------------------------------------- /system/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Device/ST/STM32L0xx/Include/system_stm32l0xx.h -------------------------------------------------------------------------------- /system/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /system/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /system/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /system/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /system/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /system/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /system/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /system/CMSIS/Lib/libarm_cortexM0l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Lib/libarm_cortexM0l_math.a -------------------------------------------------------------------------------- /system/CMSIS/Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/CMSIS/Lib/license.txt -------------------------------------------------------------------------------- /system/STM32L0xx/Include/LoRaMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/LoRaMac.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/LoRaMacTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/LoRaMacTest.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/armv6m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/armv6m.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/armv6m_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/armv6m_atomic.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/armv6m_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/armv6m_core.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/armv6m_pendsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/armv6m_pendsv.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/armv6m_svcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/armv6m_svcall.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/armv6m_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/armv6m_systick.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/armv6m_work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/armv6m_work.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/dosfs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/dosfs_api.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/dosfs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/dosfs_config.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/dosfs_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/dosfs_core.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/dosfs_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/dosfs_device.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/dosfs_sflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/dosfs_sflash.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/dosfs_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/dosfs_storage.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_adc.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_aes.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_comp.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_dac.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_dma.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_eeprom.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_exti.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_flash.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_gpio.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_i2c.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_iwdg.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_lptim.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_random.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_rtc.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_sdspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_sdspi.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_servo.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_sfspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_sfspi.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_spi.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_system.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_timer.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_uart.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_usbd_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_usbd_cdc.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_usbd_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_usbd_class.h -------------------------------------------------------------------------------- /system/STM32L0xx/Include/stm32l0_usbd_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Include/stm32l0_usbd_msc.h -------------------------------------------------------------------------------- /system/STM32L0xx/Lib/libstm32l052xx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Lib/libstm32l052xx.a -------------------------------------------------------------------------------- /system/STM32L0xx/Lib/libstm32l072xx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Lib/libstm32l072xx.a -------------------------------------------------------------------------------- /system/STM32L0xx/Lib/libstm32l082xx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Lib/libstm32l082xx.a -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Boards/cmwx1zzabz-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Boards/cmwx1zzabz-board.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Boards/sx1272-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Boards/sx1272-board.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Boards/sx1272mb2das-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Boards/sx1272mb2das-board.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Boards/sx1276-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Boards/sx1276-board.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Boards/wmsgsm42-board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Boards/wmsgsm42-board.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Crypto/aes.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Crypto/aes.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Crypto/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Crypto/cmac.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Crypto/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Crypto/cmac.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/LoRaMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/LoRaMac.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/LoRaMacCrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/LoRaMacCrypto.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/LoRaMacCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/LoRaMacCrypto.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/Region.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionAS923.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionAS923.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionAS923.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionAS923.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionAU915.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionAU915.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionAU915.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionAU915.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionCN470.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionCN470.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionCN470.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionCN470.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionCN779.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionCN779.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionCN779.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionCN779.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionCommon.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionCommon.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionEU433.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionEU433.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionEU433.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionEU433.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionEU868.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionEU868.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionEU868.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionEU868.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionIN865.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionIN865.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionIN865.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionIN865.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionKR920.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionKR920.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionKR920.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionKR920.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionUS915.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionUS915.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Mac/region/RegionUS915.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Mac/region/RegionUS915.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/radio.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/radio.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272Regs-Fsk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272Regs-Fsk.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272Regs-LoRa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1272/sx1272Regs-LoRa.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276Regs-Fsk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276Regs-Fsk.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276Regs-LoRa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Radio/sx1276/sx1276Regs-LoRa.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/System/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/System/timer.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/System/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/System/timer.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Utilities/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Utilities/utilities.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/LoRa/Utilities/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/LoRa/Utilities/utilities.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/Makefile -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/Core/Inc/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/Core/Inc/usbd_core.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/Core/Inc/usbd_ctlreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/Core/Inc/usbd_ctlreq.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/Core/Inc/usbd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/Core/Inc/usbd_def.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/Core/Inc/usbd_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/Core/Inc/usbd_ioreq.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/Core/Src/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/Core/Src/usbd_core.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/Core/Src/usbd_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/Core/Src/usbd_ctlreq.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/Core/Src/usbd_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/Core/Src/usbd_ioreq.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_conf.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_def.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pcd.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pwr.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_rcc.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_ll_pwr.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_ll_rcc.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Inc/stm32l0xx_ll_usb.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Src/stm32l0xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Src/stm32l0xx_hal_pcd.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Src/stm32l0xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Src/stm32l0xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/HAL/Src/stm32l0xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/HAL/Src/stm32l0xx_ll_usb.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/usbd_conf.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/usbd_conf.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/usbd_desc.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/USB/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/USB/usbd_desc.h -------------------------------------------------------------------------------- /system/STM32L0xx/Source/armv6m_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/armv6m_atomic.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/armv6m_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/armv6m_core.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/armv6m_pendsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/armv6m_pendsv.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/armv6m_svcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/armv6m_svcall.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/armv6m_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/armv6m_systick.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/armv6m_work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/armv6m_work.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/dosfs_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/dosfs_core.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/dosfs_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/dosfs_device.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/dosfs_sflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/dosfs_sflash.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/dosfs_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/dosfs_storage.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/startup_stm32l052xx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/startup_stm32l052xx.S -------------------------------------------------------------------------------- /system/STM32L0xx/Source/startup_stm32l072xx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/startup_stm32l072xx.S -------------------------------------------------------------------------------- /system/STM32L0xx/Source/startup_stm32l082xx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/startup_stm32l082xx.S -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_adc.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_aes.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_comp.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_dac.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_dma.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_eeprom.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_exti.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_flash.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_gpio.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_i2c.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_iwdg.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_lptim.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_random.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_rtc.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_sdspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_sdspi.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_servo.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_sfspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_sfspi.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_spi.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_system.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_timer.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_uart.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_usbd_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_usbd_cdc.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_usbd_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_usbd_class.c -------------------------------------------------------------------------------- /system/STM32L0xx/Source/stm32l0_usbd_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/system/STM32L0xx/Source/stm32l0_usbd_msc.c -------------------------------------------------------------------------------- /tools/linux/dfu-prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/linux/dfu-prefix -------------------------------------------------------------------------------- /tools/linux/dfu-suffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/linux/dfu-suffix -------------------------------------------------------------------------------- /tools/linux/dfu-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/linux/dfu-util -------------------------------------------------------------------------------- /tools/linux/openocd/bin/libudev.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/linux/openocd/bin/libudev.so.0 -------------------------------------------------------------------------------- /tools/linux/openocd/bin/openocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/linux/openocd/bin/openocd -------------------------------------------------------------------------------- /tools/linux/stm32l0-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/linux/stm32l0-upload -------------------------------------------------------------------------------- /tools/macosx/dfu-prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/macosx/dfu-prefix -------------------------------------------------------------------------------- /tools/macosx/dfu-suffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/macosx/dfu-suffix -------------------------------------------------------------------------------- /tools/macosx/dfu-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/macosx/dfu-util -------------------------------------------------------------------------------- /tools/macosx/openocd/bin/openocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/macosx/openocd/bin/openocd -------------------------------------------------------------------------------- /tools/macosx/stm32l0-upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/macosx/stm32l0-upload -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_f0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_f0.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_f103rb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_f103rb.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_f3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_f3.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_f4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_f4.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_f7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_f7.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_h743zi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_h743zi.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_l073rz.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_l073rz.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_l1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_l1.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/st_nucleo_l4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/st_nucleo_l4.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/steval-idb007v1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/steval-idb007v1.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/steval-idb008v1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/steval-idb008v1.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm320518_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm320518_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm320518_eval_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm320518_eval_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32100b_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32100b_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm3210b_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm3210b_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm3210c_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm3210c_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm3210e_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm3210e_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm3220g_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm3220g_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm3220g_eval_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm3220g_eval_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm3241g_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm3241g_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm3241g_eval_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm3241g_eval_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32429i_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32429i_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32429i_eval_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32429i_eval_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32439i_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32439i_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32439i_eval_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32439i_eval_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm327x6g_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm327x6g_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f0discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f0discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f334discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f334discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f3discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f3discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f429disc1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f429disc1.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f429discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f429discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f469discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f469discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f4discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f4discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32f7discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32f7discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32h7x3i_eval.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32h7x3i_eval.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32l0discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32l0discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32l4discovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32l4discovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32ldiscovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32ldiscovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/board/stm32vldiscovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/board/stm32vldiscovery.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/chip/st/stm32/stm32.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/chip/st/stm32/stm32.tcl -------------------------------------------------------------------------------- /tools/share/openocd/scripts/chip/st/stm32/stm32_rcc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/chip/st/stm32/stm32_rcc.tcl -------------------------------------------------------------------------------- /tools/share/openocd/scripts/chip/st/stm32/stm32_regs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/chip/st/stm32/stm32_regs.tcl -------------------------------------------------------------------------------- /tools/share/openocd/scripts/cpu/arm/cortex_m3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/cpu/arm/cortex_m3.tcl -------------------------------------------------------------------------------- /tools/share/openocd/scripts/interface/cmsis-dap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/interface/cmsis-dap.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/interface/stlink-v1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/interface/stlink-v1.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/interface/stlink-v2-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/interface/stlink-v2-1.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/interface/stlink-v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/interface/stlink-v2.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/interface/stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/interface/stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/mem_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/mem_helper.tcl -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/bluenrg-x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/bluenrg-x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f0x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f0x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f0x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f0x_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f1x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f1x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f1x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f1x_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f2x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f2x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f2x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f2x_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f3x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f3x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f3x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f3x_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f4x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f4x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f4x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f4x_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32f7x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32f7x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32h7x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32h7x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32h7x_dual_bank.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32h7x_dual_bank.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32l0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32l0.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32l0_dual_bank.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32l0_dual_bank.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32l1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32l1.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32l1x_dual_bank.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32l1x_dual_bank.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32l4x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32l4x.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32lx_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32lx_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32w108_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32w108_stlink.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32w108xx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32w108xx.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/stm32xl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/stm32xl.cfg -------------------------------------------------------------------------------- /tools/share/openocd/scripts/target/swj-dp.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/share/openocd/scripts/target/swj-dp.tcl -------------------------------------------------------------------------------- /tools/windows/dfu-prefix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/windows/dfu-prefix.exe -------------------------------------------------------------------------------- /tools/windows/dfu-suffix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/windows/dfu-suffix.exe -------------------------------------------------------------------------------- /tools/windows/dfu-util.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/windows/dfu-util.exe -------------------------------------------------------------------------------- /tools/windows/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/windows/libwinpthread-1.dll -------------------------------------------------------------------------------- /tools/windows/openocd/bin/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/windows/openocd/bin/libusb0.dll -------------------------------------------------------------------------------- /tools/windows/openocd/bin/openocd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/windows/openocd/bin/openocd.exe -------------------------------------------------------------------------------- /tools/windows/stm32l0-upload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/tools/windows/stm32l0-upload.bat -------------------------------------------------------------------------------- /variants/B-L072Z-LRWAN1/linker_scripts/STM32L072CZ_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/B-L072Z-LRWAN1/linker_scripts/STM32L072CZ_FLASH.ld -------------------------------------------------------------------------------- /variants/B-L072Z-LRWAN1/openocd_scripts/b-l072z-lrwan1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/B-L072Z-LRWAN1/openocd_scripts/b-l072z-lrwan1.cfg -------------------------------------------------------------------------------- /variants/B-L072Z-LRWAN1/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/B-L072Z-LRWAN1/pins_arduino.h -------------------------------------------------------------------------------- /variants/B-L072Z-LRWAN1/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/B-L072Z-LRWAN1/variant.cpp -------------------------------------------------------------------------------- /variants/B-L072Z-LRWAN1/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/B-L072Z-LRWAN1/variant.h -------------------------------------------------------------------------------- /variants/Cicada-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cicada-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld -------------------------------------------------------------------------------- /variants/Cicada-L082CZ/openocd_scripts/cicada-l082cz.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cicada-L082CZ/openocd_scripts/cicada-l082cz.cfg -------------------------------------------------------------------------------- /variants/Cicada-L082CZ/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cicada-L082CZ/pins_arduino.h -------------------------------------------------------------------------------- /variants/Cicada-L082CZ/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cicada-L082CZ/variant.cpp -------------------------------------------------------------------------------- /variants/Cicada-L082CZ/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cicada-L082CZ/variant.h -------------------------------------------------------------------------------- /variants/Cricket-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cricket-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld -------------------------------------------------------------------------------- /variants/Cricket-L082CZ/openocd_scripts/cricket-l082cz.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cricket-L082CZ/openocd_scripts/cricket-l082cz.cfg -------------------------------------------------------------------------------- /variants/Cricket-L082CZ/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cricket-L082CZ/pins_arduino.h -------------------------------------------------------------------------------- /variants/Cricket-L082CZ/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cricket-L082CZ/variant.cpp -------------------------------------------------------------------------------- /variants/Cricket-L082CZ/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Cricket-L082CZ/variant.h -------------------------------------------------------------------------------- /variants/Gnat-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Gnat-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld -------------------------------------------------------------------------------- /variants/Gnat-L082CZ/openocd_scripts/gnat-l082cz.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Gnat-L082CZ/openocd_scripts/gnat-l082cz.cfg -------------------------------------------------------------------------------- /variants/Gnat-L082CZ/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Gnat-L082CZ/pins_arduino.h -------------------------------------------------------------------------------- /variants/Gnat-L082CZ/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Gnat-L082CZ/variant.cpp -------------------------------------------------------------------------------- /variants/Gnat-L082CZ/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Gnat-L082CZ/variant.h -------------------------------------------------------------------------------- /variants/Grasshopper-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Grasshopper-L082CZ/linker_scripts/STM32L082CZ_FLASH.ld -------------------------------------------------------------------------------- /variants/Grasshopper-L082CZ/openocd_scripts/grasshopper-l082cz.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Grasshopper-L082CZ/openocd_scripts/grasshopper-l082cz.cfg -------------------------------------------------------------------------------- /variants/Grasshopper-L082CZ/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Grasshopper-L082CZ/pins_arduino.h -------------------------------------------------------------------------------- /variants/Grasshopper-L082CZ/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Grasshopper-L082CZ/variant.cpp -------------------------------------------------------------------------------- /variants/Grasshopper-L082CZ/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/Grasshopper-L082CZ/variant.h -------------------------------------------------------------------------------- /variants/I-NUCLEO-LRWAN1/linker_scripts/STM32L052T8_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/I-NUCLEO-LRWAN1/linker_scripts/STM32L052T8_FLASH.ld -------------------------------------------------------------------------------- /variants/I-NUCLEO-LRWAN1/openocd_scripts/i-nucleo-lrwan1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/I-NUCLEO-LRWAN1/openocd_scripts/i-nucleo-lrwan1.cfg -------------------------------------------------------------------------------- /variants/I-NUCLEO-LRWAN1/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/I-NUCLEO-LRWAN1/pins_arduino.h -------------------------------------------------------------------------------- /variants/I-NUCLEO-LRWAN1/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/I-NUCLEO-LRWAN1/variant.cpp -------------------------------------------------------------------------------- /variants/I-NUCLEO-LRWAN1/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/I-NUCLEO-LRWAN1/variant.h -------------------------------------------------------------------------------- /variants/NUCLEO-L053R8/linker_scripts/STM32L053R8_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L053R8/linker_scripts/STM32L053R8_FLASH.ld -------------------------------------------------------------------------------- /variants/NUCLEO-L053R8/openocd_scripts/nucleo-l053rb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L053R8/openocd_scripts/nucleo-l053rb.cfg -------------------------------------------------------------------------------- /variants/NUCLEO-L053R8/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L053R8/pins_arduino.h -------------------------------------------------------------------------------- /variants/NUCLEO-L053R8/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L053R8/variant.cpp -------------------------------------------------------------------------------- /variants/NUCLEO-L053R8/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L053R8/variant.h -------------------------------------------------------------------------------- /variants/NUCLEO-L073RZ/linker_scripts/STM32L073RZ_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L073RZ/linker_scripts/STM32L073RZ_FLASH.ld -------------------------------------------------------------------------------- /variants/NUCLEO-L073RZ/openocd_scripts/nucleo-l073rz.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L073RZ/openocd_scripts/nucleo-l073rz.cfg -------------------------------------------------------------------------------- /variants/NUCLEO-L073RZ/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L073RZ/pins_arduino.h -------------------------------------------------------------------------------- /variants/NUCLEO-L073RZ/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L073RZ/variant.cpp -------------------------------------------------------------------------------- /variants/NUCLEO-L073RZ/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/NUCLEO-L073RZ/variant.h -------------------------------------------------------------------------------- /variants/P-NUCLEO-LRWAN1/linker_scripts/STM32L073RZ_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/P-NUCLEO-LRWAN1/linker_scripts/STM32L073RZ_FLASH.ld -------------------------------------------------------------------------------- /variants/P-NUCLEO-LRWAN1/openocd_scripts/p-nucleo-lrwan1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/P-NUCLEO-LRWAN1/openocd_scripts/p-nucleo-lrwan1.cfg -------------------------------------------------------------------------------- /variants/P-NUCLEO-LRWAN1/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/P-NUCLEO-LRWAN1/pins_arduino.h -------------------------------------------------------------------------------- /variants/P-NUCLEO-LRWAN1/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/P-NUCLEO-LRWAN1/variant.cpp -------------------------------------------------------------------------------- /variants/P-NUCLEO-LRWAN1/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrumpyOldPizza/ArduinoCore-stm32l0/HEAD/variants/P-NUCLEO-LRWAN1/variant.h --------------------------------------------------------------------------------