├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml └── workflows │ ├── issue.yml │ ├── releases.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── boards.txt ├── cores └── arduino │ ├── Arduino.h │ ├── CMakeLists.txt │ ├── Client.h │ ├── HardwareSerial.cpp │ ├── HardwareSerial.h │ ├── HardwareTimer.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── RingBuffer.cpp │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Tone.cpp │ ├── Tone.h │ ├── USBSerial.cpp │ ├── USBSerial.h │ ├── Udp.h │ ├── VirtIOSerial.cpp │ ├── VirtIOSerial.h │ ├── WCharacter.h │ ├── WInterrupts.cpp │ ├── WInterrupts.h │ ├── WMath.cpp │ ├── WMath.h │ ├── WSerial.cpp │ ├── WSerial.h │ ├── WString.cpp │ ├── WString.h │ ├── abi.cpp │ ├── avr │ ├── dtostrf.c │ ├── dtostrf.h │ └── pgmspace.h │ ├── binary.h │ ├── board.c │ ├── board.h │ ├── core_debug.c │ ├── core_debug.h │ ├── hooks.c │ ├── itoa.c │ ├── itoa.h │ ├── main.cpp │ ├── pins_arduino.c │ ├── pins_arduino.h │ ├── pins_arduino_analog.h │ ├── pins_arduino_digital.h │ ├── py32 │ ├── LL │ │ ├── py32yyxx_ll.h │ │ ├── py32yyxx_ll_adc.h │ │ ├── py32yyxx_ll_bdma.h │ │ ├── py32yyxx_ll_bus.h │ │ ├── py32yyxx_ll_comp.h │ │ ├── py32yyxx_ll_cordic.h │ │ ├── py32yyxx_ll_cortex.h │ │ ├── py32yyxx_ll_crc.h │ │ ├── py32yyxx_ll_crs.h │ │ ├── py32yyxx_ll_dac.h │ │ ├── py32yyxx_ll_dcache.h │ │ ├── py32yyxx_ll_delayblock.h │ │ ├── py32yyxx_ll_dlyb.h │ │ ├── py32yyxx_ll_dma.h │ │ ├── py32yyxx_ll_dma2d.h │ │ ├── py32yyxx_ll_dmamux.h │ │ ├── py32yyxx_ll_exti.h │ │ ├── py32yyxx_ll_fmac.h │ │ ├── py32yyxx_ll_fmc.h │ │ ├── py32yyxx_ll_fmpi2c.h │ │ ├── py32yyxx_ll_fsmc.h │ │ ├── py32yyxx_ll_gpio.h │ │ ├── py32yyxx_ll_hrtim.h │ │ ├── py32yyxx_ll_hsem.h │ │ ├── py32yyxx_ll_i2c.h │ │ ├── py32yyxx_ll_icache.h │ │ ├── py32yyxx_ll_ipcc.h │ │ ├── py32yyxx_ll_iwdg.h │ │ ├── py32yyxx_ll_lpgpio.h │ │ ├── py32yyxx_ll_lptim.h │ │ ├── py32yyxx_ll_lpuart.h │ │ ├── py32yyxx_ll_mdma.h │ │ ├── py32yyxx_ll_opamp.h │ │ ├── py32yyxx_ll_pka.h │ │ ├── py32yyxx_ll_pwr.h │ │ ├── py32yyxx_ll_rcc.h │ │ ├── py32yyxx_ll_rng.h │ │ ├── py32yyxx_ll_rtc.h │ │ ├── py32yyxx_ll_sdmmc.h │ │ ├── py32yyxx_ll_spi.h │ │ ├── py32yyxx_ll_swpmi.h │ │ ├── py32yyxx_ll_system.h │ │ ├── py32yyxx_ll_tim.h │ │ ├── py32yyxx_ll_ucpd.h │ │ ├── py32yyxx_ll_usart.h │ │ ├── py32yyxx_ll_usb.h │ │ ├── py32yyxx_ll_utils.h │ │ └── py32yyxx_ll_wwdg.h │ ├── PeripheralPins.h │ ├── PinAF_AIRF1.h │ ├── PinConfigured.h │ ├── PinNames.h │ ├── PinNamesTypes.h │ ├── PortNames.h │ ├── analog.h │ ├── backup.h │ ├── bootloader.h │ ├── clock.h │ ├── core_callback.h │ ├── digital_io.h │ ├── dwt.h │ ├── hw_config.h │ ├── interrupt.h │ ├── lock_resource.h │ ├── otp.h │ ├── pinconfig.h │ ├── pinmap.h │ ├── py32_def.h │ ├── py32_def_build.h │ ├── py32yyxx_hal_conf.h │ ├── startup_airyyxx.S │ ├── timer.h │ ├── uart.h │ └── usb │ │ ├── cdc │ │ ├── cdc_queue.c │ │ ├── cdc_queue.h │ │ ├── usbd_cdc.c │ │ ├── usbd_cdc.h │ │ ├── usbd_cdc_if.c │ │ └── usbd_cdc_if.h │ │ ├── hid │ │ ├── usbd_hid_composite.c │ │ ├── usbd_hid_composite.h │ │ ├── usbd_hid_composite_if.c │ │ └── usbd_hid_composite_if.h │ │ ├── usb_device_core.c │ │ ├── usb_device_ctlreq.c │ │ ├── usb_device_ioreq.c │ │ ├── usbd_conf.c │ │ ├── usbd_conf.h │ │ ├── usbd_desc.c │ │ ├── usbd_desc.h │ │ ├── usbd_ep_conf.c │ │ ├── usbd_ep_conf.h │ │ ├── usbd_if.c │ │ └── usbd_if.h │ ├── utils.h │ ├── variant.h │ ├── wiring.h │ ├── wiring_analog.c │ ├── wiring_analog.h │ ├── wiring_constants.h │ ├── wiring_digital.c │ ├── wiring_digital.h │ ├── wiring_private.h │ ├── wiring_pulse.cpp │ ├── wiring_pulse.h │ ├── wiring_shift.c │ ├── wiring_shift.h │ ├── wiring_time.c │ └── wiring_time.h ├── keywords.txt ├── libraries ├── EEPROM │ ├── CMakeLists.txt │ ├── README.md │ ├── 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 │ │ └── utility │ │ ├── air_eeprom.c │ │ └── air_eeprom.h ├── SPI │ ├── CMakeLists.txt │ ├── README.md │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SPI.cpp │ │ ├── SPI.h │ │ └── utility │ │ ├── spi_com.c │ │ └── spi_com.h ├── Servo │ ├── CMakeLists.txt │ ├── README.adoc │ ├── examples │ │ ├── Knob │ │ │ └── Knob.ino │ │ ├── Sweep │ │ │ └── Sweep.ino │ │ └── fs90r │ │ │ └── fs90r.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Servo.h │ │ └── stm32 │ │ ├── Servo.cpp │ │ └── ServoTimers.h ├── SoftwareSerial │ ├── CMakeLists.txt │ ├── examples │ │ ├── SoftwareSerialExample │ │ │ └── SoftwareSerialExample.ino │ │ └── TwoPortReceive │ │ │ └── TwoPortReceive.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── SoftwareSerial.cpp │ │ └── SoftwareSerial.h ├── SrcWrapper │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── HAL │ │ ├── py32yyxx_hal.c │ │ ├── py32yyxx_hal_adc.c │ │ ├── py32yyxx_hal_adc_ex.c │ │ ├── py32yyxx_hal_can.c │ │ ├── py32yyxx_hal_cec.c │ │ ├── py32yyxx_hal_comp.c │ │ ├── py32yyxx_hal_comp_ex.c │ │ ├── py32yyxx_hal_cordic.c │ │ ├── py32yyxx_hal_cortex.c │ │ ├── py32yyxx_hal_crc.c │ │ ├── py32yyxx_hal_crc_ex.c │ │ ├── py32yyxx_hal_cryp.c │ │ ├── py32yyxx_hal_cryp_ex.c │ │ ├── py32yyxx_hal_dac.c │ │ ├── py32yyxx_hal_dac_ex.c │ │ ├── py32yyxx_hal_dcache.c │ │ ├── py32yyxx_hal_dcmi.c │ │ ├── py32yyxx_hal_dcmi_ex.c │ │ ├── py32yyxx_hal_dfsdm.c │ │ ├── py32yyxx_hal_dfsdm_ex.c │ │ ├── py32yyxx_hal_dma.c │ │ ├── py32yyxx_hal_dma2d.c │ │ ├── py32yyxx_hal_dma_ex.c │ │ ├── py32yyxx_hal_dsi.c │ │ ├── py32yyxx_hal_dts.c │ │ ├── py32yyxx_hal_eth.c │ │ ├── py32yyxx_hal_eth_ex.c │ │ ├── py32yyxx_hal_exti.c │ │ ├── py32yyxx_hal_fdcan.c │ │ ├── py32yyxx_hal_firewall.c │ │ ├── py32yyxx_hal_flash.c │ │ ├── py32yyxx_hal_flash_ex.c │ │ ├── py32yyxx_hal_flash_ramfunc.c │ │ ├── py32yyxx_hal_fmac.c │ │ ├── py32yyxx_hal_fmpi2c.c │ │ ├── py32yyxx_hal_fmpi2c_ex.c │ │ ├── py32yyxx_hal_fmpsmbus.c │ │ ├── py32yyxx_hal_fmpsmbus_ex.c │ │ ├── py32yyxx_hal_gfxmmu.c │ │ ├── py32yyxx_hal_gpio.c │ │ ├── py32yyxx_hal_gpio_ex.c │ │ ├── py32yyxx_hal_gpu2d.c │ │ ├── py32yyxx_hal_gtzc.c │ │ ├── py32yyxx_hal_hash.c │ │ ├── py32yyxx_hal_hash_ex.c │ │ ├── py32yyxx_hal_hcd.c │ │ ├── py32yyxx_hal_hrtim.c │ │ ├── py32yyxx_hal_hsem.c │ │ ├── py32yyxx_hal_i2c.c │ │ ├── py32yyxx_hal_i2c_ex.c │ │ ├── py32yyxx_hal_i2s.c │ │ ├── py32yyxx_hal_i2s_ex.c │ │ ├── py32yyxx_hal_icache.c │ │ ├── py32yyxx_hal_ipcc.c │ │ ├── py32yyxx_hal_irda.c │ │ ├── py32yyxx_hal_iwdg.c │ │ ├── py32yyxx_hal_jpeg.c │ │ ├── py32yyxx_hal_lcd.c │ │ ├── py32yyxx_hal_lptim.c │ │ ├── py32yyxx_hal_ltdc.c │ │ ├── py32yyxx_hal_ltdc_ex.c │ │ ├── py32yyxx_hal_mdf.c │ │ ├── py32yyxx_hal_mdios.c │ │ ├── py32yyxx_hal_mdma.c │ │ ├── py32yyxx_hal_mmc.c │ │ ├── py32yyxx_hal_mmc_ex.c │ │ ├── py32yyxx_hal_nand.c │ │ ├── py32yyxx_hal_nor.c │ │ ├── py32yyxx_hal_opamp.c │ │ ├── py32yyxx_hal_opamp_ex.c │ │ ├── py32yyxx_hal_ospi.c │ │ ├── py32yyxx_hal_otfdec.c │ │ ├── py32yyxx_hal_pccard.c │ │ ├── py32yyxx_hal_pcd.c │ │ ├── py32yyxx_hal_pcd_ex.c │ │ ├── py32yyxx_hal_pka.c │ │ ├── py32yyxx_hal_pssi.c │ │ ├── py32yyxx_hal_pwr.c │ │ ├── py32yyxx_hal_pwr_ex.c │ │ ├── py32yyxx_hal_qspi.c │ │ ├── py32yyxx_hal_ramcfg.c │ │ ├── py32yyxx_hal_ramecc.c │ │ ├── py32yyxx_hal_rcc.c │ │ ├── py32yyxx_hal_rcc_ex.c │ │ ├── py32yyxx_hal_rng.c │ │ ├── py32yyxx_hal_rng_ex.c │ │ ├── py32yyxx_hal_rtc.c │ │ ├── py32yyxx_hal_rtc_ex.c │ │ ├── py32yyxx_hal_sai.c │ │ ├── py32yyxx_hal_sai_ex.c │ │ ├── py32yyxx_hal_sd.c │ │ ├── py32yyxx_hal_sd_ex.c │ │ ├── py32yyxx_hal_sdadc.c │ │ ├── py32yyxx_hal_sdram.c │ │ ├── py32yyxx_hal_smartcard.c │ │ ├── py32yyxx_hal_smartcard_ex.c │ │ ├── py32yyxx_hal_smbus.c │ │ ├── py32yyxx_hal_smbus_ex.c │ │ ├── py32yyxx_hal_spdifrx.c │ │ ├── py32yyxx_hal_spi.c │ │ ├── py32yyxx_hal_spi_ex.c │ │ ├── py32yyxx_hal_sram.c │ │ ├── py32yyxx_hal_subghz.c │ │ ├── py32yyxx_hal_swpmi.c │ │ ├── py32yyxx_hal_tim.c │ │ ├── py32yyxx_hal_tim_ex.c │ │ ├── py32yyxx_hal_tsc.c │ │ ├── py32yyxx_hal_uart.c │ │ ├── py32yyxx_hal_uart_ex.c │ │ ├── py32yyxx_hal_usart.c │ │ ├── py32yyxx_hal_usart_ex.c │ │ ├── py32yyxx_hal_wwdg.c │ │ └── py32yyxx_hal_xspi.c │ │ ├── HardwareTimer.cpp │ │ ├── LL │ │ ├── py32yyxx_ll_adc.c │ │ ├── py32yyxx_ll_bdma.c │ │ ├── py32yyxx_ll_comp.c │ │ ├── py32yyxx_ll_cordic.c │ │ ├── py32yyxx_ll_crc.c │ │ ├── py32yyxx_ll_crs.c │ │ ├── py32yyxx_ll_dac.c │ │ ├── py32yyxx_ll_delayblock.c │ │ ├── py32yyxx_ll_dlyb.c │ │ ├── py32yyxx_ll_dma.c │ │ ├── py32yyxx_ll_dma2d.c │ │ ├── py32yyxx_ll_exti.c │ │ ├── py32yyxx_ll_fmac.c │ │ ├── py32yyxx_ll_fmc.c │ │ ├── py32yyxx_ll_fmpi2c.c │ │ ├── py32yyxx_ll_fsmc.c │ │ ├── py32yyxx_ll_gpio.c │ │ ├── py32yyxx_ll_hrtim.c │ │ ├── py32yyxx_ll_i2c.c │ │ ├── py32yyxx_ll_icache.c │ │ ├── py32yyxx_ll_lpgpio.c │ │ ├── py32yyxx_ll_lptim.c │ │ ├── py32yyxx_ll_lpuart.c │ │ ├── py32yyxx_ll_mdma.c │ │ ├── py32yyxx_ll_opamp.c │ │ ├── py32yyxx_ll_pka.c │ │ ├── py32yyxx_ll_pwr.c │ │ ├── py32yyxx_ll_rcc.c │ │ ├── py32yyxx_ll_rng.c │ │ ├── py32yyxx_ll_rtc.c │ │ ├── py32yyxx_ll_sdmmc.c │ │ ├── py32yyxx_ll_spi.c │ │ ├── py32yyxx_ll_swpmi.c │ │ ├── py32yyxx_ll_tim.c │ │ ├── py32yyxx_ll_ucpd.c │ │ ├── py32yyxx_ll_usart.c │ │ ├── py32yyxx_ll_usb.c │ │ └── py32yyxx_ll_utils.c │ │ ├── SrcWrapper.h │ │ ├── air │ │ ├── PortNames.c │ │ ├── air_def.c │ │ ├── analog.cpp │ │ ├── bootloader.c │ │ ├── clock.c │ │ ├── core_callback.c │ │ ├── dwt.c │ │ ├── hw_config.c │ │ ├── interrupt.cpp │ │ ├── otp.c │ │ ├── pinmap.c │ │ ├── system_airyyxx.c │ │ ├── timer.c │ │ └── uart.c │ │ ├── new.cpp │ │ └── syscalls.c ├── Wire │ ├── examples │ │ ├── SFRRanger_reader │ │ │ └── SFRRanger_reader.ino │ │ ├── digital_potentiometer │ │ │ └── digital_potentiometer.ino │ │ ├── i2c_scanner │ │ │ └── i2c_scanner.ino │ │ ├── master_reader │ │ │ └── master_reader.ino │ │ ├── master_reader_writer │ │ │ └── master_reader_writer.ino │ │ ├── master_writer │ │ │ └── master_writer.ino │ │ ├── slave_receiver │ │ │ └── slave_receiver.ino │ │ ├── slave_sender │ │ │ └── slave_sender.ino │ │ └── slave_sender_receiver │ │ │ └── slave_sender_receiver.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Wire.cpp │ │ ├── Wire.h │ │ └── utility │ │ ├── twi.c │ │ └── twi.h └── test.py ├── package └── package_py32_index.template.json ├── platform.txt ├── programmers.txt ├── system ├── PY32F0xx │ ├── py32f0xx_hal_conf.h │ ├── py32f0xx_hal_conf_default.h │ └── system_py32f0xx.c ├── extras │ ├── prebuild.bat │ └── prebuild.sh └── ldscript.ld └── variants ├── PY32F002Axx └── PY32F002A_Base │ ├── CMakeLists.txt │ ├── PeripheralPins.c │ ├── PinNamesVar.h │ ├── boards_entry.txt │ ├── generic_clock.c │ ├── ldscript.ld │ ├── qfp_fix.c │ ├── qfplib-m0-full.S │ ├── qfplib-m0-full.h │ ├── variant_generic.cpp │ └── variant_generic.h ├── PY32F003xx └── PY32F003_Base │ ├── CMakeLists.txt │ ├── PeripheralPins.c │ ├── PinNamesVar.h │ ├── boards_entry.txt │ ├── generic_clock.c │ ├── ldscript.ld │ ├── qfp_fix.c │ ├── qfplib-m0-full.S │ ├── qfplib-m0-full.h │ ├── variant_generic.cpp │ └── variant_generic.h └── PY32F030xx └── PY32F030_Base ├── CMakeLists.txt ├── PeripheralPins.c ├── PinNamesVar.h ├── boards_entry.txt ├── generic_clock.c ├── ldscript.ld ├── qfp_fix.c ├── qfplib-m0-full.S ├── qfplib-m0-full.h ├── variant_generic.cpp └── variant_generic.h /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/.github/workflows/releases.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/boards.txt -------------------------------------------------------------------------------- /cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /cores/arduino/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/CMakeLists.txt -------------------------------------------------------------------------------- /cores/arduino/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Client.h -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/HardwareSerial.cpp -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /cores/arduino/HardwareTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/HardwareTimer.h -------------------------------------------------------------------------------- /cores/arduino/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/IPAddress.cpp -------------------------------------------------------------------------------- /cores/arduino/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/IPAddress.h -------------------------------------------------------------------------------- /cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Print.h -------------------------------------------------------------------------------- /cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Printable.h -------------------------------------------------------------------------------- /cores/arduino/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/RingBuffer.cpp -------------------------------------------------------------------------------- /cores/arduino/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/RingBuffer.h -------------------------------------------------------------------------------- /cores/arduino/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Server.h -------------------------------------------------------------------------------- /cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Stream.h -------------------------------------------------------------------------------- /cores/arduino/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Tone.cpp -------------------------------------------------------------------------------- /cores/arduino/Tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Tone.h -------------------------------------------------------------------------------- /cores/arduino/USBSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/USBSerial.cpp -------------------------------------------------------------------------------- /cores/arduino/USBSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/USBSerial.h -------------------------------------------------------------------------------- /cores/arduino/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/Udp.h -------------------------------------------------------------------------------- /cores/arduino/VirtIOSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/VirtIOSerial.cpp -------------------------------------------------------------------------------- /cores/arduino/VirtIOSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/VirtIOSerial.h -------------------------------------------------------------------------------- /cores/arduino/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WCharacter.h -------------------------------------------------------------------------------- /cores/arduino/WInterrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WInterrupts.cpp -------------------------------------------------------------------------------- /cores/arduino/WInterrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WInterrupts.h -------------------------------------------------------------------------------- /cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /cores/arduino/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WMath.h -------------------------------------------------------------------------------- /cores/arduino/WSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WSerial.cpp -------------------------------------------------------------------------------- /cores/arduino/WSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WSerial.h -------------------------------------------------------------------------------- /cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/WString.h -------------------------------------------------------------------------------- /cores/arduino/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/abi.cpp -------------------------------------------------------------------------------- /cores/arduino/avr/dtostrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/avr/dtostrf.c -------------------------------------------------------------------------------- /cores/arduino/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/avr/dtostrf.h -------------------------------------------------------------------------------- /cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /cores/arduino/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/binary.h -------------------------------------------------------------------------------- /cores/arduino/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/board.c -------------------------------------------------------------------------------- /cores/arduino/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/board.h -------------------------------------------------------------------------------- /cores/arduino/core_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/core_debug.c -------------------------------------------------------------------------------- /cores/arduino/core_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/core_debug.h -------------------------------------------------------------------------------- /cores/arduino/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/hooks.c -------------------------------------------------------------------------------- /cores/arduino/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/itoa.c -------------------------------------------------------------------------------- /cores/arduino/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/itoa.h -------------------------------------------------------------------------------- /cores/arduino/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/main.cpp -------------------------------------------------------------------------------- /cores/arduino/pins_arduino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/pins_arduino.c -------------------------------------------------------------------------------- /cores/arduino/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/pins_arduino.h -------------------------------------------------------------------------------- /cores/arduino/pins_arduino_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/pins_arduino_analog.h -------------------------------------------------------------------------------- /cores/arduino/pins_arduino_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/pins_arduino_digital.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_adc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_bdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_bdma.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_bus.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_comp.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_cordic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_cordic.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_cortex.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_crc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_crs.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_dac.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_dcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_dcache.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_delayblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_delayblock.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_dlyb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_dlyb.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_dma.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_dma2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_dma2d.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_dmamux.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_exti.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_fmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_fmac.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_fmc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_fmpi2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_fmpi2c.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_fsmc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_gpio.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_hrtim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_hrtim.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_hsem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_hsem.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_i2c.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_icache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_icache.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_ipcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_ipcc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_iwdg.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_lpgpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_lpgpio.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_lptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_lptim.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_lpuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_lpuart.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_mdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_mdma.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_opamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_opamp.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_pka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_pka.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_pwr.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_rcc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_rng.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_rtc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_sdmmc.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_spi.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_swpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_swpmi.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_system.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_tim.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_ucpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_ucpd.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_usart.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_usb.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_utils.h -------------------------------------------------------------------------------- /cores/arduino/py32/LL/py32yyxx_ll_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/LL/py32yyxx_ll_wwdg.h -------------------------------------------------------------------------------- /cores/arduino/py32/PeripheralPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/PeripheralPins.h -------------------------------------------------------------------------------- /cores/arduino/py32/PinAF_AIRF1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/PinAF_AIRF1.h -------------------------------------------------------------------------------- /cores/arduino/py32/PinConfigured.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/PinConfigured.h -------------------------------------------------------------------------------- /cores/arduino/py32/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/PinNames.h -------------------------------------------------------------------------------- /cores/arduino/py32/PinNamesTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/PinNamesTypes.h -------------------------------------------------------------------------------- /cores/arduino/py32/PortNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/PortNames.h -------------------------------------------------------------------------------- /cores/arduino/py32/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/analog.h -------------------------------------------------------------------------------- /cores/arduino/py32/backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/backup.h -------------------------------------------------------------------------------- /cores/arduino/py32/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/bootloader.h -------------------------------------------------------------------------------- /cores/arduino/py32/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/clock.h -------------------------------------------------------------------------------- /cores/arduino/py32/core_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/core_callback.h -------------------------------------------------------------------------------- /cores/arduino/py32/digital_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/digital_io.h -------------------------------------------------------------------------------- /cores/arduino/py32/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/dwt.h -------------------------------------------------------------------------------- /cores/arduino/py32/hw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/hw_config.h -------------------------------------------------------------------------------- /cores/arduino/py32/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/interrupt.h -------------------------------------------------------------------------------- /cores/arduino/py32/lock_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/lock_resource.h -------------------------------------------------------------------------------- /cores/arduino/py32/otp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/otp.h -------------------------------------------------------------------------------- /cores/arduino/py32/pinconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/pinconfig.h -------------------------------------------------------------------------------- /cores/arduino/py32/pinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/pinmap.h -------------------------------------------------------------------------------- /cores/arduino/py32/py32_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/py32_def.h -------------------------------------------------------------------------------- /cores/arduino/py32/py32_def_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/py32_def_build.h -------------------------------------------------------------------------------- /cores/arduino/py32/py32yyxx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/py32yyxx_hal_conf.h -------------------------------------------------------------------------------- /cores/arduino/py32/startup_airyyxx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/startup_airyyxx.S -------------------------------------------------------------------------------- /cores/arduino/py32/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/timer.h -------------------------------------------------------------------------------- /cores/arduino/py32/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/uart.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/cdc/cdc_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/cdc/cdc_queue.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/cdc/cdc_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/cdc/cdc_queue.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/cdc/usbd_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/cdc/usbd_cdc.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/cdc/usbd_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/cdc/usbd_cdc.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/cdc/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/cdc/usbd_cdc_if.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/cdc/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/cdc/usbd_cdc_if.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/hid/usbd_hid_composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/hid/usbd_hid_composite.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/hid/usbd_hid_composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/hid/usbd_hid_composite.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/hid/usbd_hid_composite_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/hid/usbd_hid_composite_if.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/hid/usbd_hid_composite_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/hid/usbd_hid_composite_if.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usb_device_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usb_device_core.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usb_device_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usb_device_ctlreq.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usb_device_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usb_device_ioreq.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_conf.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_conf.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_desc.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_desc.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_ep_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_ep_conf.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_ep_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_ep_conf.h -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_if.c -------------------------------------------------------------------------------- /cores/arduino/py32/usb/usbd_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/py32/usb/usbd_if.h -------------------------------------------------------------------------------- /cores/arduino/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/utils.h -------------------------------------------------------------------------------- /cores/arduino/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/variant.h -------------------------------------------------------------------------------- /cores/arduino/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring.h -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_analog.c -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_analog.h -------------------------------------------------------------------------------- /cores/arduino/wiring_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_constants.h -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_digital.c -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_digital.h -------------------------------------------------------------------------------- /cores/arduino/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_private.h -------------------------------------------------------------------------------- /cores/arduino/wiring_pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_pulse.cpp -------------------------------------------------------------------------------- /cores/arduino/wiring_pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_pulse.h -------------------------------------------------------------------------------- /cores/arduino/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_shift.c -------------------------------------------------------------------------------- /cores/arduino/wiring_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_shift.h -------------------------------------------------------------------------------- /cores/arduino/wiring_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_time.c -------------------------------------------------------------------------------- /cores/arduino/wiring_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/cores/arduino/wiring_time.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- 1 | # TODO -------------------------------------------------------------------------------- /libraries/EEPROM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/EEPROM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/README.md -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_get/eeprom_get.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_iteration/eeprom_iteration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_iteration/eeprom_iteration.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_put/eeprom_put.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_read/eeprom_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_update/eeprom_update.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_update/eeprom_update.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_write/eeprom_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino -------------------------------------------------------------------------------- /libraries/EEPROM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/keywords.txt -------------------------------------------------------------------------------- /libraries/EEPROM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/library.properties -------------------------------------------------------------------------------- /libraries/EEPROM/src/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/src/EEPROM.h -------------------------------------------------------------------------------- /libraries/EEPROM/src/utility/air_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/src/utility/air_eeprom.c -------------------------------------------------------------------------------- /libraries/EEPROM/src/utility/air_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/EEPROM/src/utility/air_eeprom.h -------------------------------------------------------------------------------- /libraries/SPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/SPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/README.md -------------------------------------------------------------------------------- /libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino -------------------------------------------------------------------------------- /libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /libraries/SPI/src/utility/spi_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/src/utility/spi_com.c -------------------------------------------------------------------------------- /libraries/SPI/src/utility/spi_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SPI/src/utility/spi_com.h -------------------------------------------------------------------------------- /libraries/Servo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/Servo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/README.adoc -------------------------------------------------------------------------------- /libraries/Servo/examples/Knob/Knob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/examples/Knob/Knob.ino -------------------------------------------------------------------------------- /libraries/Servo/examples/Sweep/Sweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/examples/Sweep/Sweep.ino -------------------------------------------------------------------------------- /libraries/Servo/examples/fs90r/fs90r.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/examples/fs90r/fs90r.ino -------------------------------------------------------------------------------- /libraries/Servo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/keywords.txt -------------------------------------------------------------------------------- /libraries/Servo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/library.properties -------------------------------------------------------------------------------- /libraries/Servo/src/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/src/Servo.h -------------------------------------------------------------------------------- /libraries/Servo/src/stm32/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/src/stm32/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/src/stm32/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Servo/src/stm32/ServoTimers.h -------------------------------------------------------------------------------- /libraries/SoftwareSerial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SoftwareSerial/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino -------------------------------------------------------------------------------- /libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino -------------------------------------------------------------------------------- /libraries/SoftwareSerial/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SoftwareSerial/keywords.txt -------------------------------------------------------------------------------- /libraries/SoftwareSerial/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SoftwareSerial/library.properties -------------------------------------------------------------------------------- /libraries/SoftwareSerial/src/SoftwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SoftwareSerial/src/SoftwareSerial.cpp -------------------------------------------------------------------------------- /libraries/SoftwareSerial/src/SoftwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SoftwareSerial/src/SoftwareSerial.h -------------------------------------------------------------------------------- /libraries/SrcWrapper/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/keywords.txt -------------------------------------------------------------------------------- /libraries/SrcWrapper/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/library.properties -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_adc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_adc_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_can.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_cec.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_comp.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_comp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_comp_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_cordic.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_cortex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_crc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_crc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_crc_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_cryp.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_cryp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_cryp_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dac.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dac_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dac_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dcache.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dcmi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dcmi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dcmi_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dfsdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dfsdm.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dfsdm_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dfsdm_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dma.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dma2d.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dma_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dsi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_dts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_dts.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_eth.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_eth_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_eth_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_exti.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_fdcan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_fdcan.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_firewall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_firewall.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_flash.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_flash_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmac.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpi2c.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpi2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpi2c_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpsmbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpsmbus.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpsmbus_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_fmpsmbus_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_gfxmmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_gfxmmu.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_gpio.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_gpio_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_gpio_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_gpu2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_gpu2d.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_gtzc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_gtzc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_hash.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_hash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_hash_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_hcd.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_hrtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_hrtim.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_hsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_hsem.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2c.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2c_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2s.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2s_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_i2s_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_icache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_icache.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_ipcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_ipcc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_irda.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_iwdg.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_jpeg.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_lcd.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_lptim.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_ltdc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_ltdc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_ltdc_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_mdf.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_mdios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_mdios.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_mdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_mdma.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_mmc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_mmc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_mmc_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_nand.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_nor.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_opamp.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_opamp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_opamp_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_ospi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_ospi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_otfdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_otfdec.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_pccard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_pccard.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_pcd.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_pcd_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_pka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_pka.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_pssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_pssi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_pwr.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_pwr_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_qspi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_ramcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_ramcfg.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_ramecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_ramecc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_rcc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_rcc_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_rng.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_rng_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_rng_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_rtc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_rtc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_rtc_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_sai.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_sai_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_sai_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_sd.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_sd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_sd_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_sdadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_sdadc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_sdram.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_smartcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_smartcard.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_smartcard_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_smartcard_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_smbus.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_smbus_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_smbus_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_spdifrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_spdifrx.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_spi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_spi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_spi_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_sram.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_subghz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_subghz.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_swpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_swpmi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_tim.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_tim_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_tsc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_uart.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_uart_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_uart_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_usart.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_usart_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_usart_ex.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_wwdg.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HAL/py32yyxx_hal_xspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HAL/py32yyxx_hal_xspi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/HardwareTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/HardwareTimer.cpp -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_adc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_bdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_bdma.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_comp.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_cordic.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_crc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_crs.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_dac.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_delayblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_delayblock.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_dlyb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_dlyb.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_dma.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_dma2d.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_exti.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_fmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_fmac.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_fmc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_fmpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_fmpi2c.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_fsmc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_gpio.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_hrtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_hrtim.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_i2c.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_icache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_icache.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_lpgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_lpgpio.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_lptim.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_lpuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_lpuart.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_mdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_mdma.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_opamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_opamp.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_pka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_pka.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_pwr.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_rcc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_rng.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_rtc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_sdmmc.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_spi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_swpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_swpmi.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_tim.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_ucpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_ucpd.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_usart.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_usb.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/LL/py32yyxx_ll_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/LL/py32yyxx_ll_utils.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/SrcWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/SrcWrapper.h -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/PortNames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/PortNames.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/air_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/air_def.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/analog.cpp -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/bootloader.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/clock.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/core_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/core_callback.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/dwt.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/hw_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/hw_config.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/interrupt.cpp -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/otp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/otp.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/pinmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/pinmap.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/system_airyyxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/system_airyyxx.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/timer.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/air/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/air/uart.c -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/new.cpp -------------------------------------------------------------------------------- /libraries/SrcWrapper/src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/SrcWrapper/src/syscalls.c -------------------------------------------------------------------------------- /libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/i2c_scanner/i2c_scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/i2c_scanner/i2c_scanner.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/master_reader_writer/master_reader_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/master_reader_writer/master_reader_writer.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_receiver/slave_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/slave_receiver/slave_receiver.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_sender/slave_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/slave_sender/slave_sender.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_sender_receiver/slave_sender_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/examples/slave_sender_receiver/slave_sender_receiver.ino -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /libraries/Wire/src/utility/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/src/utility/twi.c -------------------------------------------------------------------------------- /libraries/Wire/src/utility/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/Wire/src/utility/twi.h -------------------------------------------------------------------------------- /libraries/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/libraries/test.py -------------------------------------------------------------------------------- /package/package_py32_index.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/package/package_py32_index.template.json -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- 1 | # TODO -------------------------------------------------------------------------------- /system/PY32F0xx/py32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/system/PY32F0xx/py32f0xx_hal_conf.h -------------------------------------------------------------------------------- /system/PY32F0xx/py32f0xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/system/PY32F0xx/py32f0xx_hal_conf_default.h -------------------------------------------------------------------------------- /system/PY32F0xx/system_py32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/system/PY32F0xx/system_py32f0xx.c -------------------------------------------------------------------------------- /system/extras/prebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/system/extras/prebuild.bat -------------------------------------------------------------------------------- /system/extras/prebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/system/extras/prebuild.sh -------------------------------------------------------------------------------- /system/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/system/ldscript.ld -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/CMakeLists.txt -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/PeripheralPins.c -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/PinNamesVar.h -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/boards_entry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/boards_entry.txt -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/generic_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/generic_clock.c -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/ldscript.ld -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/qfp_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/qfp_fix.c -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/qfplib-m0-full.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/qfplib-m0-full.S -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/qfplib-m0-full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/qfplib-m0-full.h -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/variant_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/variant_generic.cpp -------------------------------------------------------------------------------- /variants/PY32F002Axx/PY32F002A_Base/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F002Axx/PY32F002A_Base/variant_generic.h -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/CMakeLists.txt -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/PeripheralPins.c -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/PinNamesVar.h -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/boards_entry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/boards_entry.txt -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/generic_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/generic_clock.c -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/ldscript.ld -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/qfp_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/qfp_fix.c -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/qfplib-m0-full.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/qfplib-m0-full.S -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/qfplib-m0-full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/qfplib-m0-full.h -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/variant_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/variant_generic.cpp -------------------------------------------------------------------------------- /variants/PY32F003xx/PY32F003_Base/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F003xx/PY32F003_Base/variant_generic.h -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/CMakeLists.txt -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/PeripheralPins.c -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/PinNamesVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/PinNamesVar.h -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/boards_entry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/boards_entry.txt -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/generic_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/generic_clock.c -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/ldscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/ldscript.ld -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/qfp_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/qfp_fix.c -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/qfplib-m0-full.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/qfplib-m0-full.S -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/qfplib-m0-full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/qfplib-m0-full.h -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/variant_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/variant_generic.cpp -------------------------------------------------------------------------------- /variants/PY32F030xx/PY32F030_Base/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py32duino/Arduino-PY32/HEAD/variants/PY32F030xx/PY32F030_Base/variant_generic.h --------------------------------------------------------------------------------