├── .gitignore ├── README.md ├── boards.txt ├── cores └── arduino │ ├── Arduino.h │ ├── Client.h │ ├── HardwareSerial.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 │ ├── UARTClass.cpp │ ├── UARTClass.h │ ├── USARTClass.cpp │ ├── USARTClass.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WInterrupts.c │ ├── WInterrupts.h │ ├── WMath.cpp │ ├── WMath.h │ ├── WString.cpp │ ├── WString.h │ ├── abi.cpp │ ├── avr │ ├── PeripheralPins.h │ ├── PinConfigured.c │ ├── PinConfigured.h │ ├── PinNamesTypes.h │ ├── PortNames.c │ ├── PortNames.h │ ├── dtostrf.c │ ├── dtostrf.h │ ├── pgmspace.h │ ├── pinmap.c │ └── pinmap.h │ ├── binary.h │ ├── chip.h │ ├── hooks.c │ ├── itoa.c │ ├── itoa.h │ ├── libstm32f4 │ ├── analog.c │ ├── analog.h │ ├── clock.c │ ├── clock.h │ ├── digital_io.c │ ├── digital_io.h │ ├── hw_config.c │ ├── hw_config.h │ ├── interrupt.c │ ├── interrupt.h │ ├── spi_com.c │ ├── spi_com.h │ ├── stm32_eeprom.c │ ├── stm32_eeprom.h │ ├── system_stm32f4xx.c │ ├── timer.c │ ├── timer.h │ ├── twi.c │ ├── twi.h │ ├── uart.c │ ├── uart.h │ ├── uart_emul.c │ ├── uart_emul.h │ ├── usb_device_core.c │ ├── usb_device_ctlreq.c │ ├── usb_device_ioreq.c │ ├── usb_interface.c │ ├── usb_interface.h │ ├── usbd_hid_composite.c │ └── usbd_hid_composite.h │ ├── main.cpp │ ├── new.cpp │ ├── syscalls.h │ ├── syscalls_stm32.c │ ├── wiring.c │ ├── wiring.h │ ├── wiring_analog.c │ ├── wiring_analog.h │ ├── wiring_constants.h │ ├── wiring_digital.c │ ├── wiring_digital.h │ ├── wiring_private.h │ ├── wiring_pulse.cpp │ ├── wiring_pulse.h │ ├── wiring_shift.c │ └── wiring_shift.h ├── libraries ├── CapacitiveSensor-0.5.1 │ ├── CapacitiveSensor.cpp │ ├── CapacitiveSensor.h │ ├── README.md │ ├── examples │ │ └── CapacitiveSensorSketch │ │ │ └── CapacitiveSensorSketch.pde │ ├── keywords.txt │ └── library.properties ├── EEPROM │ ├── EEPROM.h │ ├── 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 ├── Firmata │ ├── Boards.h │ ├── Firmata.cpp │ ├── Firmata.h │ ├── examples │ │ ├── AllInputsFirmata │ │ │ └── AllInputsFirmata.ino │ │ ├── AnalogFirmata │ │ │ └── AnalogFirmata.ino │ │ ├── EchoString │ │ │ └── EchoString.ino │ │ ├── OldStandardFirmata │ │ │ ├── LICENSE.txt │ │ │ └── OldStandardFirmata.ino │ │ ├── ServoFirmata │ │ │ └── ServoFirmata.ino │ │ ├── SimpleAnalogFirmata │ │ │ └── SimpleAnalogFirmata.ino │ │ ├── SimpleDigitalFirmata │ │ │ └── SimpleDigitalFirmata.ino │ │ ├── StandardFirmata │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmata.ino │ │ ├── StandardFirmataChipKIT │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmataChipKIT.ino │ │ ├── StandardFirmataEthernet │ │ │ ├── LICENSE.txt │ │ │ ├── StandardFirmataEthernet.ino │ │ │ └── ethernetConfig.h │ │ ├── StandardFirmataEthernetPlus │ │ │ ├── LICENSE.txt │ │ │ ├── StandardFirmataEthernetPlus.ino │ │ │ └── ethernetConfig.h │ │ ├── StandardFirmataPlus │ │ │ ├── LICENSE.txt │ │ │ └── StandardFirmataPlus.ino │ │ └── StandardFirmataWiFi │ │ │ ├── LICENSE.txt │ │ │ ├── StandardFirmataWiFi.ino │ │ │ └── wifiConfig.h │ ├── extras │ │ ├── LICENSE.txt │ │ └── revisions.txt │ ├── keywords.txt │ ├── library.properties │ ├── readme.md │ ├── release.sh │ ├── test │ │ ├── firmata_test │ │ │ └── firmata_test.ino │ │ └── readme.md │ └── utility │ │ ├── EthernetClientStream.cpp │ │ ├── EthernetClientStream.h │ │ ├── FirmataFeature.h │ │ ├── SerialFirmata.cpp │ │ ├── SerialFirmata.h │ │ ├── WiFi101Stream.cpp │ │ ├── WiFi101Stream.h │ │ ├── WiFiStream.cpp │ │ ├── WiFiStream.h │ │ └── firmataDebug.h ├── GSM │ ├── README.adoc │ ├── examples │ │ ├── GsmWebClient │ │ │ └── GsmWebClient.ino │ │ ├── GsmWebServer │ │ │ └── GsmWebServer.ino │ │ ├── MakeVoiceCall │ │ │ └── MakeVoiceCall.ino │ │ ├── ReceiveSMS │ │ │ └── ReceiveSMS.ino │ │ ├── ReceiveVoiceCall │ │ │ └── ReceiveVoiceCall.ino │ │ ├── SendSMS │ │ │ └── SendSMS.ino │ │ └── Tools │ │ │ ├── BandManagement │ │ │ └── BandManagement.ino │ │ │ ├── GsmScanNetworks │ │ │ └── GsmScanNetworks.ino │ │ │ ├── PinManagement │ │ │ └── PinManagement.ino │ │ │ ├── TestGPRS │ │ │ └── TestGPRS.ino │ │ │ ├── TestModem │ │ │ └── TestModem.ino │ │ │ └── TestWebServer │ │ │ └── TestWebServer.ino │ ├── extras │ │ └── License.txt │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── DEFAULT.h │ │ ├── GSM.h │ │ ├── GSM3CircularBuffer.cpp │ │ ├── GSM3CircularBuffer.h │ │ ├── GSM3IO.h │ │ ├── GSM3MobileAccessProvider.cpp │ │ ├── GSM3MobileAccessProvider.h │ │ ├── GSM3MobileCellManagement.cpp │ │ ├── GSM3MobileCellManagement.h │ │ ├── GSM3MobileClientProvider.cpp │ │ ├── GSM3MobileClientProvider.h │ │ ├── GSM3MobileClientService.cpp │ │ ├── GSM3MobileClientService.h │ │ ├── GSM3MobileDataNetworkProvider.cpp │ │ ├── GSM3MobileDataNetworkProvider.h │ │ ├── GSM3MobileMockupProvider.cpp │ │ ├── GSM3MobileMockupProvider.h │ │ ├── GSM3MobileNetworkProvider.cpp │ │ ├── GSM3MobileNetworkProvider.h │ │ ├── GSM3MobileNetworkRegistry.cpp │ │ ├── GSM3MobileNetworkRegistry.h │ │ ├── GSM3MobileSMSProvider.cpp │ │ ├── GSM3MobileSMSProvider.h │ │ ├── GSM3MobileServerProvider.cpp │ │ ├── GSM3MobileServerProvider.h │ │ ├── GSM3MobileServerService.cpp │ │ ├── GSM3MobileServerService.h │ │ ├── GSM3MobileVoiceProvider.cpp │ │ ├── GSM3MobileVoiceProvider.h │ │ ├── GSM3SMSService.cpp │ │ ├── GSM3SMSService.h │ │ ├── GSM3ShieldV1.cpp │ │ ├── GSM3ShieldV1.h │ │ ├── GSM3ShieldV1AccessProvider.cpp │ │ ├── GSM3ShieldV1AccessProvider.h │ │ ├── GSM3ShieldV1BandManagement.cpp │ │ ├── GSM3ShieldV1BandManagement.h │ │ ├── GSM3ShieldV1BaseProvider.cpp │ │ ├── GSM3ShieldV1BaseProvider.h │ │ ├── GSM3ShieldV1CellManagement.cpp │ │ ├── GSM3ShieldV1CellManagement.h │ │ ├── GSM3ShieldV1ClientProvider.cpp │ │ ├── GSM3ShieldV1ClientProvider.h │ │ ├── GSM3ShieldV1DataNetworkProvider.cpp │ │ ├── GSM3ShieldV1DataNetworkProvider.h │ │ ├── GSM3ShieldV1DirectModemProvider.cpp │ │ ├── GSM3ShieldV1DirectModemProvider.h │ │ ├── GSM3ShieldV1ModemCore.cpp │ │ ├── GSM3ShieldV1ModemCore.h │ │ ├── GSM3ShieldV1ModemVerification.cpp │ │ ├── GSM3ShieldV1ModemVerification.h │ │ ├── GSM3ShieldV1MultiClientProvider.cpp │ │ ├── GSM3ShieldV1MultiClientProvider.h │ │ ├── GSM3ShieldV1MultiServerProvider.cpp │ │ ├── GSM3ShieldV1MultiServerProvider.h │ │ ├── GSM3ShieldV1PinManagement.cpp │ │ ├── GSM3ShieldV1PinManagement.h │ │ ├── GSM3ShieldV1SMSProvider.cpp │ │ ├── GSM3ShieldV1SMSProvider.h │ │ ├── GSM3ShieldV1ScanNetworks.cpp │ │ ├── GSM3ShieldV1ScanNetworks.h │ │ ├── GSM3ShieldV1ServerProvider.cpp │ │ ├── GSM3ShieldV1ServerProvider.h │ │ ├── GSM3ShieldV1VoiceProvider.cpp │ │ ├── GSM3ShieldV1VoiceProvider.h │ │ ├── GSM3ShieldV2.cpp │ │ ├── GSM3ShieldV2.h │ │ ├── GSM3SoftSerial.cpp │ │ ├── GSM3SoftSerial.h │ │ ├── GSM3VoiceCallService.cpp │ │ └── GSM3VoiceCallService.h ├── Keyboard │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Keyboard.cpp │ │ └── Keyboard.h ├── LiquidCrystal │ ├── README.adoc │ ├── examples │ │ ├── Autoscroll │ │ │ └── Autoscroll.ino │ │ ├── Blink │ │ │ └── Blink.ino │ │ ├── Cursor │ │ │ └── Cursor.ino │ │ ├── CustomCharacter │ │ │ └── CustomCharacter.ino │ │ ├── Display │ │ │ └── Display.ino │ │ ├── HelloWorld │ │ │ └── HelloWorld.ino │ │ ├── Scroll │ │ │ └── Scroll.ino │ │ ├── SerialDisplay │ │ │ └── SerialDisplay.ino │ │ ├── TextDirection │ │ │ └── TextDirection.ino │ │ └── setCursor │ │ │ └── setCursor.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── LiquidCrystal.cpp │ │ └── LiquidCrystal.h ├── Mouse │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Mouse.cpp │ │ └── Mouse.h ├── SPI │ ├── SPI.cpp │ ├── SPI.h │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── keywords.txt │ └── library.properties ├── Servo │ ├── README.adoc │ ├── Servo.cpp │ ├── Servo.h │ ├── ServoTimers.h │ ├── examples │ │ ├── Knob │ │ │ └── Knob.ino │ │ └── Sweep │ │ │ └── Sweep.ino │ ├── keywords.txt │ └── library.properties ├── TFT │ ├── README.adoc │ ├── examples │ │ ├── Arduino │ │ │ ├── TFTBitmapLogo │ │ │ │ ├── TFTBitmapLogo.ino │ │ │ │ └── arduino.bmp │ │ │ ├── TFTColorPicker │ │ │ │ └── TFTColorPicker.ino │ │ │ ├── TFTDisplayText │ │ │ │ └── TFTDisplayText.ino │ │ │ ├── TFTEtchASketch │ │ │ │ └── TFTEtchASketch.ino │ │ │ ├── TFTGraph │ │ │ │ └── TFTGraph.ino │ │ │ └── TFTPong │ │ │ │ └── TFTPong.ino │ │ └── Esplora │ │ │ ├── EsploraTFTBitmapLogo │ │ │ ├── EsploraTFTBitmapLogo.ino │ │ │ └── arduino.bmp │ │ │ ├── EsploraTFTColorPicker │ │ │ └── EsploraTFTColorPicker.ino │ │ │ ├── EsploraTFTEtchASketch │ │ │ └── EsploraTFTEtchASketch.ino │ │ │ ├── EsploraTFTGraph │ │ │ └── EsploraTFTGraph.ino │ │ │ ├── EsploraTFTHorizon │ │ │ └── EsploraTFTHorizon.ino │ │ │ ├── EsploraTFTPong │ │ │ └── EsploraTFTPong.ino │ │ │ └── EsploraTFTTemp │ │ │ └── EsploraTFTTemp.ino │ ├── extras │ │ ├── Adafruit-README.txt │ │ ├── Adafruit-license.txt │ │ └── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── TFT.cpp │ │ ├── TFT.h │ │ └── utility │ │ ├── Adafruit_GFX.cpp │ │ ├── Adafruit_GFX.h │ │ ├── Adafruit_ST7735.cpp │ │ ├── Adafruit_ST7735.h │ │ ├── PImage.h │ │ ├── glcdfont.c │ │ └── keywords.txt ├── WiFi │ ├── README.adoc │ ├── examples │ │ ├── ConnectNoEncryption │ │ │ └── ConnectNoEncryption.ino │ │ ├── ConnectWithWEP │ │ │ └── ConnectWithWEP.ino │ │ ├── ConnectWithWPA │ │ │ └── ConnectWithWPA.ino │ │ ├── ScanNetworks │ │ │ └── ScanNetworks.ino │ │ ├── SimpleWebServerWiFi │ │ │ └── SimpleWebServerWiFi.ino │ │ ├── WiFiChatServer │ │ │ └── WiFiChatServer.ino │ │ ├── WiFiUdpNtpClient │ │ │ └── WiFiUdpNtpClient.ino │ │ ├── WiFiUdpSendReceiveString │ │ │ └── WiFiUdpSendReceiveString.ino │ │ ├── WiFiWebClient │ │ │ └── WiFiWebClient.ino │ │ ├── WiFiWebClientRepeating │ │ │ └── WiFiWebClientRepeating.ino │ │ └── WiFiWebServer │ │ │ └── WiFiWebServer.ino │ ├── extras │ │ ├── binary │ │ │ ├── wifiHD.elf │ │ │ ├── wifiHD.hex │ │ │ ├── wifiHD_2_1.elf │ │ │ ├── wifi_dnld.elf │ │ │ ├── wifi_dnld.hex │ │ │ └── wifi_dnld_2_1.elf │ │ ├── scripts │ │ │ └── ArduinoWifiShield_upgrade.sh │ │ ├── wifiHD │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Release │ │ │ │ ├── wifiHD.elf │ │ │ │ └── wifiHD.hex │ │ │ ├── src │ │ │ │ ├── CONFIG │ │ │ │ │ ├── conf_access.h │ │ │ │ │ ├── conf_at45dbx.h │ │ │ │ │ ├── conf_ebi.h │ │ │ │ │ └── conf_sd_mmc_spi.h │ │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ │ ├── ASM │ │ │ │ │ │ └── trampoline.x │ │ │ │ │ ├── BOARDS │ │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.h.my │ │ │ │ │ ├── COMPONENTS │ │ │ │ │ │ ├── MEMORY │ │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ │ └── WIFI │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ ├── v2.7.0 │ │ │ │ │ │ │ ├── UCR1 │ │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ │ ├── lib_ucr1_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ │ └── lib_ucr1_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ │ ├── UCR2 │ │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_sdio_v2.7.0.a │ │ │ │ │ │ │ │ │ ├── lib_ucr2_hd_spi_v2.7.0.a │ │ │ │ │ │ │ │ │ └── lib_ucr2_hd_wl_sta_intwpa_v2.7.0.a │ │ │ │ │ │ │ └── revision.txt │ │ │ │ │ │ │ ├── wl_api.h │ │ │ │ │ │ │ ├── wl_fw.h │ │ │ │ │ │ │ ├── wl_os.h │ │ │ │ │ │ │ ├── wl_sdio.h │ │ │ │ │ │ │ ├── wl_spi.h │ │ │ │ │ │ │ └── wlap_api.h │ │ │ │ │ ├── DRIVERS │ │ │ │ │ │ ├── CPU │ │ │ │ │ │ │ └── CYCLE_COUNTER │ │ │ │ │ │ │ │ └── cycle_counter.h │ │ │ │ │ │ ├── EBI │ │ │ │ │ │ │ └── SMC │ │ │ │ │ │ │ │ ├── smc.c │ │ │ │ │ │ │ │ └── smc.h │ │ │ │ │ │ ├── EIC │ │ │ │ │ │ │ ├── eic.c │ │ │ │ │ │ │ └── eic.h │ │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ │ └── flashc.h │ │ │ │ │ │ ├── GPIO │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ ├── INTC │ │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ │ └── intc.h │ │ │ │ │ │ ├── PDCA │ │ │ │ │ │ │ ├── pdca.c │ │ │ │ │ │ │ └── pdca.h │ │ │ │ │ │ ├── PM │ │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ │ ├── RTC │ │ │ │ │ │ │ ├── rtc.c │ │ │ │ │ │ │ └── rtc.h │ │ │ │ │ │ ├── SPI │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ ├── TC │ │ │ │ │ │ │ ├── tc.c │ │ │ │ │ │ │ └── tc.h │ │ │ │ │ │ └── USART │ │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ │ └── usart.h │ │ │ │ │ ├── SERVICES │ │ │ │ │ │ ├── DELAY │ │ │ │ │ │ │ ├── delay.c │ │ │ │ │ │ │ └── delay.h │ │ │ │ │ │ ├── LWIP │ │ │ │ │ │ │ ├── lwip-1.3.2 │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ │ ├── dhcp.c │ │ │ │ │ │ │ │ │ ├── dns.c │ │ │ │ │ │ │ │ │ ├── init.c │ │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ │ ├── autoip.c │ │ │ │ │ │ │ │ │ │ ├── icmp.c │ │ │ │ │ │ │ │ │ │ ├── igmp.c │ │ │ │ │ │ │ │ │ │ ├── inet.c │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.c │ │ │ │ │ │ │ │ │ │ ├── ip.c │ │ │ │ │ │ │ │ │ │ ├── ip_addr.c │ │ │ │ │ │ │ │ │ │ └── ip_frag.c │ │ │ │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ │ │ │ ├── memp.c │ │ │ │ │ │ │ │ │ ├── netif.c │ │ │ │ │ │ │ │ │ ├── pbuf.c │ │ │ │ │ │ │ │ │ ├── raw.c │ │ │ │ │ │ │ │ │ ├── stats.c │ │ │ │ │ │ │ │ │ ├── tcp.c │ │ │ │ │ │ │ │ │ ├── tcp_in.c │ │ │ │ │ │ │ │ │ ├── tcp_out.c │ │ │ │ │ │ │ │ │ └── udp.c │ │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ │ │ │ └── lwip │ │ │ │ │ │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ │ │ │ │ │ └── ip_frag.h │ │ │ │ │ │ │ │ │ ├── lwip │ │ │ │ │ │ │ │ │ │ ├── api.h │ │ │ │ │ │ │ │ │ │ ├── api_msg.h │ │ │ │ │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ │ │ │ ├── def.h │ │ │ │ │ │ │ │ │ │ ├── dhcp.h │ │ │ │ │ │ │ │ │ │ ├── dns.h │ │ │ │ │ │ │ │ │ │ ├── err.h │ │ │ │ │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ │ │ │ │ ├── mem.h │ │ │ │ │ │ │ │ │ │ ├── memp.h │ │ │ │ │ │ │ │ │ │ ├── memp_std.h │ │ │ │ │ │ │ │ │ │ ├── netbuf.h │ │ │ │ │ │ │ │ │ │ ├── netdb.h │ │ │ │ │ │ │ │ │ │ ├── netif.h │ │ │ │ │ │ │ │ │ │ ├── netifapi.h │ │ │ │ │ │ │ │ │ │ ├── opt.h │ │ │ │ │ │ │ │ │ │ ├── pbuf.h │ │ │ │ │ │ │ │ │ │ ├── raw.h │ │ │ │ │ │ │ │ │ │ ├── sio.h │ │ │ │ │ │ │ │ │ │ ├── snmp.h │ │ │ │ │ │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ │ │ │ │ │ ├── sockets.h │ │ │ │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ │ │ │ ├── sys.h │ │ │ │ │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ │ │ │ │ ├── tcpip.h │ │ │ │ │ │ │ │ │ │ └── udp.h │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ ├── etharp.h │ │ │ │ │ │ │ │ │ │ ├── loopif.h │ │ │ │ │ │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ │ │ │ │ │ └── slipif.h │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ ├── etharp.c │ │ │ │ │ │ │ │ │ └── loopif.c │ │ │ │ │ │ │ └── lwip-port-1.3.2 │ │ │ │ │ │ │ │ └── HD │ │ │ │ │ │ │ │ ├── if │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ │ │ │ ├── cc.h │ │ │ │ │ │ │ │ │ │ └── perf.h │ │ │ │ │ │ │ │ │ ├── lwipopts.h │ │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ │ └── wlif.h │ │ │ │ │ │ │ │ └── netif │ │ │ │ │ │ │ │ │ └── wlif.c │ │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ │ └── UTILS │ │ │ │ │ │ ├── DEBUG │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ │ └── print_funcs.h │ │ │ │ │ │ ├── LIBS │ │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ │ ├── stringz.h │ │ │ │ │ │ └── tpaste.h │ │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── crt0.x │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ │ └── parts.h │ │ │ │ ├── ard_spi.c │ │ │ │ ├── ard_spi.h │ │ │ │ ├── ard_tcp.c │ │ │ │ ├── ard_tcp.h │ │ │ │ ├── ard_utils.c │ │ │ │ ├── ard_utils.h │ │ │ │ ├── avr32_spi.c │ │ │ │ ├── board_init.c │ │ │ │ ├── board_init.h │ │ │ │ ├── cmd_wl.c │ │ │ │ ├── cmd_wl.h │ │ │ │ ├── console.c │ │ │ │ ├── console.h │ │ │ │ ├── debug.h │ │ │ │ ├── fw_download.h │ │ │ │ ├── fw_download_extflash.c │ │ │ │ ├── license.txt │ │ │ │ ├── lwip_setup.c │ │ │ │ ├── lwip_setup.h │ │ │ │ ├── lwipopts.h │ │ │ │ ├── main.c │ │ │ │ ├── nvram.c │ │ │ │ ├── nvram.h │ │ │ │ ├── owl_os.c │ │ │ │ ├── ping.c │ │ │ │ ├── ping.h │ │ │ │ ├── printf-stdarg.c │ │ │ │ ├── printf-stdarg.h │ │ │ │ ├── timer.c │ │ │ │ ├── timer.h │ │ │ │ ├── top_defs.h │ │ │ │ ├── trace.h │ │ │ │ ├── util.c │ │ │ │ ├── util.h │ │ │ │ ├── wifi_spi.h │ │ │ │ ├── wl_cm.c │ │ │ │ ├── wl_cm.h │ │ │ │ └── wl_definitions.h │ │ │ └── wifiHD.cproj │ │ ├── wifi_dnld │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Release │ │ │ │ └── wifi_dnld.elf │ │ │ ├── src │ │ │ │ ├── CONFIG │ │ │ │ │ ├── conf_access.h │ │ │ │ │ └── conf_at45dbx.h │ │ │ │ ├── Doc │ │ │ │ │ ├── SPB104 product brief.pdf │ │ │ │ │ └── gettingstarted.pdf │ │ │ │ ├── SOFTWARE_FRAMEWORK │ │ │ │ │ ├── ASM │ │ │ │ │ │ └── trampoline.x │ │ │ │ │ ├── BOARDS │ │ │ │ │ │ ├── ARDUINO │ │ │ │ │ │ │ ├── arduino.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── EVK1105 │ │ │ │ │ │ │ ├── evk1105.h │ │ │ │ │ │ │ ├── led.c │ │ │ │ │ │ │ └── led.h │ │ │ │ │ │ ├── board.h │ │ │ │ │ │ └── board.h.ori │ │ │ │ │ ├── COMPONENTS │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── DATA_FLASH │ │ │ │ │ │ │ └── AT45DBX │ │ │ │ │ │ │ ├── at45dbx.c │ │ │ │ │ │ │ ├── at45dbx.h │ │ │ │ │ │ │ ├── at45dbx_mem.c │ │ │ │ │ │ │ └── at45dbx_mem.h │ │ │ │ │ ├── DRIVERS │ │ │ │ │ │ ├── FLASHC │ │ │ │ │ │ │ ├── flashc.c │ │ │ │ │ │ │ └── flashc.h │ │ │ │ │ │ ├── GPIO │ │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ │ └── gpio.h │ │ │ │ │ │ ├── INTC │ │ │ │ │ │ │ ├── exception.x │ │ │ │ │ │ │ ├── intc.c │ │ │ │ │ │ │ └── intc.h │ │ │ │ │ │ ├── PM │ │ │ │ │ │ │ ├── pm.c │ │ │ │ │ │ │ ├── pm.h │ │ │ │ │ │ │ ├── pm_conf_clocks.c │ │ │ │ │ │ │ ├── power_clocks_lib.c │ │ │ │ │ │ │ └── power_clocks_lib.h │ │ │ │ │ │ ├── SPI │ │ │ │ │ │ │ ├── spi.c │ │ │ │ │ │ │ └── spi.h │ │ │ │ │ │ └── USART │ │ │ │ │ │ │ ├── usart.c │ │ │ │ │ │ │ └── usart.h │ │ │ │ │ ├── SERVICES │ │ │ │ │ │ └── MEMORY │ │ │ │ │ │ │ └── CTRL_ACCESS │ │ │ │ │ │ │ ├── ctrl_access.c │ │ │ │ │ │ │ └── ctrl_access.h │ │ │ │ │ └── UTILS │ │ │ │ │ │ ├── DEBUG │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── print_funcs.c │ │ │ │ │ │ └── print_funcs.h │ │ │ │ │ │ ├── LIBS │ │ │ │ │ │ └── NEWLIB_ADDONS │ │ │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ │ ├── nlao_cpu.h │ │ │ │ │ │ │ ├── nlao_exceptions.h │ │ │ │ │ │ │ ├── nlao_interrupts.h │ │ │ │ │ │ │ ├── nlao_io.h │ │ │ │ │ │ │ └── nlao_usart.h │ │ │ │ │ │ │ └── libnewlib_addons-at32ucr2-speed_opt.a │ │ │ │ │ │ ├── LINKER_SCRIPTS │ │ │ │ │ │ └── AT32UC3A │ │ │ │ │ │ │ ├── 1256 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ │ └── link_uc3a1256.lds │ │ │ │ │ │ │ └── 0512 │ │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── link_uc3a0512.lds │ │ │ │ │ │ ├── PREPROCESSOR │ │ │ │ │ │ ├── mrepeat.h │ │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ │ ├── stringz.h │ │ │ │ │ │ └── tpaste.h │ │ │ │ │ │ ├── STARTUP_FILES │ │ │ │ │ │ └── GCC │ │ │ │ │ │ │ └── crt0.x │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── conf_isp.h │ │ │ │ │ │ └── parts.h │ │ │ │ ├── clocks.c │ │ │ │ ├── clocks.h │ │ │ │ ├── flash_fw.c │ │ │ │ ├── license.txt │ │ │ │ ├── nor_flash.c │ │ │ │ ├── nor_flash.h │ │ │ │ ├── printf-stdarg.c │ │ │ │ ├── printf-stdarg.h │ │ │ │ ├── startup.c │ │ │ │ ├── startup.h │ │ │ │ └── wl_fw.h │ │ │ └── wifi_dnld.cproj │ │ └── wifishield.atsln │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── WiFi.cpp │ │ ├── WiFi.h │ │ ├── WiFiClient.cpp │ │ ├── WiFiClient.h │ │ ├── WiFiServer.cpp │ │ ├── WiFiServer.h │ │ ├── WiFiUdp.cpp │ │ ├── WiFiUdp.h │ │ └── utility │ │ ├── debug.h │ │ ├── server_drv.cpp │ │ ├── server_drv.h │ │ ├── spi_drv.cpp │ │ ├── spi_drv.h │ │ ├── wifi_drv.cpp │ │ ├── wifi_drv.h │ │ ├── wifi_spi.h │ │ ├── wl_definitions.h │ │ └── wl_types.h └── Wire │ ├── Wire.cpp │ ├── Wire.h │ ├── examples │ ├── SFRRanger_reader │ │ └── SFRRanger_reader.pde │ ├── digital_potentiometer │ │ └── digital_potentiometer.pde │ ├── master_reader │ │ └── master_reader.pde │ ├── master_writer │ │ └── master_writer.pde │ ├── slave_receiver │ │ └── slave_receiver.pde │ └── slave_sender │ │ └── slave_sender.pde │ ├── keywords.txt │ └── library.properties ├── platform.txt ├── programmers.txt ├── system ├── Drivers │ ├── CMSIS │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.rtf │ │ ├── DSP_Lib │ │ │ ├── Examples │ │ │ │ ├── arm_class_marks_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ │ │ └── GCC │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ └── arm_class_marks_example_f32.c │ │ │ │ ├── arm_convolution_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ └── GCC │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_dotproduct_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ │ │ └── GCC │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ └── arm_dotproduct_example_f32.c │ │ │ │ ├── arm_fft_bin_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ │ │ └── GCC │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ │ │ └── arm_fft_bin_example_f32.c │ │ │ │ ├── arm_fir_example │ │ │ │ │ └── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_fir_data.c │ │ │ │ │ │ ├── arm_fir_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_graphic_equalizer_example │ │ │ │ │ └── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_graphic_equalizer_data.c │ │ │ │ │ │ ├── arm_graphic_equalizer_example_q31.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_linear_interp_example │ │ │ │ │ └── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_linear_interp_data.c │ │ │ │ │ │ ├── arm_linear_interp_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_matrix_example │ │ │ │ │ └── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_matrix_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_signal_converge_example │ │ │ │ │ └── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ ├── arm_signal_converge_data.c │ │ │ │ │ │ ├── arm_signal_converge_example_f32.c │ │ │ │ │ │ ├── math_helper.c │ │ │ │ │ │ └── math_helper.h │ │ │ │ ├── arm_sin_cos_example │ │ │ │ │ └── ARM │ │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ │ └── arm_sin_cos_example_f32.c │ │ │ │ └── arm_variance_example │ │ │ │ │ └── ARM │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ └── arm_variance_example_f32.c │ │ │ ├── Source │ │ │ │ ├── BasicMathFunctions │ │ │ │ │ ├── arm_abs_f32.c │ │ │ │ │ ├── arm_abs_q15.c │ │ │ │ │ ├── arm_abs_q31.c │ │ │ │ │ ├── arm_abs_q7.c │ │ │ │ │ ├── arm_add_f32.c │ │ │ │ │ ├── arm_add_q15.c │ │ │ │ │ ├── arm_add_q31.c │ │ │ │ │ ├── arm_add_q7.c │ │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ │ ├── arm_mult_f32.c │ │ │ │ │ ├── arm_mult_q15.c │ │ │ │ │ ├── arm_mult_q31.c │ │ │ │ │ ├── arm_mult_q7.c │ │ │ │ │ ├── arm_negate_f32.c │ │ │ │ │ ├── arm_negate_q15.c │ │ │ │ │ ├── arm_negate_q31.c │ │ │ │ │ ├── arm_negate_q7.c │ │ │ │ │ ├── arm_offset_f32.c │ │ │ │ │ ├── arm_offset_q15.c │ │ │ │ │ ├── arm_offset_q31.c │ │ │ │ │ ├── arm_offset_q7.c │ │ │ │ │ ├── arm_scale_f32.c │ │ │ │ │ ├── arm_scale_q15.c │ │ │ │ │ ├── arm_scale_q31.c │ │ │ │ │ ├── arm_scale_q7.c │ │ │ │ │ ├── arm_shift_q15.c │ │ │ │ │ ├── arm_shift_q31.c │ │ │ │ │ ├── arm_shift_q7.c │ │ │ │ │ ├── arm_sub_f32.c │ │ │ │ │ ├── arm_sub_q15.c │ │ │ │ │ ├── arm_sub_q31.c │ │ │ │ │ └── arm_sub_q7.c │ │ │ │ ├── CommonTables │ │ │ │ │ ├── arm_common_tables.c │ │ │ │ │ └── arm_const_structs.c │ │ │ │ ├── ComplexMathFunctions │ │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ │ ├── arm_cmplx_mult_real_f32.c │ │ │ │ │ ├── arm_cmplx_mult_real_q15.c │ │ │ │ │ └── arm_cmplx_mult_real_q31.c │ │ │ │ ├── ControllerFunctions │ │ │ │ │ ├── arm_pid_init_f32.c │ │ │ │ │ ├── arm_pid_init_q15.c │ │ │ │ │ ├── arm_pid_init_q31.c │ │ │ │ │ ├── arm_pid_reset_f32.c │ │ │ │ │ ├── arm_pid_reset_q15.c │ │ │ │ │ ├── arm_pid_reset_q31.c │ │ │ │ │ ├── arm_sin_cos_f32.c │ │ │ │ │ └── arm_sin_cos_q31.c │ │ │ │ ├── FastMathFunctions │ │ │ │ │ ├── arm_cos_f32.c │ │ │ │ │ ├── arm_cos_q15.c │ │ │ │ │ ├── arm_cos_q31.c │ │ │ │ │ ├── arm_sin_f32.c │ │ │ │ │ ├── arm_sin_q15.c │ │ │ │ │ ├── arm_sin_q31.c │ │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ │ └── arm_sqrt_q31.c │ │ │ │ ├── FilteringFunctions │ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df1_q15.c │ │ │ │ │ ├── arm_biquad_cascade_df1_q31.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_f64.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ │ ├── arm_biquad_cascade_df2T_init_f64.c │ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_f32.c │ │ │ │ │ ├── arm_biquad_cascade_stereo_df2T_init_f32.c │ │ │ │ │ ├── arm_conv_f32.c │ │ │ │ │ ├── arm_conv_fast_opt_q15.c │ │ │ │ │ ├── arm_conv_fast_q15.c │ │ │ │ │ ├── arm_conv_fast_q31.c │ │ │ │ │ ├── arm_conv_opt_q15.c │ │ │ │ │ ├── arm_conv_opt_q7.c │ │ │ │ │ ├── arm_conv_partial_f32.c │ │ │ │ │ ├── arm_conv_partial_fast_opt_q15.c │ │ │ │ │ ├── arm_conv_partial_fast_q15.c │ │ │ │ │ ├── arm_conv_partial_fast_q31.c │ │ │ │ │ ├── arm_conv_partial_opt_q15.c │ │ │ │ │ ├── arm_conv_partial_opt_q7.c │ │ │ │ │ ├── arm_conv_partial_q15.c │ │ │ │ │ ├── arm_conv_partial_q31.c │ │ │ │ │ ├── arm_conv_partial_q7.c │ │ │ │ │ ├── arm_conv_q15.c │ │ │ │ │ ├── arm_conv_q31.c │ │ │ │ │ ├── arm_conv_q7.c │ │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ │ ├── arm_correlate_fast_opt_q15.c │ │ │ │ │ ├── arm_correlate_fast_q15.c │ │ │ │ │ ├── arm_correlate_fast_q31.c │ │ │ │ │ ├── arm_correlate_opt_q15.c │ │ │ │ │ ├── arm_correlate_opt_q7.c │ │ │ │ │ ├── arm_correlate_q15.c │ │ │ │ │ ├── arm_correlate_q31.c │ │ │ │ │ ├── arm_correlate_q7.c │ │ │ │ │ ├── arm_fir_decimate_f32.c │ │ │ │ │ ├── arm_fir_decimate_fast_q15.c │ │ │ │ │ ├── arm_fir_decimate_fast_q31.c │ │ │ │ │ ├── arm_fir_decimate_init_f32.c │ │ │ │ │ ├── arm_fir_decimate_init_q15.c │ │ │ │ │ ├── arm_fir_decimate_init_q31.c │ │ │ │ │ ├── arm_fir_decimate_q15.c │ │ │ │ │ ├── arm_fir_decimate_q31.c │ │ │ │ │ ├── arm_fir_f32.c │ │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ │ ├── arm_fir_init_q15.c │ │ │ │ │ ├── arm_fir_init_q31.c │ │ │ │ │ ├── arm_fir_init_q7.c │ │ │ │ │ ├── arm_fir_interpolate_f32.c │ │ │ │ │ ├── arm_fir_interpolate_init_f32.c │ │ │ │ │ ├── arm_fir_interpolate_init_q15.c │ │ │ │ │ ├── arm_fir_interpolate_init_q31.c │ │ │ │ │ ├── arm_fir_interpolate_q15.c │ │ │ │ │ ├── arm_fir_interpolate_q31.c │ │ │ │ │ ├── arm_fir_lattice_f32.c │ │ │ │ │ ├── arm_fir_lattice_init_f32.c │ │ │ │ │ ├── arm_fir_lattice_init_q15.c │ │ │ │ │ ├── arm_fir_lattice_init_q31.c │ │ │ │ │ ├── arm_fir_lattice_q15.c │ │ │ │ │ ├── arm_fir_lattice_q31.c │ │ │ │ │ ├── arm_fir_q15.c │ │ │ │ │ ├── arm_fir_q31.c │ │ │ │ │ ├── arm_fir_q7.c │ │ │ │ │ ├── arm_fir_sparse_f32.c │ │ │ │ │ ├── arm_fir_sparse_init_f32.c │ │ │ │ │ ├── arm_fir_sparse_init_q15.c │ │ │ │ │ ├── arm_fir_sparse_init_q31.c │ │ │ │ │ ├── arm_fir_sparse_init_q7.c │ │ │ │ │ ├── arm_fir_sparse_q15.c │ │ │ │ │ ├── arm_fir_sparse_q31.c │ │ │ │ │ ├── arm_fir_sparse_q7.c │ │ │ │ │ ├── arm_iir_lattice_f32.c │ │ │ │ │ ├── arm_iir_lattice_init_f32.c │ │ │ │ │ ├── arm_iir_lattice_init_q15.c │ │ │ │ │ ├── arm_iir_lattice_init_q31.c │ │ │ │ │ ├── arm_iir_lattice_q15.c │ │ │ │ │ ├── arm_iir_lattice_q31.c │ │ │ │ │ ├── arm_lms_f32.c │ │ │ │ │ ├── arm_lms_init_f32.c │ │ │ │ │ ├── arm_lms_init_q15.c │ │ │ │ │ ├── arm_lms_init_q31.c │ │ │ │ │ ├── arm_lms_norm_f32.c │ │ │ │ │ ├── arm_lms_norm_init_f32.c │ │ │ │ │ ├── arm_lms_norm_init_q15.c │ │ │ │ │ ├── arm_lms_norm_init_q31.c │ │ │ │ │ ├── arm_lms_norm_q15.c │ │ │ │ │ ├── arm_lms_norm_q31.c │ │ │ │ │ ├── arm_lms_q15.c │ │ │ │ │ └── arm_lms_q31.c │ │ │ │ ├── MatrixFunctions │ │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ │ ├── arm_mat_cmplx_mult_f32.c │ │ │ │ │ ├── arm_mat_cmplx_mult_q15.c │ │ │ │ │ ├── arm_mat_cmplx_mult_q31.c │ │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ │ ├── arm_mat_inverse_f64.c │ │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ │ └── arm_mat_trans_q31.c │ │ │ │ ├── StatisticsFunctions │ │ │ │ │ ├── arm_max_f32.c │ │ │ │ │ ├── arm_max_q15.c │ │ │ │ │ ├── arm_max_q31.c │ │ │ │ │ ├── arm_max_q7.c │ │ │ │ │ ├── arm_mean_f32.c │ │ │ │ │ ├── arm_mean_q15.c │ │ │ │ │ ├── arm_mean_q31.c │ │ │ │ │ ├── arm_mean_q7.c │ │ │ │ │ ├── arm_min_f32.c │ │ │ │ │ ├── arm_min_q15.c │ │ │ │ │ ├── arm_min_q31.c │ │ │ │ │ ├── arm_min_q7.c │ │ │ │ │ ├── arm_power_f32.c │ │ │ │ │ ├── arm_power_q15.c │ │ │ │ │ ├── arm_power_q31.c │ │ │ │ │ ├── arm_power_q7.c │ │ │ │ │ ├── arm_rms_f32.c │ │ │ │ │ ├── arm_rms_q15.c │ │ │ │ │ ├── arm_rms_q31.c │ │ │ │ │ ├── arm_std_f32.c │ │ │ │ │ ├── arm_std_q15.c │ │ │ │ │ ├── arm_std_q31.c │ │ │ │ │ ├── arm_var_f32.c │ │ │ │ │ ├── arm_var_q15.c │ │ │ │ │ └── arm_var_q31.c │ │ │ │ ├── SupportFunctions │ │ │ │ │ ├── arm_copy_f32.c │ │ │ │ │ ├── arm_copy_q15.c │ │ │ │ │ ├── arm_copy_q31.c │ │ │ │ │ ├── arm_copy_q7.c │ │ │ │ │ ├── arm_fill_f32.c │ │ │ │ │ ├── arm_fill_q15.c │ │ │ │ │ ├── arm_fill_q31.c │ │ │ │ │ ├── arm_fill_q7.c │ │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ │ ├── arm_q15_to_float.c │ │ │ │ │ ├── arm_q15_to_q31.c │ │ │ │ │ ├── arm_q15_to_q7.c │ │ │ │ │ ├── arm_q31_to_float.c │ │ │ │ │ ├── arm_q31_to_q15.c │ │ │ │ │ ├── arm_q31_to_q7.c │ │ │ │ │ ├── arm_q7_to_float.c │ │ │ │ │ ├── arm_q7_to_q15.c │ │ │ │ │ └── arm_q7_to_q31.c │ │ │ │ └── TransformFunctions │ │ │ │ │ ├── arm_bitreversal.c │ │ │ │ │ ├── arm_bitreversal2.S │ │ │ │ │ ├── arm_cfft_f32.c │ │ │ │ │ ├── arm_cfft_q15.c │ │ │ │ │ ├── arm_cfft_q31.c │ │ │ │ │ ├── arm_cfft_radix2_f32.c │ │ │ │ │ ├── arm_cfft_radix2_init_f32.c │ │ │ │ │ ├── arm_cfft_radix2_init_q15.c │ │ │ │ │ ├── arm_cfft_radix2_init_q31.c │ │ │ │ │ ├── arm_cfft_radix2_q15.c │ │ │ │ │ ├── arm_cfft_radix2_q31.c │ │ │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ │ │ ├── arm_cfft_radix8_f32.c │ │ │ │ │ ├── arm_dct4_f32.c │ │ │ │ │ ├── arm_dct4_init_f32.c │ │ │ │ │ ├── arm_dct4_init_q15.c │ │ │ │ │ ├── arm_dct4_init_q31.c │ │ │ │ │ ├── arm_dct4_q15.c │ │ │ │ │ ├── arm_dct4_q31.c │ │ │ │ │ ├── arm_rfft_f32.c │ │ │ │ │ ├── arm_rfft_fast_f32.c │ │ │ │ │ ├── arm_rfft_fast_init_f32.c │ │ │ │ │ ├── arm_rfft_init_f32.c │ │ │ │ │ ├── arm_rfft_init_q15.c │ │ │ │ │ ├── arm_rfft_init_q31.c │ │ │ │ │ ├── arm_rfft_q15.c │ │ │ │ │ └── arm_rfft_q31.c │ │ │ └── license.txt │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F4xx │ │ │ │ ├── Include │ │ │ │ ├── stm32f401xc.h │ │ │ │ ├── stm32f401xe.h │ │ │ │ ├── stm32f405xx.h │ │ │ │ ├── stm32f407xx.h │ │ │ │ ├── stm32f410cx.h │ │ │ │ ├── stm32f410rx.h │ │ │ │ ├── stm32f410tx.h │ │ │ │ ├── stm32f411xe.h │ │ │ │ ├── stm32f412cx.h │ │ │ │ ├── stm32f412rx.h │ │ │ │ ├── stm32f412vx.h │ │ │ │ ├── stm32f412zx.h │ │ │ │ ├── stm32f413xx.h │ │ │ │ ├── stm32f415xx.h │ │ │ │ ├── stm32f417xx.h │ │ │ │ ├── stm32f423xx.h │ │ │ │ ├── stm32f427xx.h │ │ │ │ ├── stm32f429xx.h │ │ │ │ ├── stm32f437xx.h │ │ │ │ ├── stm32f439xx.h │ │ │ │ ├── stm32f446xx.h │ │ │ │ ├── stm32f469xx.h │ │ │ │ ├── stm32f479xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ └── system_stm32f4xx.h │ │ │ │ ├── Release_Notes.html │ │ │ │ └── Source │ │ │ │ └── Templates │ │ │ │ ├── arm │ │ │ │ ├── startup_stm32f401xc.s │ │ │ │ ├── startup_stm32f401xe.s │ │ │ │ ├── startup_stm32f405xx.s │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ ├── startup_stm32f410cx.s │ │ │ │ ├── startup_stm32f410rx.s │ │ │ │ ├── startup_stm32f410tx.s │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ ├── startup_stm32f412cx.s │ │ │ │ ├── startup_stm32f412rx.s │ │ │ │ ├── startup_stm32f412vx.s │ │ │ │ ├── startup_stm32f412zx.s │ │ │ │ ├── startup_stm32f413xx.s │ │ │ │ ├── startup_stm32f415xx.s │ │ │ │ ├── startup_stm32f417xx.s │ │ │ │ ├── startup_stm32f423xx.s │ │ │ │ ├── startup_stm32f427xx.s │ │ │ │ ├── startup_stm32f429xx.s │ │ │ │ ├── startup_stm32f437xx.s │ │ │ │ ├── startup_stm32f439xx.s │ │ │ │ ├── startup_stm32f446xx.s │ │ │ │ ├── startup_stm32f469xx.s │ │ │ │ └── startup_stm32f479xx.s │ │ │ │ ├── gcc │ │ │ │ ├── startup_stm32f401xc.s │ │ │ │ ├── startup_stm32f401xe.s │ │ │ │ ├── startup_stm32f405xx.s │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ ├── startup_stm32f410cx.s │ │ │ │ ├── startup_stm32f410rx.s │ │ │ │ ├── startup_stm32f410tx.s │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ ├── startup_stm32f412cx.s │ │ │ │ ├── startup_stm32f412rx.s │ │ │ │ ├── startup_stm32f412vx.s │ │ │ │ ├── startup_stm32f412zx.s │ │ │ │ ├── startup_stm32f413xx.s │ │ │ │ ├── startup_stm32f415xx.s │ │ │ │ ├── startup_stm32f417xx.s │ │ │ │ ├── startup_stm32f423xx.s │ │ │ │ ├── startup_stm32f427xx.s │ │ │ │ ├── startup_stm32f429xx.s │ │ │ │ ├── startup_stm32f437xx.s │ │ │ │ ├── startup_stm32f439xx.s │ │ │ │ ├── startup_stm32f446xx.s │ │ │ │ ├── startup_stm32f469xx.s │ │ │ │ └── startup_stm32f479xx.s │ │ │ │ ├── iar │ │ │ │ ├── linker │ │ │ │ │ ├── stm32f401xc_flash.icf │ │ │ │ │ ├── stm32f401xc_sram.icf │ │ │ │ │ ├── stm32f401xe_flash.icf │ │ │ │ │ ├── stm32f401xe_sram.icf │ │ │ │ │ ├── stm32f405xx_flash.icf │ │ │ │ │ ├── stm32f405xx_sram.icf │ │ │ │ │ ├── stm32f407xx_flash.icf │ │ │ │ │ ├── stm32f407xx_sram.icf │ │ │ │ │ ├── stm32f410cx_flash.icf │ │ │ │ │ ├── stm32f410cx_sram.icf │ │ │ │ │ ├── stm32f410rx_flash.icf │ │ │ │ │ ├── stm32f410rx_sram.icf │ │ │ │ │ ├── stm32f410tx_flash.icf │ │ │ │ │ ├── stm32f410tx_sram.icf │ │ │ │ │ ├── stm32f411xe_flash.icf │ │ │ │ │ ├── stm32f411xe_sram.icf │ │ │ │ │ ├── stm32f412cx_flash.icf │ │ │ │ │ ├── stm32f412cx_sram.icf │ │ │ │ │ ├── stm32f412rx_flash.icf │ │ │ │ │ ├── stm32f412rx_sram.icf │ │ │ │ │ ├── stm32f412vx_flash.icf │ │ │ │ │ ├── stm32f412vx_sram.icf │ │ │ │ │ ├── stm32f412zx_flash.icf │ │ │ │ │ ├── stm32f412zx_sram.icf │ │ │ │ │ ├── stm32f413xx_flash.icf │ │ │ │ │ ├── stm32f413xx_sram.icf │ │ │ │ │ ├── stm32f415xx_flash.icf │ │ │ │ │ ├── stm32f415xx_sram.icf │ │ │ │ │ ├── stm32f417xx_flash.icf │ │ │ │ │ ├── stm32f417xx_sram.icf │ │ │ │ │ ├── stm32f423xx_flash.icf │ │ │ │ │ ├── stm32f423xx_sram.icf │ │ │ │ │ ├── stm32f427xx_flash.icf │ │ │ │ │ ├── stm32f427xx_sram.icf │ │ │ │ │ ├── stm32f429xx_flash.icf │ │ │ │ │ ├── stm32f429xx_sram.icf │ │ │ │ │ ├── stm32f437xx_flash.icf │ │ │ │ │ ├── stm32f437xx_sram.icf │ │ │ │ │ ├── stm32f439xx_flash.icf │ │ │ │ │ ├── stm32f439xx_sram.icf │ │ │ │ │ ├── stm32f446xx_flash.icf │ │ │ │ │ ├── stm32f446xx_sram.icf │ │ │ │ │ ├── stm32f469xx_flash.icf │ │ │ │ │ ├── stm32f469xx_sram.icf │ │ │ │ │ ├── stm32f479xx_flash.icf │ │ │ │ │ └── stm32f479xx_sram.icf │ │ │ │ ├── startup_stm32f401xc.s │ │ │ │ ├── startup_stm32f401xe.s │ │ │ │ ├── startup_stm32f405xx.s │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ ├── startup_stm32f410cx.s │ │ │ │ ├── startup_stm32f410rx.s │ │ │ │ ├── startup_stm32f410tx.s │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ ├── startup_stm32f412cx.s │ │ │ │ ├── startup_stm32f412rx.s │ │ │ │ ├── startup_stm32f412vx.s │ │ │ │ ├── startup_stm32f412zx.s │ │ │ │ ├── startup_stm32f413xx.s │ │ │ │ ├── startup_stm32f415xx.s │ │ │ │ ├── startup_stm32f417xx.s │ │ │ │ ├── startup_stm32f423xx.s │ │ │ │ ├── startup_stm32f427xx.s │ │ │ │ ├── startup_stm32f429xx.s │ │ │ │ ├── startup_stm32f437xx.s │ │ │ │ ├── startup_stm32f439xx.s │ │ │ │ ├── startup_stm32f446xx.s │ │ │ │ ├── startup_stm32f469xx.s │ │ │ │ └── startup_stm32f479xx.s │ │ │ │ └── system_stm32f4xx.c │ │ ├── Documentation │ │ │ ├── Core │ │ │ │ └── html │ │ │ │ │ ├── CMSIS_CORE_Files.png │ │ │ │ │ ├── CMSIS_CORE_Files_user.png │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── _c_o_r_e__m_i_s_r_a__exceptions_pg.html │ │ │ │ │ ├── _reg_map_pg.html │ │ │ │ │ ├── _templates_pg.html │ │ │ │ │ ├── _templates_pg.js │ │ │ │ │ ├── _using__a_r_m_pg.html │ │ │ │ │ ├── _using__c_m_s_i_s.html │ │ │ │ │ ├── _using__v_t_o_r_pg.html │ │ │ │ │ ├── _using_pg.html │ │ │ │ │ ├── _using_pg.js │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated.js │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── check.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── core_revision_history.html │ │ │ │ │ ├── device_h_pg.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ ├── group___core___register__gr.html │ │ │ │ │ ├── group___core___register__gr.js │ │ │ │ │ ├── group___dcache__functions__m7.html │ │ │ │ │ ├── group___dcache__functions__m7.js │ │ │ │ │ ├── group___i_t_m___debug__gr.html │ │ │ │ │ ├── group___i_t_m___debug__gr.js │ │ │ │ │ ├── group___icache__functions__m7.html │ │ │ │ │ ├── group___icache__functions__m7.js │ │ │ │ │ ├── group___n_v_i_c__gr.html │ │ │ │ │ ├── group___n_v_i_c__gr.js │ │ │ │ │ ├── group___sys_tick__gr.html │ │ │ │ │ ├── group___sys_tick__gr.js │ │ │ │ │ ├── group__cache__functions__m7.html │ │ │ │ │ ├── group__cache__functions__m7.js │ │ │ │ │ ├── group__fpu__functions__m7.html │ │ │ │ │ ├── group__fpu__functions__m7.js │ │ │ │ │ ├── group__intrinsic___c_p_u__gr.html │ │ │ │ │ ├── group__intrinsic___c_p_u__gr.js │ │ │ │ │ ├── group__intrinsic___s_i_m_d__gr.html │ │ │ │ │ ├── group__intrinsic___s_i_m_d__gr.js │ │ │ │ │ ├── group__peripheral__gr.html │ │ │ │ │ ├── group__peripheral__gr.js │ │ │ │ │ ├── group__system__init__gr.html │ │ │ │ │ ├── group__system__init__gr.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── modules.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── navtreeindex1.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search │ │ │ │ │ ├── all_5f.html │ │ │ │ │ ├── all_5f.js │ │ │ │ │ ├── all_61.html │ │ │ │ │ ├── all_61.js │ │ │ │ │ ├── all_62.html │ │ │ │ │ ├── all_62.js │ │ │ │ │ ├── all_63.html │ │ │ │ │ ├── all_63.js │ │ │ │ │ ├── all_64.html │ │ │ │ │ ├── all_64.js │ │ │ │ │ ├── all_65.html │ │ │ │ │ ├── all_65.js │ │ │ │ │ ├── all_66.html │ │ │ │ │ ├── all_66.js │ │ │ │ │ ├── all_68.html │ │ │ │ │ ├── all_68.js │ │ │ │ │ ├── all_69.html │ │ │ │ │ ├── all_69.js │ │ │ │ │ ├── all_6c.html │ │ │ │ │ ├── all_6c.js │ │ │ │ │ ├── all_6d.html │ │ │ │ │ ├── all_6d.js │ │ │ │ │ ├── all_6e.html │ │ │ │ │ ├── all_6e.js │ │ │ │ │ ├── all_6f.html │ │ │ │ │ ├── all_6f.js │ │ │ │ │ ├── all_70.html │ │ │ │ │ ├── all_70.js │ │ │ │ │ ├── all_71.html │ │ │ │ │ ├── all_71.js │ │ │ │ │ ├── all_72.html │ │ │ │ │ ├── all_72.js │ │ │ │ │ ├── all_73.html │ │ │ │ │ ├── all_73.js │ │ │ │ │ ├── all_74.html │ │ │ │ │ ├── all_74.js │ │ │ │ │ ├── all_75.html │ │ │ │ │ ├── all_75.js │ │ │ │ │ ├── all_76.html │ │ │ │ │ ├── all_76.js │ │ │ │ │ ├── all_77.html │ │ │ │ │ ├── all_77.js │ │ │ │ │ ├── all_78.html │ │ │ │ │ ├── all_78.js │ │ │ │ │ ├── all_7a.html │ │ │ │ │ ├── all_7a.js │ │ │ │ │ ├── classes_61.html │ │ │ │ │ ├── classes_61.js │ │ │ │ │ ├── classes_63.html │ │ │ │ │ ├── classes_63.js │ │ │ │ │ ├── classes_64.html │ │ │ │ │ ├── classes_64.js │ │ │ │ │ ├── classes_66.html │ │ │ │ │ ├── classes_66.js │ │ │ │ │ ├── classes_69.html │ │ │ │ │ ├── classes_69.js │ │ │ │ │ ├── classes_6d.html │ │ │ │ │ ├── classes_6d.js │ │ │ │ │ ├── classes_6e.html │ │ │ │ │ ├── classes_6e.js │ │ │ │ │ ├── classes_73.html │ │ │ │ │ ├── classes_73.js │ │ │ │ │ ├── classes_74.html │ │ │ │ │ ├── classes_74.js │ │ │ │ │ ├── classes_78.html │ │ │ │ │ ├── classes_78.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── enums_69.html │ │ │ │ │ ├── enums_69.js │ │ │ │ │ ├── enumvalues_62.html │ │ │ │ │ ├── enumvalues_62.js │ │ │ │ │ ├── enumvalues_64.html │ │ │ │ │ ├── enumvalues_64.js │ │ │ │ │ ├── enumvalues_68.html │ │ │ │ │ ├── enumvalues_68.js │ │ │ │ │ ├── enumvalues_6d.html │ │ │ │ │ ├── enumvalues_6d.js │ │ │ │ │ ├── enumvalues_6e.html │ │ │ │ │ ├── enumvalues_6e.js │ │ │ │ │ ├── enumvalues_70.html │ │ │ │ │ ├── enumvalues_70.js │ │ │ │ │ ├── enumvalues_73.html │ │ │ │ │ ├── enumvalues_73.js │ │ │ │ │ ├── enumvalues_75.html │ │ │ │ │ ├── enumvalues_75.js │ │ │ │ │ ├── enumvalues_77.html │ │ │ │ │ ├── enumvalues_77.js │ │ │ │ │ ├── files_63.html │ │ │ │ │ ├── files_63.js │ │ │ │ │ ├── files_6d.html │ │ │ │ │ ├── files_6d.js │ │ │ │ │ ├── files_6f.html │ │ │ │ │ ├── files_6f.js │ │ │ │ │ ├── files_72.html │ │ │ │ │ ├── files_72.js │ │ │ │ │ ├── files_74.html │ │ │ │ │ ├── files_74.js │ │ │ │ │ ├── files_75.html │ │ │ │ │ ├── files_75.js │ │ │ │ │ ├── functions_5f.html │ │ │ │ │ ├── functions_5f.js │ │ │ │ │ ├── functions_69.html │ │ │ │ │ ├── functions_69.js │ │ │ │ │ ├── functions_6e.html │ │ │ │ │ ├── functions_6e.js │ │ │ │ │ ├── functions_73.html │ │ │ │ │ ├── functions_73.js │ │ │ │ │ ├── groups_63.html │ │ │ │ │ ├── groups_63.js │ │ │ │ │ ├── groups_64.html │ │ │ │ │ ├── groups_64.js │ │ │ │ │ ├── groups_66.html │ │ │ │ │ ├── groups_66.js │ │ │ │ │ ├── groups_69.html │ │ │ │ │ ├── groups_69.js │ │ │ │ │ ├── groups_70.html │ │ │ │ │ ├── groups_70.js │ │ │ │ │ ├── groups_73.html │ │ │ │ │ ├── groups_73.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── pages_62.html │ │ │ │ │ ├── pages_62.js │ │ │ │ │ ├── pages_64.html │ │ │ │ │ ├── pages_64.js │ │ │ │ │ ├── pages_6d.html │ │ │ │ │ ├── pages_6d.js │ │ │ │ │ ├── pages_6f.html │ │ │ │ │ ├── pages_6f.js │ │ │ │ │ ├── pages_72.html │ │ │ │ │ ├── pages_72.js │ │ │ │ │ ├── pages_73.html │ │ │ │ │ ├── pages_73.js │ │ │ │ │ ├── pages_74.html │ │ │ │ │ ├── pages_74.js │ │ │ │ │ ├── pages_75.html │ │ │ │ │ ├── pages_75.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── variables_5f.html │ │ │ │ │ ├── variables_5f.js │ │ │ │ │ ├── variables_61.html │ │ │ │ │ ├── variables_61.js │ │ │ │ │ ├── variables_62.html │ │ │ │ │ ├── variables_62.js │ │ │ │ │ ├── variables_63.html │ │ │ │ │ ├── variables_63.js │ │ │ │ │ ├── variables_64.html │ │ │ │ │ ├── variables_64.js │ │ │ │ │ ├── variables_65.html │ │ │ │ │ ├── variables_65.js │ │ │ │ │ ├── variables_66.html │ │ │ │ │ ├── variables_66.js │ │ │ │ │ ├── variables_68.html │ │ │ │ │ ├── variables_68.js │ │ │ │ │ ├── variables_69.html │ │ │ │ │ ├── variables_69.js │ │ │ │ │ ├── variables_6c.html │ │ │ │ │ ├── variables_6c.js │ │ │ │ │ ├── variables_6d.html │ │ │ │ │ ├── variables_6d.js │ │ │ │ │ ├── variables_6e.html │ │ │ │ │ ├── variables_6e.js │ │ │ │ │ ├── variables_70.html │ │ │ │ │ ├── variables_70.js │ │ │ │ │ ├── variables_71.html │ │ │ │ │ ├── variables_71.js │ │ │ │ │ ├── variables_72.html │ │ │ │ │ ├── variables_72.js │ │ │ │ │ ├── variables_73.html │ │ │ │ │ ├── variables_73.js │ │ │ │ │ ├── variables_74.html │ │ │ │ │ ├── variables_74.js │ │ │ │ │ ├── variables_75.html │ │ │ │ │ ├── variables_75.js │ │ │ │ │ ├── variables_76.html │ │ │ │ │ ├── variables_76.js │ │ │ │ │ ├── variables_77.html │ │ │ │ │ ├── variables_77.js │ │ │ │ │ ├── variables_7a.html │ │ │ │ │ └── variables_7a.js │ │ │ │ │ ├── startup_s_pg.html │ │ │ │ │ ├── struct_core_debug___type.html │ │ │ │ │ ├── struct_core_debug___type.js │ │ │ │ │ ├── struct_d_w_t___type.html │ │ │ │ │ ├── struct_d_w_t___type.js │ │ │ │ │ ├── struct_f_p_u___type.html │ │ │ │ │ ├── struct_f_p_u___type.js │ │ │ │ │ ├── struct_i_t_m___type.html │ │ │ │ │ ├── struct_i_t_m___type.js │ │ │ │ │ ├── struct_m_p_u___type.html │ │ │ │ │ ├── struct_m_p_u___type.js │ │ │ │ │ ├── struct_n_v_i_c___type.html │ │ │ │ │ ├── struct_n_v_i_c___type.js │ │ │ │ │ ├── struct_s_c_b___type.html │ │ │ │ │ ├── struct_s_c_b___type.js │ │ │ │ │ ├── struct_s_cn_s_c_b___type.html │ │ │ │ │ ├── struct_s_cn_s_c_b___type.js │ │ │ │ │ ├── struct_sys_tick___type.html │ │ │ │ │ ├── struct_sys_tick___type.js │ │ │ │ │ ├── struct_t_p_i___type.html │ │ │ │ │ ├── struct_t_p_i___type.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── system_c_pg.html │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── union_a_p_s_r___type.html │ │ │ │ │ ├── union_a_p_s_r___type.js │ │ │ │ │ ├── union_c_o_n_t_r_o_l___type.html │ │ │ │ │ ├── union_c_o_n_t_r_o_l___type.js │ │ │ │ │ ├── union_i_p_s_r___type.html │ │ │ │ │ ├── union_i_p_s_r___type.js │ │ │ │ │ ├── unionx_p_s_r___type.html │ │ │ │ │ └── unionx_p_s_r___type.js │ │ │ ├── DSP │ │ │ │ └── html │ │ │ │ │ ├── Biquad.gif │ │ │ │ │ ├── BiquadCascade.gif │ │ │ │ │ ├── BiquadDF2Transposed.gif │ │ │ │ │ ├── BiquadPostshift.gif │ │ │ │ │ ├── CFFT.gif │ │ │ │ │ ├── CFFTQ15.gif │ │ │ │ │ ├── CFFTQ31.gif │ │ │ │ │ ├── CIFFTQ15.gif │ │ │ │ │ ├── CIFFTQ31.gif │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── Convolution.gif │ │ │ │ │ ├── ConvolutionEquation.gif │ │ │ │ │ ├── CorrelateEquation.gif │ │ │ │ │ ├── DCT4.gif │ │ │ │ │ ├── DCT4Equation.gif │ │ │ │ │ ├── FFTBin.gif │ │ │ │ │ ├── FFTBinInput.gif │ │ │ │ │ ├── FFTBinOutput.gif │ │ │ │ │ ├── FIR.gif │ │ │ │ │ ├── FIRDecimator.gif │ │ │ │ │ ├── FIRInterpolator.gif │ │ │ │ │ ├── FIRLPF_coeffs.gif │ │ │ │ │ ├── FIRLPF_input.gif │ │ │ │ │ ├── FIRLPF_output.gif │ │ │ │ │ ├── FIRLPF_response.gif │ │ │ │ │ ├── FIRLPF_signalflow.gif │ │ │ │ │ ├── FIRLattice.gif │ │ │ │ │ ├── FIRSparse.gif │ │ │ │ │ ├── GEQ_allbandresponse.gif │ │ │ │ │ ├── GEQ_bandresponse.gif │ │ │ │ │ ├── GEQ_inputchirp.gif │ │ │ │ │ ├── GEQ_outputchirp.gif │ │ │ │ │ ├── GEQ_signalflow.gif │ │ │ │ │ ├── IDCT4Equation.gif │ │ │ │ │ ├── IIRLattice.gif │ │ │ │ │ ├── LMS.gif │ │ │ │ │ ├── LinearInterp.gif │ │ │ │ │ ├── MatrixAddition.gif │ │ │ │ │ ├── MatrixInverse.gif │ │ │ │ │ ├── MatrixMultiplication.gif │ │ │ │ │ ├── MatrixScale.gif │ │ │ │ │ ├── MatrixSubtraction.gif │ │ │ │ │ ├── MatrixTranspose.gif │ │ │ │ │ ├── PID.gif │ │ │ │ │ ├── RFFT.gif │ │ │ │ │ ├── RFFTQ15.gif │ │ │ │ │ ├── RFFTQ31.gif │ │ │ │ │ ├── RIFFT.gif │ │ │ │ │ ├── RIFFTQ15.gif │ │ │ │ │ ├── RIFFTQ31.gif │ │ │ │ │ ├── SignalFlow.gif │ │ │ │ │ ├── Variance.gif │ │ │ │ │ ├── _a_r_m_2arm__class__marks__example__f32_8c.html │ │ │ │ │ ├── _a_r_m_2arm__convolution__example__f32_8c.html │ │ │ │ │ ├── _a_r_m_2arm__dotproduct__example__f32_8c.html │ │ │ │ │ ├── _a_r_m_2arm__fft__bin__data_8c.html │ │ │ │ │ ├── _a_r_m_2arm__fft__bin__example__f32_8c.html │ │ │ │ │ ├── _change_01_log_8txt.html │ │ │ │ │ ├── _change_log_pg.html │ │ │ │ │ ├── _g_c_c_2arm__class__marks__example__f32_8c.html │ │ │ │ │ ├── _g_c_c_2arm__convolution__example__f32_8c.html │ │ │ │ │ ├── _g_c_c_2arm__dotproduct__example__f32_8c.html │ │ │ │ │ ├── _g_c_c_2arm__fft__bin__data_8c.html │ │ │ │ │ ├── _g_c_c_2arm__fft__bin__example__f32_8c.html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated.js │ │ │ │ │ ├── arm__abs__f32_8c.html │ │ │ │ │ ├── arm__abs__q15_8c.html │ │ │ │ │ ├── arm__abs__q31_8c.html │ │ │ │ │ ├── arm__abs__q7_8c.html │ │ │ │ │ ├── arm__add__f32_8c.html │ │ │ │ │ ├── arm__add__q15_8c.html │ │ │ │ │ ├── arm__add__q31_8c.html │ │ │ │ │ ├── arm__add__q7_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__32x64__init__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__32x64__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__fast__q15_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__fast__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__init__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__init__q15_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__init__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__q15_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df1__q31_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2_t__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2_t__f64_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2_t__init__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__df2_t__init__f64_8c.html │ │ │ │ │ ├── arm__biquad__cascade__stereo__df2_t__f32_8c.html │ │ │ │ │ ├── arm__biquad__cascade__stereo__df2_t__init__f32_8c.html │ │ │ │ │ ├── arm__bitreversal_8c.html │ │ │ │ │ ├── arm__cfft__f32_8c.html │ │ │ │ │ ├── arm__cfft__q15_8c.html │ │ │ │ │ ├── arm__cfft__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix2__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix2__init__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix2__init__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix2__init__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix2__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix2__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix4__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix4__init__f32_8c.html │ │ │ │ │ ├── arm__cfft__radix4__init__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix4__init__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix4__q15_8c.html │ │ │ │ │ ├── arm__cfft__radix4__q31_8c.html │ │ │ │ │ ├── arm__cfft__radix8__f32_8c.html │ │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__class__marks__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__class__marks__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__cmplx__conj__f32_8c.html │ │ │ │ │ ├── arm__cmplx__conj__q15_8c.html │ │ │ │ │ ├── arm__cmplx__conj__q31_8c.html │ │ │ │ │ ├── arm__cmplx__dot__prod__f32_8c.html │ │ │ │ │ ├── arm__cmplx__dot__prod__q15_8c.html │ │ │ │ │ ├── arm__cmplx__dot__prod__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mag__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mag__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mag__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mag__squared__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mult__cmplx__q31_8c.html │ │ │ │ │ ├── arm__cmplx__mult__real__f32_8c.html │ │ │ │ │ ├── arm__cmplx__mult__real__q15_8c.html │ │ │ │ │ ├── arm__cmplx__mult__real__q31_8c.html │ │ │ │ │ ├── arm__common__tables_8c.html │ │ │ │ │ ├── arm__common__tables_8h.html │ │ │ │ │ ├── arm__const__structs_8c.html │ │ │ │ │ ├── arm__const__structs_8h.html │ │ │ │ │ ├── arm__conv__f32_8c.html │ │ │ │ │ ├── arm__conv__fast__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__fast__q15_8c.html │ │ │ │ │ ├── arm__conv__fast__q31_8c.html │ │ │ │ │ ├── arm__conv__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__opt__q7_8c.html │ │ │ │ │ ├── arm__conv__partial__f32_8c.html │ │ │ │ │ ├── arm__conv__partial__fast__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__fast__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__fast__q31_8c.html │ │ │ │ │ ├── arm__conv__partial__opt__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__opt__q7_8c.html │ │ │ │ │ ├── arm__conv__partial__q15_8c.html │ │ │ │ │ ├── arm__conv__partial__q31_8c.html │ │ │ │ │ ├── arm__conv__partial__q7_8c.html │ │ │ │ │ ├── arm__conv__q15_8c.html │ │ │ │ │ ├── arm__conv__q31_8c.html │ │ │ │ │ ├── arm__conv__q7_8c.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2math__helper_8c.html │ │ │ │ │ ├── arm__convolution__example_2_a_r_m_2math__helper_8h.html │ │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__convolution__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__convolution__example_2_g_c_c_2math__helper_8c.html │ │ │ │ │ ├── arm__convolution__example_2_g_c_c_2math__helper_8h.html │ │ │ │ │ ├── arm__copy__f32_8c.html │ │ │ │ │ ├── arm__copy__q15_8c.html │ │ │ │ │ ├── arm__copy__q31_8c.html │ │ │ │ │ ├── arm__copy__q7_8c.html │ │ │ │ │ ├── arm__correlate__f32_8c.html │ │ │ │ │ ├── arm__correlate__fast__opt__q15_8c.html │ │ │ │ │ ├── arm__correlate__fast__q15_8c.html │ │ │ │ │ ├── arm__correlate__fast__q31_8c.html │ │ │ │ │ ├── arm__correlate__opt__q15_8c.html │ │ │ │ │ ├── arm__correlate__opt__q7_8c.html │ │ │ │ │ ├── arm__correlate__q15_8c.html │ │ │ │ │ ├── arm__correlate__q31_8c.html │ │ │ │ │ ├── arm__correlate__q7_8c.html │ │ │ │ │ ├── arm__cos__f32_8c.html │ │ │ │ │ ├── arm__cos__q15_8c.html │ │ │ │ │ ├── arm__cos__q31_8c.html │ │ │ │ │ ├── arm__dct4__f32_8c.html │ │ │ │ │ ├── arm__dct4__init__f32_8c.html │ │ │ │ │ ├── arm__dct4__init__q15_8c.html │ │ │ │ │ ├── arm__dct4__init__q31_8c.html │ │ │ │ │ ├── arm__dct4__q15_8c.html │ │ │ │ │ ├── arm__dct4__q31_8c.html │ │ │ │ │ ├── arm__dot__prod__f32_8c.html │ │ │ │ │ ├── arm__dot__prod__q15_8c.html │ │ │ │ │ ├── arm__dot__prod__q31_8c.html │ │ │ │ │ ├── arm__dot__prod__q7_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__dotproduct__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_abstract_8txt.html │ │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_startup_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_startup_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__fft__bin__example_2_g_c_c_2_startup_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__fill__f32_8c.html │ │ │ │ │ ├── arm__fill__q15_8c.html │ │ │ │ │ ├── arm__fill__q31_8c.html │ │ │ │ │ ├── arm__fill__q7_8c.html │ │ │ │ │ ├── arm__fir__data_8c.html │ │ │ │ │ ├── arm__fir__decimate__f32_8c.html │ │ │ │ │ ├── arm__fir__decimate__fast__q15_8c.html │ │ │ │ │ ├── arm__fir__decimate__fast__q31_8c.html │ │ │ │ │ ├── arm__fir__decimate__init__f32_8c.html │ │ │ │ │ ├── arm__fir__decimate__init__q15_8c.html │ │ │ │ │ ├── arm__fir__decimate__init__q31_8c.html │ │ │ │ │ ├── arm__fir__decimate__q15_8c.html │ │ │ │ │ ├── arm__fir__decimate__q31_8c.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2math__helper_8c.html │ │ │ │ │ ├── arm__fir__example_2_a_r_m_2math__helper_8h.html │ │ │ │ │ ├── arm__fir__example__f32_8c.html │ │ │ │ │ ├── arm__fir__f32_8c.html │ │ │ │ │ ├── arm__fir__fast__q15_8c.html │ │ │ │ │ ├── arm__fir__fast__q31_8c.html │ │ │ │ │ ├── arm__fir__init__f32_8c.html │ │ │ │ │ ├── arm__fir__init__q15_8c.html │ │ │ │ │ ├── arm__fir__init__q31_8c.html │ │ │ │ │ ├── arm__fir__init__q7_8c.html │ │ │ │ │ ├── arm__fir__interpolate__f32_8c.html │ │ │ │ │ ├── arm__fir__interpolate__init__f32_8c.html │ │ │ │ │ ├── arm__fir__interpolate__init__q15_8c.html │ │ │ │ │ ├── arm__fir__interpolate__init__q31_8c.html │ │ │ │ │ ├── arm__fir__interpolate__q15_8c.html │ │ │ │ │ ├── arm__fir__interpolate__q31_8c.html │ │ │ │ │ ├── arm__fir__lattice__f32_8c.html │ │ │ │ │ ├── arm__fir__lattice__init__f32_8c.html │ │ │ │ │ ├── arm__fir__lattice__init__q15_8c.html │ │ │ │ │ ├── arm__fir__lattice__init__q31_8c.html │ │ │ │ │ ├── arm__fir__lattice__q15_8c.html │ │ │ │ │ ├── arm__fir__lattice__q31_8c.html │ │ │ │ │ ├── arm__fir__q15_8c.html │ │ │ │ │ ├── arm__fir__q31_8c.html │ │ │ │ │ ├── arm__fir__q7_8c.html │ │ │ │ │ ├── arm__fir__sparse__f32_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__f32_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__q15_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__q31_8c.html │ │ │ │ │ ├── arm__fir__sparse__init__q7_8c.html │ │ │ │ │ ├── arm__fir__sparse__q15_8c.html │ │ │ │ │ ├── arm__fir__sparse__q31_8c.html │ │ │ │ │ ├── arm__fir__sparse__q7_8c.html │ │ │ │ │ ├── arm__float__to__q15_8c.html │ │ │ │ │ ├── arm__float__to__q31_8c.html │ │ │ │ │ ├── arm__float__to__q7_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__data_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2math__helper_8c.html │ │ │ │ │ ├── arm__graphic__equalizer__example_2_a_r_m_2math__helper_8h.html │ │ │ │ │ ├── arm__graphic__equalizer__example__q31_8c.html │ │ │ │ │ ├── arm__iir__lattice__f32_8c.html │ │ │ │ │ ├── arm__iir__lattice__init__f32_8c.html │ │ │ │ │ ├── arm__iir__lattice__init__q15_8c.html │ │ │ │ │ ├── arm__iir__lattice__init__q31_8c.html │ │ │ │ │ ├── arm__iir__lattice__q15_8c.html │ │ │ │ │ ├── arm__iir__lattice__q31_8c.html │ │ │ │ │ ├── arm__linear__interp__data_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2math__helper_8c.html │ │ │ │ │ ├── arm__linear__interp__example_2_a_r_m_2math__helper_8h.html │ │ │ │ │ ├── arm__linear__interp__example__f32_8c.html │ │ │ │ │ ├── arm__lms__f32_8c.html │ │ │ │ │ ├── arm__lms__init__f32_8c.html │ │ │ │ │ ├── arm__lms__init__q15_8c.html │ │ │ │ │ ├── arm__lms__init__q31_8c.html │ │ │ │ │ ├── arm__lms__norm__f32_8c.html │ │ │ │ │ ├── arm__lms__norm__init__f32_8c.html │ │ │ │ │ ├── arm__lms__norm__init__q15_8c.html │ │ │ │ │ ├── arm__lms__norm__init__q31_8c.html │ │ │ │ │ ├── arm__lms__norm__q15_8c.html │ │ │ │ │ ├── arm__lms__norm__q31_8c.html │ │ │ │ │ ├── arm__lms__q15_8c.html │ │ │ │ │ ├── arm__lms__q31_8c.html │ │ │ │ │ ├── arm__mat__add__f32_8c.html │ │ │ │ │ ├── arm__mat__add__q15_8c.html │ │ │ │ │ ├── arm__mat__add__q31_8c.html │ │ │ │ │ ├── arm__mat__cmplx__mult__f32_8c.html │ │ │ │ │ ├── arm__mat__cmplx__mult__q15_8c.html │ │ │ │ │ ├── arm__mat__cmplx__mult__q31_8c.html │ │ │ │ │ ├── arm__mat__init__f32_8c.html │ │ │ │ │ ├── arm__mat__init__q15_8c.html │ │ │ │ │ ├── arm__mat__init__q31_8c.html │ │ │ │ │ ├── arm__mat__inverse__f32_8c.html │ │ │ │ │ ├── arm__mat__inverse__f64_8c.html │ │ │ │ │ ├── arm__mat__mult__f32_8c.html │ │ │ │ │ ├── arm__mat__mult__fast__q15_8c.html │ │ │ │ │ ├── arm__mat__mult__fast__q31_8c.html │ │ │ │ │ ├── arm__mat__mult__q15_8c.html │ │ │ │ │ ├── arm__mat__mult__q31_8c.html │ │ │ │ │ ├── arm__mat__scale__f32_8c.html │ │ │ │ │ ├── arm__mat__scale__q15_8c.html │ │ │ │ │ ├── arm__mat__scale__q31_8c.html │ │ │ │ │ ├── arm__mat__sub__f32_8c.html │ │ │ │ │ ├── arm__mat__sub__q15_8c.html │ │ │ │ │ ├── arm__mat__sub__q31_8c.html │ │ │ │ │ ├── arm__mat__trans__f32_8c.html │ │ │ │ │ ├── arm__mat__trans__q15_8c.html │ │ │ │ │ ├── arm__mat__trans__q31_8c.html │ │ │ │ │ ├── arm__math_8h.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2math__helper_8c.html │ │ │ │ │ ├── arm__matrix__example_2_a_r_m_2math__helper_8h.html │ │ │ │ │ ├── arm__matrix__example__f32_8c.html │ │ │ │ │ ├── arm__max__f32_8c.html │ │ │ │ │ ├── arm__max__q15_8c.html │ │ │ │ │ ├── arm__max__q31_8c.html │ │ │ │ │ ├── arm__max__q7_8c.html │ │ │ │ │ ├── arm__mean__f32_8c.html │ │ │ │ │ ├── arm__mean__q15_8c.html │ │ │ │ │ ├── arm__mean__q31_8c.html │ │ │ │ │ ├── arm__mean__q7_8c.html │ │ │ │ │ ├── arm__min__f32_8c.html │ │ │ │ │ ├── arm__min__q15_8c.html │ │ │ │ │ ├── arm__min__q31_8c.html │ │ │ │ │ ├── arm__min__q7_8c.html │ │ │ │ │ ├── arm__mult__f32_8c.html │ │ │ │ │ ├── arm__mult__q15_8c.html │ │ │ │ │ ├── arm__mult__q31_8c.html │ │ │ │ │ ├── arm__mult__q7_8c.html │ │ │ │ │ ├── arm__negate__f32_8c.html │ │ │ │ │ ├── arm__negate__q15_8c.html │ │ │ │ │ ├── arm__negate__q31_8c.html │ │ │ │ │ ├── arm__negate__q7_8c.html │ │ │ │ │ ├── arm__offset__f32_8c.html │ │ │ │ │ ├── arm__offset__q15_8c.html │ │ │ │ │ ├── arm__offset__q31_8c.html │ │ │ │ │ ├── arm__offset__q7_8c.html │ │ │ │ │ ├── arm__pid__init__f32_8c.html │ │ │ │ │ ├── arm__pid__init__q15_8c.html │ │ │ │ │ ├── arm__pid__init__q31_8c.html │ │ │ │ │ ├── arm__pid__reset__f32_8c.html │ │ │ │ │ ├── arm__pid__reset__q15_8c.html │ │ │ │ │ ├── arm__pid__reset__q31_8c.html │ │ │ │ │ ├── arm__power__f32_8c.html │ │ │ │ │ ├── arm__power__q15_8c.html │ │ │ │ │ ├── arm__power__q31_8c.html │ │ │ │ │ ├── arm__power__q7_8c.html │ │ │ │ │ ├── arm__q15__to__float_8c.html │ │ │ │ │ ├── arm__q15__to__q31_8c.html │ │ │ │ │ ├── arm__q15__to__q7_8c.html │ │ │ │ │ ├── arm__q31__to__float_8c.html │ │ │ │ │ ├── arm__q31__to__q15_8c.html │ │ │ │ │ ├── arm__q31__to__q7_8c.html │ │ │ │ │ ├── arm__q7__to__float_8c.html │ │ │ │ │ ├── arm__q7__to__q15_8c.html │ │ │ │ │ ├── arm__q7__to__q31_8c.html │ │ │ │ │ ├── arm__rfft__f32_8c.html │ │ │ │ │ ├── arm__rfft__fast__f32_8c.html │ │ │ │ │ ├── arm__rfft__fast__init__f32_8c.html │ │ │ │ │ ├── arm__rfft__init__f32_8c.html │ │ │ │ │ ├── arm__rfft__init__q15_8c.html │ │ │ │ │ ├── arm__rfft__init__q31_8c.html │ │ │ │ │ ├── arm__rfft__q15_8c.html │ │ │ │ │ ├── arm__rfft__q31_8c.html │ │ │ │ │ ├── arm__rms__f32_8c.html │ │ │ │ │ ├── arm__rms__q15_8c.html │ │ │ │ │ ├── arm__rms__q31_8c.html │ │ │ │ │ ├── arm__scale__f32_8c.html │ │ │ │ │ ├── arm__scale__q15_8c.html │ │ │ │ │ ├── arm__scale__q31_8c.html │ │ │ │ │ ├── arm__scale__q7_8c.html │ │ │ │ │ ├── arm__shift__q15_8c.html │ │ │ │ │ ├── arm__shift__q31_8c.html │ │ │ │ │ ├── arm__shift__q7_8c.html │ │ │ │ │ ├── arm__signal__converge__data_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2math__helper_8c.html │ │ │ │ │ ├── arm__signal__converge__example_2_a_r_m_2math__helper_8h.html │ │ │ │ │ ├── arm__signal__converge__example__f32_8c.html │ │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__sin__cos__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__sin__cos__example__f32_8c.html │ │ │ │ │ ├── arm__sin__cos__f32_8c.html │ │ │ │ │ ├── arm__sin__cos__q31_8c.html │ │ │ │ │ ├── arm__sin__f32_8c.html │ │ │ │ │ ├── arm__sin__q15_8c.html │ │ │ │ │ ├── arm__sin__q31_8c.html │ │ │ │ │ ├── arm__sqrt__q15_8c.html │ │ │ │ │ ├── arm__sqrt__q31_8c.html │ │ │ │ │ ├── arm__std__f32_8c.html │ │ │ │ │ ├── arm__std__q15_8c.html │ │ │ │ │ ├── arm__std__q31_8c.html │ │ │ │ │ ├── arm__sub__f32_8c.html │ │ │ │ │ ├── arm__sub__q15_8c.html │ │ │ │ │ ├── arm__sub__q31_8c.html │ │ │ │ │ ├── arm__sub__q7_8c.html │ │ │ │ │ ├── arm__var__f32_8c.html │ │ │ │ │ ├── arm__var__q15_8c.html │ │ │ │ │ ├── arm__var__q31_8c.html │ │ │ │ │ ├── arm__variance__example_2_a_r_m_2_abstract_8txt.html │ │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m0_2system___a_r_m_c_m0_8c.html │ │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m3_2system___a_r_m_c_m3_8c.html │ │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m4___f_p_2system___a_r_m_c_m4_8c.html │ │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_device_2_a_r_m_c_m7___s_p_2system___a_r_m_c_m7_8c.html │ │ │ │ │ ├── arm__variance__example_2_a_r_m_2_r_t_e_2_r_t_e___components_8h.html │ │ │ │ │ ├── arm__variance__example__f32_8c.html │ │ │ │ │ ├── arm_class_marks_example_f32_8c-example.html │ │ │ │ │ ├── arm_convolution_example_f32_8c-example.html │ │ │ │ │ ├── arm_dotproduct_example_f32_8c-example.html │ │ │ │ │ ├── arm_fft_bin_example_f32_8c-example.html │ │ │ │ │ ├── arm_fir_example_f32_8c-example.html │ │ │ │ │ ├── arm_graphic_equalizer_example_q31_8c-example.html │ │ │ │ │ ├── arm_linear_interp_example_f32_8c-example.html │ │ │ │ │ ├── arm_matrix_example_f32_8c-example.html │ │ │ │ │ ├── arm_signal_converge_example_f32_8c-example.html │ │ │ │ │ ├── arm_sin_cos_example_f32_8c-example.html │ │ │ │ │ ├── arm_variance_example_f32_8c-example.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── clarke.gif │ │ │ │ │ ├── clarkeFormula.gif │ │ │ │ │ ├── clarkeInvFormula.gif │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── dct4FormatsQ15Table.gif │ │ │ │ │ ├── dct4FormatsQ31Table.gif │ │ │ │ │ ├── dct4NormalizingF32Table.gif │ │ │ │ │ ├── dct4NormalizingQ15Table.gif │ │ │ │ │ ├── dct4NormalizingQ31Table.gif │ │ │ │ │ ├── deprecated.html │ │ │ │ │ ├── dir_05485b5eab41976e219ba5522ae8a40f.html │ │ │ │ │ ├── dir_09e8ef8785a41675b984fd022d87f1bc.html │ │ │ │ │ ├── dir_0a655a63e9fde46c9762ddfc77ca04bf.html │ │ │ │ │ ├── dir_0a68311637137c2c11b8e5c250252a09.html │ │ │ │ │ ├── dir_0bd53153155fe3870c529e4f415d4a7e.html │ │ │ │ │ ├── dir_12597927a5d871eba77af159658f8e9f.html │ │ │ │ │ ├── dir_180f1cc07eaa223183e2db63ad84fc96.html │ │ │ │ │ ├── dir_1a6938f21b9d3ee9631dba1cb5e9a79b.html │ │ │ │ │ ├── dir_1bf7dc2439436c9055bff1493a609d16.html │ │ │ │ │ ├── dir_1ca531cbfb5f1e8e78bee380ead506db.html │ │ │ │ │ ├── dir_2089eff899a94c0329c5038f55baabab.html │ │ │ │ │ ├── dir_2483b5ef8110e34ae07dadd52b31fd81.html │ │ │ │ │ ├── dir_2540fe3bf997579a35b40d050fd58db0.html │ │ │ │ │ ├── dir_276d6fac6319afec12f7159fe8d37de0.html │ │ │ │ │ ├── dir_28efb39eb514d721c34bfd1d219ba1df.html │ │ │ │ │ ├── dir_2bac5604b95d5833788d2de8744eebd8.html │ │ │ │ │ ├── dir_2c6bf793c39a551cb3665287541dc62d.html │ │ │ │ │ ├── dir_3196f85a8347e7c6cf5419f06f7f0a5c.html │ │ │ │ │ ├── dir_33ac94cce96a0d93808878c5f6f288bf.html │ │ │ │ │ ├── dir_34727d50220656242b857ddf64f52361.html │ │ │ │ │ ├── dir_38b9476ff75f3e6ddc67484ee999428d.html │ │ │ │ │ ├── dir_38d31328c42027cc5452e7496de7b88f.html │ │ │ │ │ ├── dir_3963cad04f3c79af62d382ba0bd29283.html │ │ │ │ │ ├── dir_3d1fa2b43a5e654514cd51dbe031762c.html │ │ │ │ │ ├── dir_3d9b1fb18a6a04e0681aa143a1b11e83.html │ │ │ │ │ ├── dir_3f2a337fe451aa47758dbb077bdba7b5.html │ │ │ │ │ ├── dir_4104b0ce39688295b07e7d8423237024.html │ │ │ │ │ ├── dir_424029d631ed0326d927fecdf0eb5714.html │ │ │ │ │ ├── dir_446217fa41e7971f13d66a5ff592433f.html │ │ │ │ │ ├── dir_45f8bb2d42ec552d5107a3dfe6860678.html │ │ │ │ │ ├── dir_4646a6ed5faa53e0aa863c10960e3ab2.html │ │ │ │ │ ├── dir_4714731cfbb1de4dc44e33e6cd6e4a5c.html │ │ │ │ │ ├── dir_4c7fce71cdbef82378782cbb366558c3.html │ │ │ │ │ ├── dir_4e28292bc057704f3d2041cc99d8a5e9.html │ │ │ │ │ ├── dir_50f4d4f91ce5cd72cb6928b47e85a7f8.html │ │ │ │ │ ├── dir_51a4a1a9da33f8f5fceef63d25a48bab.html │ │ │ │ │ ├── dir_555dbbdc9f25fff28408fc741ceff093.html │ │ │ │ │ ├── dir_56c57e2f0b48b2b8a51ef27bd8c502e6.html │ │ │ │ │ ├── dir_56cec670f0bb78d679862f48f54d3df2.html │ │ │ │ │ ├── dir_59a4e177523ec142602b8d9a69e8f1ad.html │ │ │ │ │ ├── dir_5a70ee658078194b161f81d2720845c2.html │ │ │ │ │ ├── dir_5a7314d68003d6d6c9cc9bdbf9474558.html │ │ │ │ │ ├── dir_5ac065bab6b325e909a2891e62c4bc06.html │ │ │ │ │ ├── dir_5f5bccfc6fe085bc51be756ab8f90283.html │ │ │ │ │ ├── dir_6128d62f89366c4b8843a6e619831037.html │ │ │ │ │ ├── dir_640aa2eed9b78c9534642de10c55cd76.html │ │ │ │ │ ├── dir_64e2a74b8b7bbc67c7b58e8d27693791.html │ │ │ │ │ ├── dir_677f903d85fbea9a56056645305fd3cb.html │ │ │ │ │ ├── dir_67fa1d0aab2310595b9aeb6c7b217b31.html │ │ │ │ │ ├── dir_68b896fe322128a858fd31091509f536.html │ │ │ │ │ ├── dir_6ba48a5a8374668719ef019fe5c253cc.html │ │ │ │ │ ├── dir_6f165a89e15e99ac3f22d8f869410ac4.html │ │ │ │ │ ├── dir_6fa7a20b876299d97755d41c2d48a6a5.html │ │ │ │ │ ├── dir_7101093b4d1c318dab4c75d3b6d4e65e.html │ │ │ │ │ ├── dir_7b31f24274e1fbd0785fc4576840c524.html │ │ │ │ │ ├── dir_7c360855219f51fadbd92197472e63eb.html │ │ │ │ │ ├── dir_7d4cec4b61e1207b4d4e94667e8b33c4.html │ │ │ │ │ ├── dir_7d5684d3cdce709028a67dede40715c9.html │ │ │ │ │ ├── dir_7e8aa87db1ad6b3d9b1f25792e7c5208.html │ │ │ │ │ ├── dir_81c44c586c907f45c06b9b0a1d54e536.html │ │ │ │ │ ├── dir_822489d6fe1c800fff671c2e07883531.html │ │ │ │ │ ├── dir_82f440d47881c253175a7975df0d431b.html │ │ │ │ │ ├── dir_8414b1b93f9b578e0e4fd694ad6d561d.html │ │ │ │ │ ├── dir_856524284ebe840938865dc061f982fb.html │ │ │ │ │ ├── dir_8964a87ec8901bd068212c6dbdc5667e.html │ │ │ │ │ ├── dir_8e3293b977a6b314227f0cbb91dff730.html │ │ │ │ │ ├── dir_8ec650f333a7a305dec681cfacaa8edc.html │ │ │ │ │ ├── dir_8f74d965c767f9f408b01fb8ac42c08d.html │ │ │ │ │ ├── dir_918b1d9c020a9c8774a15ad3971a73ba.html │ │ │ │ │ ├── dir_925317a6e91dbb02ffd51da5d221b046.html │ │ │ │ │ ├── dir_92c426a233a3fdd85d56996e21a98e0e.html │ │ │ │ │ ├── dir_99f4521c725f0e333e2b206f562a5db7.html │ │ │ │ │ ├── dir_9aca731d350c1cdbae92b5821b7281b6.html │ │ │ │ │ ├── dir_9bbc0b803a378696e320e7975798d136.html │ │ │ │ │ ├── dir_9c857f0e41082f634e50072d001e0d4f.html │ │ │ │ │ ├── dir_9ec4a86676306e0fd116a00bf2906438.html │ │ │ │ │ ├── dir_a318715356e0ddd7f0022cb090f89fc2.html │ │ │ │ │ ├── dir_a368b1aeece590aaffe7782f861e3d24.html │ │ │ │ │ ├── dir_a4dee065d84ef6ffe4004c9ef0acf573.html │ │ │ │ │ ├── dir_a757f05afb4eb2e937a151caf65a9259.html │ │ │ │ │ ├── dir_a9b08443a15a54b29b0454fe878922b3.html │ │ │ │ │ ├── dir_aa7ef7d51ba6279587b659bb78c926be.html │ │ │ │ │ ├── dir_af59df418deac60c7129b68088884655.html │ │ │ │ │ ├── dir_b175b6a1b0e91b31e821dead0757e039.html │ │ │ │ │ ├── dir_b4620baec99d7beabdab610e4d749ef9.html │ │ │ │ │ ├── dir_b5d45ad7eb5bf398416f62f8980ddf77.html │ │ │ │ │ ├── dir_b88714652b8aa1e1c1599fa05e2dbc2f.html │ │ │ │ │ ├── dir_ba345a22c23c468dbe342a31a3980d31.html │ │ │ │ │ ├── dir_be2d3df67661aefe0e3f0071a1d6f8f1.html │ │ │ │ │ ├── dir_c2e666cea3ed7c127463edfe7b3abed4.html │ │ │ │ │ ├── dir_cc6125d285775e245d68db3d4ce69092.html │ │ │ │ │ ├── dir_cd8c33382d73f02781c40066dbd2f0d5.html │ │ │ │ │ ├── dir_cf417d728100a167f563acfac33cb7c7.html │ │ │ │ │ ├── dir_d1af19de43f00bd515b519c982d49d68.html │ │ │ │ │ ├── dir_d1d61a1361fc579da85c1b709ed868d7.html │ │ │ │ │ ├── dir_d3331dca3948a91095eeb99d07575db0.html │ │ │ │ │ ├── dir_d6b73ad7e408302c29ea0ebadf42639d.html │ │ │ │ │ ├── dir_daf4f5c4da18fbee2cc01397e7059227.html │ │ │ │ │ ├── dir_dcc7392e27ceedcb8fca5c4cd07c4b5c.html │ │ │ │ │ ├── dir_e04602aba7b2f9f43e3429e32fb5dc36.html │ │ │ │ │ ├── dir_e4eb7b834609f1fe20523c66b23e4a87.html │ │ │ │ │ ├── dir_e677fc34f5347e58d43c339b53e9b418.html │ │ │ │ │ ├── dir_e69484b12825f40a4799c3db7df7c339.html │ │ │ │ │ ├── dir_e850fff378e36258e2a085808e9d898c.html │ │ │ │ │ ├── dir_eaa4f497a3f9bf201d37aaf8d8603deb.html │ │ │ │ │ ├── dir_ed0f06d1d48a5e921d9f4bc3a2223aa6.html │ │ │ │ │ ├── dir_f31395880d34591c756e13478059d1a5.html │ │ │ │ │ ├── dir_f3f90e767886505989b4baa9d4b81390.html │ │ │ │ │ ├── dir_fa76c9f4334252cb8d941364a7ed9feb.html │ │ │ │ │ ├── dir_fccaebac91eec4cb351e86457c5d1310.html │ │ │ │ │ ├── dotProduct.gif │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── files.html │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_0x62.html │ │ │ │ │ ├── functions_0x65.html │ │ │ │ │ ├── functions_0x66.html │ │ │ │ │ ├── functions_0x69.html │ │ │ │ │ ├── functions_0x6b.html │ │ │ │ │ ├── functions_0x6c.html │ │ │ │ │ ├── functions_0x6d.html │ │ │ │ │ ├── functions_0x6e.html │ │ │ │ │ ├── functions_0x6f.html │ │ │ │ │ ├── functions_0x70.html │ │ │ │ │ ├── functions_0x72.html │ │ │ │ │ ├── functions_0x73.html │ │ │ │ │ ├── functions_0x74.html │ │ │ │ │ ├── functions_0x78.html │ │ │ │ │ ├── functions_dup.js │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── functions_vars.js │ │ │ │ │ ├── functions_vars_0x62.html │ │ │ │ │ ├── functions_vars_0x65.html │ │ │ │ │ ├── functions_vars_0x66.html │ │ │ │ │ ├── functions_vars_0x69.html │ │ │ │ │ ├── functions_vars_0x6b.html │ │ │ │ │ ├── functions_vars_0x6c.html │ │ │ │ │ ├── functions_vars_0x6d.html │ │ │ │ │ ├── functions_vars_0x6e.html │ │ │ │ │ ├── functions_vars_0x6f.html │ │ │ │ │ ├── functions_vars_0x70.html │ │ │ │ │ ├── functions_vars_0x72.html │ │ │ │ │ ├── functions_vars_0x73.html │ │ │ │ │ ├── functions_vars_0x74.html │ │ │ │ │ ├── functions_vars_0x78.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_0x61.html │ │ │ │ │ ├── globals_0x62.html │ │ │ │ │ ├── globals_0x63.html │ │ │ │ │ ├── globals_0x64.html │ │ │ │ │ ├── globals_0x65.html │ │ │ │ │ ├── globals_0x66.html │ │ │ │ │ ├── globals_0x67.html │ │ │ │ │ ├── globals_0x69.html │ │ │ │ │ ├── globals_0x6c.html │ │ │ │ │ ├── globals_0x6d.html │ │ │ │ │ ├── globals_0x6e.html │ │ │ │ │ ├── globals_0x6f.html │ │ │ │ │ ├── globals_0x70.html │ │ │ │ │ ├── globals_0x71.html │ │ │ │ │ ├── globals_0x72.html │ │ │ │ │ ├── globals_0x73.html │ │ │ │ │ ├── globals_0x74.html │ │ │ │ │ ├── globals_0x75.html │ │ │ │ │ ├── globals_0x76.html │ │ │ │ │ ├── globals_0x77.html │ │ │ │ │ ├── globals_0x78.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_defs_0x61.html │ │ │ │ │ ├── globals_defs_0x62.html │ │ │ │ │ ├── globals_defs_0x63.html │ │ │ │ │ ├── globals_defs_0x64.html │ │ │ │ │ ├── globals_defs_0x66.html │ │ │ │ │ ├── globals_defs_0x69.html │ │ │ │ │ ├── globals_defs_0x6d.html │ │ │ │ │ ├── globals_defs_0x6e.html │ │ │ │ │ ├── globals_defs_0x70.html │ │ │ │ │ ├── globals_defs_0x73.html │ │ │ │ │ ├── globals_defs_0x74.html │ │ │ │ │ ├── globals_defs_0x75.html │ │ │ │ │ ├── globals_defs_0x78.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_func_0x62.html │ │ │ │ │ ├── globals_func_0x63.html │ │ │ │ │ ├── globals_func_0x64.html │ │ │ │ │ ├── globals_func_0x66.html │ │ │ │ │ ├── globals_func_0x67.html │ │ │ │ │ ├── globals_func_0x69.html │ │ │ │ │ ├── globals_func_0x6c.html │ │ │ │ │ ├── globals_func_0x6d.html │ │ │ │ │ ├── globals_func_0x6e.html │ │ │ │ │ ├── globals_func_0x6f.html │ │ │ │ │ ├── globals_func_0x70.html │ │ │ │ │ ├── globals_func_0x71.html │ │ │ │ │ ├── globals_func_0x72.html │ │ │ │ │ ├── globals_func_0x73.html │ │ │ │ │ ├── globals_func_0x74.html │ │ │ │ │ ├── globals_func_0x76.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── globals_vars.html │ │ │ │ │ ├── globals_vars_0x62.html │ │ │ │ │ ├── globals_vars_0x63.html │ │ │ │ │ ├── globals_vars_0x64.html │ │ │ │ │ ├── globals_vars_0x65.html │ │ │ │ │ ├── globals_vars_0x66.html │ │ │ │ │ ├── globals_vars_0x67.html │ │ │ │ │ ├── globals_vars_0x69.html │ │ │ │ │ ├── globals_vars_0x6c.html │ │ │ │ │ ├── globals_vars_0x6d.html │ │ │ │ │ ├── globals_vars_0x6e.html │ │ │ │ │ ├── globals_vars_0x6f.html │ │ │ │ │ ├── globals_vars_0x72.html │ │ │ │ │ ├── globals_vars_0x73.html │ │ │ │ │ ├── globals_vars_0x74.html │ │ │ │ │ ├── globals_vars_0x76.html │ │ │ │ │ ├── globals_vars_0x77.html │ │ │ │ │ ├── globals_vars_0x78.html │ │ │ │ │ ├── group___basic_abs.html │ │ │ │ │ ├── group___basic_abs.js │ │ │ │ │ ├── group___basic_add.html │ │ │ │ │ ├── group___basic_add.js │ │ │ │ │ ├── group___basic_mult.html │ │ │ │ │ ├── group___basic_mult.js │ │ │ │ │ ├── group___basic_sub.html │ │ │ │ │ ├── group___basic_sub.js │ │ │ │ │ ├── group___bilinear_interpolate.html │ │ │ │ │ ├── group___bilinear_interpolate.js │ │ │ │ │ ├── group___biquad_cascade_d_f1.html │ │ │ │ │ ├── group___biquad_cascade_d_f1.js │ │ │ │ │ ├── group___biquad_cascade_d_f1__32x64.html │ │ │ │ │ ├── group___biquad_cascade_d_f1__32x64.js │ │ │ │ │ ├── group___biquad_cascade_d_f2_t.html │ │ │ │ │ ├── group___biquad_cascade_d_f2_t.js │ │ │ │ │ ├── group___c_f_f_t___c_i_f_f_t.html │ │ │ │ │ ├── group___c_f_f_t___c_i_f_f_t.js │ │ │ │ │ ├── group___class_marks.html │ │ │ │ │ ├── group___cmplx_by_cmplx_mult.html │ │ │ │ │ ├── group___cmplx_by_cmplx_mult.js │ │ │ │ │ ├── group___cmplx_by_real_mult.html │ │ │ │ │ ├── group___cmplx_by_real_mult.js │ │ │ │ │ ├── group___cmplx_matrix_mult.html │ │ │ │ │ ├── group___cmplx_matrix_mult.js │ │ │ │ │ ├── group___complex_f_f_t.html │ │ │ │ │ ├── group___complex_f_f_t.js │ │ │ │ │ ├── group___conv.html │ │ │ │ │ ├── group___conv.js │ │ │ │ │ ├── group___convolution_example.html │ │ │ │ │ ├── group___corr.html │ │ │ │ │ ├── group___corr.js │ │ │ │ │ ├── group___d_c_t4___i_d_c_t4.html │ │ │ │ │ ├── group___d_c_t4___i_d_c_t4.js │ │ │ │ │ ├── group___dotproduct_example.html │ │ │ │ │ ├── group___f_i_r.html │ │ │ │ │ ├── group___f_i_r.js │ │ │ │ │ ├── group___f_i_r___interpolate.html │ │ │ │ │ ├── group___f_i_r___interpolate.js │ │ │ │ │ ├── group___f_i_r___lattice.html │ │ │ │ │ ├── group___f_i_r___lattice.js │ │ │ │ │ ├── group___f_i_r___sparse.html │ │ │ │ │ ├── group___f_i_r___sparse.js │ │ │ │ │ ├── group___f_i_r__decimate.html │ │ │ │ │ ├── group___f_i_r__decimate.js │ │ │ │ │ ├── group___f_i_r_l_p_f.html │ │ │ │ │ ├── group___fast.html │ │ │ │ │ ├── group___fill.html │ │ │ │ │ ├── group___fill.js │ │ │ │ │ ├── group___frequency_bin.html │ │ │ │ │ ├── group___g_e_q5_band.html │ │ │ │ │ ├── group___i_i_r___lattice.html │ │ │ │ │ ├── group___i_i_r___lattice.js │ │ │ │ │ ├── group___l_m_s.html │ │ │ │ │ ├── group___l_m_s.js │ │ │ │ │ ├── group___l_m_s___n_o_r_m.html │ │ │ │ │ ├── group___l_m_s___n_o_r_m.js │ │ │ │ │ ├── group___linear_interp_example.html │ │ │ │ │ ├── group___linear_interpolate.html │ │ │ │ │ ├── group___linear_interpolate.js │ │ │ │ │ ├── group___matrix_add.html │ │ │ │ │ ├── group___matrix_add.js │ │ │ │ │ ├── group___matrix_example.html │ │ │ │ │ ├── group___matrix_init.html │ │ │ │ │ ├── group___matrix_init.js │ │ │ │ │ ├── group___matrix_inv.html │ │ │ │ │ ├── group___matrix_inv.js │ │ │ │ │ ├── group___matrix_mult.html │ │ │ │ │ ├── group___matrix_mult.js │ │ │ │ │ ├── group___matrix_scale.html │ │ │ │ │ ├── group___matrix_scale.js │ │ │ │ │ ├── group___matrix_sub.html │ │ │ │ │ ├── group___matrix_sub.js │ │ │ │ │ ├── group___matrix_trans.html │ │ │ │ │ ├── group___matrix_trans.js │ │ │ │ │ ├── group___max.html │ │ │ │ │ ├── group___max.js │ │ │ │ │ ├── group___min.html │ │ │ │ │ ├── group___min.js │ │ │ │ │ ├── group___p_i_d.html │ │ │ │ │ ├── group___p_i_d.js │ │ │ │ │ ├── group___partial_conv.html │ │ │ │ │ ├── group___partial_conv.js │ │ │ │ │ ├── group___r_m_s.html │ │ │ │ │ ├── group___r_m_s.js │ │ │ │ │ ├── group___radix8___c_f_f_t___c_i_f_f_t.html │ │ │ │ │ ├── group___real_f_f_t.html │ │ │ │ │ ├── group___real_f_f_t.js │ │ │ │ │ ├── group___s_q_r_t.html │ │ │ │ │ ├── group___s_q_r_t.js │ │ │ │ │ ├── group___s_t_d.html │ │ │ │ │ ├── group___s_t_d.js │ │ │ │ │ ├── group___signal_convergence.html │ │ │ │ │ ├── group___sin_cos.html │ │ │ │ │ ├── group___sin_cos.js │ │ │ │ │ ├── group___sin_cos_example.html │ │ │ │ │ ├── group___variance_example.html │ │ │ │ │ ├── group__clarke.html │ │ │ │ │ ├── group__clarke.js │ │ │ │ │ ├── group__cmplx__conj.html │ │ │ │ │ ├── group__cmplx__conj.js │ │ │ │ │ ├── group__cmplx__dot__prod.html │ │ │ │ │ ├── group__cmplx__dot__prod.js │ │ │ │ │ ├── group__cmplx__mag.html │ │ │ │ │ ├── group__cmplx__mag.js │ │ │ │ │ ├── group__cmplx__mag__squared.html │ │ │ │ │ ├── group__cmplx__mag__squared.js │ │ │ │ │ ├── group__copy.html │ │ │ │ │ ├── group__copy.js │ │ │ │ │ ├── group__cos.html │ │ │ │ │ ├── group__cos.js │ │ │ │ │ ├── group__dot__prod.html │ │ │ │ │ ├── group__dot__prod.js │ │ │ │ │ ├── group__float__to__x.html │ │ │ │ │ ├── group__float__to__x.js │ │ │ │ │ ├── group__group_cmplx_math.html │ │ │ │ │ ├── group__group_cmplx_math.js │ │ │ │ │ ├── group__group_controller.html │ │ │ │ │ ├── group__group_controller.js │ │ │ │ │ ├── group__group_examples.html │ │ │ │ │ ├── group__group_examples.js │ │ │ │ │ ├── group__group_fast_math.html │ │ │ │ │ ├── group__group_fast_math.js │ │ │ │ │ ├── group__group_filters.html │ │ │ │ │ ├── group__group_filters.js │ │ │ │ │ ├── group__group_interpolation.html │ │ │ │ │ ├── group__group_interpolation.js │ │ │ │ │ ├── group__group_math.html │ │ │ │ │ ├── group__group_math.js │ │ │ │ │ ├── group__group_matrix.html │ │ │ │ │ ├── group__group_matrix.js │ │ │ │ │ ├── group__group_stats.html │ │ │ │ │ ├── group__group_stats.js │ │ │ │ │ ├── group__group_support.html │ │ │ │ │ ├── group__group_support.js │ │ │ │ │ ├── group__group_transforms.html │ │ │ │ │ ├── group__group_transforms.js │ │ │ │ │ ├── group__inv__clarke.html │ │ │ │ │ ├── group__inv__clarke.js │ │ │ │ │ ├── group__inv__park.html │ │ │ │ │ ├── group__inv__park.js │ │ │ │ │ ├── group__mean.html │ │ │ │ │ ├── group__mean.js │ │ │ │ │ ├── group__negate.html │ │ │ │ │ ├── group__negate.js │ │ │ │ │ ├── group__offset.html │ │ │ │ │ ├── group__offset.js │ │ │ │ │ ├── group__park.html │ │ │ │ │ ├── group__park.js │ │ │ │ │ ├── group__power.html │ │ │ │ │ ├── group__power.js │ │ │ │ │ ├── group__q15__to__x.html │ │ │ │ │ ├── group__q15__to__x.js │ │ │ │ │ ├── group__q31__to__x.html │ │ │ │ │ ├── group__q31__to__x.js │ │ │ │ │ ├── group__q7__to__x.html │ │ │ │ │ ├── group__q7__to__x.js │ │ │ │ │ ├── group__scale.html │ │ │ │ │ ├── group__scale.js │ │ │ │ │ ├── group__shift.html │ │ │ │ │ ├── group__shift.js │ │ │ │ │ ├── group__sin.html │ │ │ │ │ ├── group__sin.js │ │ │ │ │ ├── group__variance.html │ │ │ │ │ ├── group__variance.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── linearInterpExampleMethod1.gif │ │ │ │ │ ├── linearInterpExampleMethod2.gif │ │ │ │ │ ├── matrixExample.gif │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── modules.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── navtreeindex1.js │ │ │ │ │ ├── navtreeindex2.js │ │ │ │ │ ├── navtreeindex3.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── park.gif │ │ │ │ │ ├── parkFormula.gif │ │ │ │ │ ├── parkInvFormula.gif │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── search │ │ │ │ │ ├── all_5f.html │ │ │ │ │ ├── all_5f.js │ │ │ │ │ ├── all_61.html │ │ │ │ │ ├── all_61.js │ │ │ │ │ ├── all_62.html │ │ │ │ │ ├── all_62.js │ │ │ │ │ ├── all_63.html │ │ │ │ │ ├── all_63.js │ │ │ │ │ ├── all_64.html │ │ │ │ │ ├── all_64.js │ │ │ │ │ ├── all_65.html │ │ │ │ │ ├── all_65.js │ │ │ │ │ ├── all_66.html │ │ │ │ │ ├── all_66.js │ │ │ │ │ ├── all_67.html │ │ │ │ │ ├── all_67.js │ │ │ │ │ ├── all_68.html │ │ │ │ │ ├── all_68.js │ │ │ │ │ ├── all_69.html │ │ │ │ │ ├── all_69.js │ │ │ │ │ ├── all_6b.html │ │ │ │ │ ├── all_6b.js │ │ │ │ │ ├── all_6c.html │ │ │ │ │ ├── all_6c.js │ │ │ │ │ ├── all_6d.html │ │ │ │ │ ├── all_6d.js │ │ │ │ │ ├── all_6e.html │ │ │ │ │ ├── all_6e.js │ │ │ │ │ ├── all_6f.html │ │ │ │ │ ├── all_6f.js │ │ │ │ │ ├── all_70.html │ │ │ │ │ ├── all_70.js │ │ │ │ │ ├── all_71.html │ │ │ │ │ ├── all_71.js │ │ │ │ │ ├── all_72.html │ │ │ │ │ ├── all_72.js │ │ │ │ │ ├── all_73.html │ │ │ │ │ ├── all_73.js │ │ │ │ │ ├── all_74.html │ │ │ │ │ ├── all_74.js │ │ │ │ │ ├── all_75.html │ │ │ │ │ ├── all_75.js │ │ │ │ │ ├── all_76.html │ │ │ │ │ ├── all_76.js │ │ │ │ │ ├── all_77.html │ │ │ │ │ ├── all_77.js │ │ │ │ │ ├── all_78.html │ │ │ │ │ ├── all_78.js │ │ │ │ │ ├── classes_61.html │ │ │ │ │ ├── classes_61.js │ │ │ │ │ ├── close.png │ │ │ │ │ ├── defines_5f.html │ │ │ │ │ ├── defines_5f.js │ │ │ │ │ ├── defines_61.html │ │ │ │ │ ├── defines_61.js │ │ │ │ │ ├── defines_62.html │ │ │ │ │ ├── defines_62.js │ │ │ │ │ ├── defines_63.html │ │ │ │ │ ├── defines_63.js │ │ │ │ │ ├── defines_64.html │ │ │ │ │ ├── defines_64.js │ │ │ │ │ ├── defines_66.html │ │ │ │ │ ├── defines_66.js │ │ │ │ │ ├── defines_69.html │ │ │ │ │ ├── defines_69.js │ │ │ │ │ ├── defines_6d.html │ │ │ │ │ ├── defines_6d.js │ │ │ │ │ ├── defines_6e.html │ │ │ │ │ ├── defines_6e.js │ │ │ │ │ ├── defines_70.html │ │ │ │ │ ├── defines_70.js │ │ │ │ │ ├── defines_73.html │ │ │ │ │ ├── defines_73.js │ │ │ │ │ ├── defines_74.html │ │ │ │ │ ├── defines_74.js │ │ │ │ │ ├── defines_75.html │ │ │ │ │ ├── defines_75.js │ │ │ │ │ ├── defines_78.html │ │ │ │ │ ├── defines_78.js │ │ │ │ │ ├── enums_61.html │ │ │ │ │ ├── enums_61.js │ │ │ │ │ ├── enumvalues_61.html │ │ │ │ │ ├── enumvalues_61.js │ │ │ │ │ ├── files_61.html │ │ │ │ │ ├── files_61.js │ │ │ │ │ ├── files_63.html │ │ │ │ │ ├── files_63.js │ │ │ │ │ ├── files_67.html │ │ │ │ │ ├── files_67.js │ │ │ │ │ ├── functions_61.html │ │ │ │ │ ├── functions_61.js │ │ │ │ │ ├── functions_63.html │ │ │ │ │ ├── functions_63.js │ │ │ │ │ ├── functions_67.html │ │ │ │ │ ├── functions_67.js │ │ │ │ │ ├── functions_6d.html │ │ │ │ │ ├── functions_6d.js │ │ │ │ │ ├── functions_73.html │ │ │ │ │ ├── functions_73.js │ │ │ │ │ ├── functions_74.html │ │ │ │ │ ├── functions_74.js │ │ │ │ │ ├── groups_62.html │ │ │ │ │ ├── groups_62.js │ │ │ │ │ ├── groups_63.html │ │ │ │ │ ├── groups_63.js │ │ │ │ │ ├── groups_64.html │ │ │ │ │ ├── groups_64.js │ │ │ │ │ ├── groups_65.html │ │ │ │ │ ├── groups_65.js │ │ │ │ │ ├── groups_66.html │ │ │ │ │ ├── groups_66.js │ │ │ │ │ ├── groups_67.html │ │ │ │ │ ├── groups_67.js │ │ │ │ │ ├── groups_68.html │ │ │ │ │ ├── groups_68.js │ │ │ │ │ ├── groups_69.html │ │ │ │ │ ├── groups_69.js │ │ │ │ │ ├── groups_6c.html │ │ │ │ │ ├── groups_6c.js │ │ │ │ │ ├── groups_6d.html │ │ │ │ │ ├── groups_6d.js │ │ │ │ │ ├── groups_6e.html │ │ │ │ │ ├── groups_6e.js │ │ │ │ │ ├── groups_70.html │ │ │ │ │ ├── groups_70.js │ │ │ │ │ ├── groups_72.html │ │ │ │ │ ├── groups_72.js │ │ │ │ │ ├── groups_73.html │ │ │ │ │ ├── groups_73.js │ │ │ │ │ ├── groups_74.html │ │ │ │ │ ├── groups_74.js │ │ │ │ │ ├── groups_76.html │ │ │ │ │ ├── groups_76.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── pages_63.html │ │ │ │ │ ├── pages_63.js │ │ │ │ │ ├── pages_64.html │ │ │ │ │ ├── pages_64.js │ │ │ │ │ ├── search.css │ │ │ │ │ ├── search.js │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── typedefs_66.html │ │ │ │ │ ├── typedefs_66.js │ │ │ │ │ ├── typedefs_71.html │ │ │ │ │ ├── typedefs_71.js │ │ │ │ │ ├── variables_61.html │ │ │ │ │ ├── variables_61.js │ │ │ │ │ ├── variables_62.html │ │ │ │ │ ├── variables_62.js │ │ │ │ │ ├── variables_63.html │ │ │ │ │ ├── variables_63.js │ │ │ │ │ ├── variables_64.html │ │ │ │ │ ├── variables_64.js │ │ │ │ │ ├── variables_65.html │ │ │ │ │ ├── variables_65.js │ │ │ │ │ ├── variables_66.html │ │ │ │ │ ├── variables_66.js │ │ │ │ │ ├── variables_67.html │ │ │ │ │ ├── variables_67.js │ │ │ │ │ ├── variables_69.html │ │ │ │ │ ├── variables_69.js │ │ │ │ │ ├── variables_6b.html │ │ │ │ │ ├── variables_6b.js │ │ │ │ │ ├── variables_6c.html │ │ │ │ │ ├── variables_6c.js │ │ │ │ │ ├── variables_6d.html │ │ │ │ │ ├── variables_6d.js │ │ │ │ │ ├── variables_6e.html │ │ │ │ │ ├── variables_6e.js │ │ │ │ │ ├── variables_6f.html │ │ │ │ │ ├── variables_6f.js │ │ │ │ │ ├── variables_70.html │ │ │ │ │ ├── variables_70.js │ │ │ │ │ ├── variables_72.html │ │ │ │ │ ├── variables_72.js │ │ │ │ │ ├── variables_73.html │ │ │ │ │ ├── variables_73.js │ │ │ │ │ ├── variables_74.html │ │ │ │ │ ├── variables_74.js │ │ │ │ │ ├── variables_76.html │ │ │ │ │ ├── variables_76.js │ │ │ │ │ ├── variables_77.html │ │ │ │ │ ├── variables_77.js │ │ │ │ │ ├── variables_78.html │ │ │ │ │ └── variables_78.js │ │ │ │ │ ├── sinCos.gif │ │ │ │ │ ├── structarm__bilinear__interp__instance__f32.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__f32.js │ │ │ │ │ ├── structarm__bilinear__interp__instance__q15.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__q15.js │ │ │ │ │ ├── structarm__bilinear__interp__instance__q31.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__q31.js │ │ │ │ │ ├── structarm__bilinear__interp__instance__q7.html │ │ │ │ │ ├── structarm__bilinear__interp__instance__q7.js │ │ │ │ │ ├── structarm__biquad__cas__df1__32x64__ins__q31.html │ │ │ │ │ ├── structarm__biquad__cas__df1__32x64__ins__q31.js │ │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f32.html │ │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f32.js │ │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f64.html │ │ │ │ │ ├── structarm__biquad__cascade__df2_t__instance__f64.js │ │ │ │ │ ├── structarm__biquad__cascade__stereo__df2_t__instance__f32.html │ │ │ │ │ ├── structarm__biquad__cascade__stereo__df2_t__instance__f32.js │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__f32.html │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__f32.js │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__q15.html │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__q15.js │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__q31.html │ │ │ │ │ ├── structarm__biquad__casd__df1__inst__q31.js │ │ │ │ │ ├── structarm__cfft__instance__f32.html │ │ │ │ │ ├── structarm__cfft__instance__f32.js │ │ │ │ │ ├── structarm__cfft__instance__q15.html │ │ │ │ │ ├── structarm__cfft__instance__q15.js │ │ │ │ │ ├── structarm__cfft__instance__q31.html │ │ │ │ │ ├── structarm__cfft__instance__q31.js │ │ │ │ │ ├── structarm__cfft__radix2__instance__f32.html │ │ │ │ │ ├── structarm__cfft__radix2__instance__f32.js │ │ │ │ │ ├── structarm__cfft__radix2__instance__q15.html │ │ │ │ │ ├── structarm__cfft__radix2__instance__q15.js │ │ │ │ │ ├── structarm__cfft__radix2__instance__q31.html │ │ │ │ │ ├── structarm__cfft__radix2__instance__q31.js │ │ │ │ │ ├── structarm__cfft__radix4__instance__f32.html │ │ │ │ │ ├── structarm__cfft__radix4__instance__f32.js │ │ │ │ │ ├── structarm__cfft__radix4__instance__q15.html │ │ │ │ │ ├── structarm__cfft__radix4__instance__q15.js │ │ │ │ │ ├── structarm__cfft__radix4__instance__q31.html │ │ │ │ │ ├── structarm__cfft__radix4__instance__q31.js │ │ │ │ │ ├── structarm__dct4__instance__f32.html │ │ │ │ │ ├── structarm__dct4__instance__f32.js │ │ │ │ │ ├── structarm__dct4__instance__q15.html │ │ │ │ │ ├── structarm__dct4__instance__q15.js │ │ │ │ │ ├── structarm__dct4__instance__q31.html │ │ │ │ │ ├── structarm__dct4__instance__q31.js │ │ │ │ │ ├── structarm__fir__decimate__instance__f32.html │ │ │ │ │ ├── structarm__fir__decimate__instance__f32.js │ │ │ │ │ ├── structarm__fir__decimate__instance__q15.html │ │ │ │ │ ├── structarm__fir__decimate__instance__q15.js │ │ │ │ │ ├── structarm__fir__decimate__instance__q31.html │ │ │ │ │ ├── structarm__fir__decimate__instance__q31.js │ │ │ │ │ ├── structarm__fir__instance__f32.html │ │ │ │ │ ├── structarm__fir__instance__f32.js │ │ │ │ │ ├── structarm__fir__instance__q15.html │ │ │ │ │ ├── structarm__fir__instance__q15.js │ │ │ │ │ ├── structarm__fir__instance__q31.html │ │ │ │ │ ├── structarm__fir__instance__q31.js │ │ │ │ │ ├── structarm__fir__instance__q7.html │ │ │ │ │ ├── structarm__fir__instance__q7.js │ │ │ │ │ ├── structarm__fir__interpolate__instance__f32.html │ │ │ │ │ ├── structarm__fir__interpolate__instance__f32.js │ │ │ │ │ ├── structarm__fir__interpolate__instance__q15.html │ │ │ │ │ ├── structarm__fir__interpolate__instance__q15.js │ │ │ │ │ ├── structarm__fir__interpolate__instance__q31.html │ │ │ │ │ ├── structarm__fir__interpolate__instance__q31.js │ │ │ │ │ ├── structarm__fir__lattice__instance__f32.html │ │ │ │ │ ├── structarm__fir__lattice__instance__f32.js │ │ │ │ │ ├── structarm__fir__lattice__instance__q15.html │ │ │ │ │ ├── structarm__fir__lattice__instance__q15.js │ │ │ │ │ ├── structarm__fir__lattice__instance__q31.html │ │ │ │ │ ├── structarm__fir__lattice__instance__q31.js │ │ │ │ │ ├── structarm__fir__sparse__instance__f32.html │ │ │ │ │ ├── structarm__fir__sparse__instance__f32.js │ │ │ │ │ ├── structarm__fir__sparse__instance__q15.html │ │ │ │ │ ├── structarm__fir__sparse__instance__q15.js │ │ │ │ │ ├── structarm__fir__sparse__instance__q31.html │ │ │ │ │ ├── structarm__fir__sparse__instance__q31.js │ │ │ │ │ ├── structarm__fir__sparse__instance__q7.html │ │ │ │ │ ├── structarm__fir__sparse__instance__q7.js │ │ │ │ │ ├── structarm__iir__lattice__instance__f32.html │ │ │ │ │ ├── structarm__iir__lattice__instance__f32.js │ │ │ │ │ ├── structarm__iir__lattice__instance__q15.html │ │ │ │ │ ├── structarm__iir__lattice__instance__q15.js │ │ │ │ │ ├── structarm__iir__lattice__instance__q31.html │ │ │ │ │ ├── structarm__iir__lattice__instance__q31.js │ │ │ │ │ ├── structarm__linear__interp__instance__f32.html │ │ │ │ │ ├── structarm__linear__interp__instance__f32.js │ │ │ │ │ ├── structarm__lms__instance__f32.html │ │ │ │ │ ├── structarm__lms__instance__f32.js │ │ │ │ │ ├── structarm__lms__instance__q15.html │ │ │ │ │ ├── structarm__lms__instance__q15.js │ │ │ │ │ ├── structarm__lms__instance__q31.html │ │ │ │ │ ├── structarm__lms__instance__q31.js │ │ │ │ │ ├── structarm__lms__norm__instance__f32.html │ │ │ │ │ ├── structarm__lms__norm__instance__f32.js │ │ │ │ │ ├── structarm__lms__norm__instance__q15.html │ │ │ │ │ ├── structarm__lms__norm__instance__q15.js │ │ │ │ │ ├── structarm__lms__norm__instance__q31.html │ │ │ │ │ ├── structarm__lms__norm__instance__q31.js │ │ │ │ │ ├── structarm__matrix__instance__f32.html │ │ │ │ │ ├── structarm__matrix__instance__f32.js │ │ │ │ │ ├── structarm__matrix__instance__f64.html │ │ │ │ │ ├── structarm__matrix__instance__f64.js │ │ │ │ │ ├── structarm__matrix__instance__q15.html │ │ │ │ │ ├── structarm__matrix__instance__q15.js │ │ │ │ │ ├── structarm__matrix__instance__q31.html │ │ │ │ │ ├── structarm__matrix__instance__q31.js │ │ │ │ │ ├── structarm__pid__instance__f32.html │ │ │ │ │ ├── structarm__pid__instance__f32.js │ │ │ │ │ ├── structarm__pid__instance__q15.html │ │ │ │ │ ├── structarm__pid__instance__q15.js │ │ │ │ │ ├── structarm__pid__instance__q31.html │ │ │ │ │ ├── structarm__pid__instance__q31.js │ │ │ │ │ ├── structarm__rfft__fast__instance__f32.html │ │ │ │ │ ├── structarm__rfft__fast__instance__f32.js │ │ │ │ │ ├── structarm__rfft__instance__f32.html │ │ │ │ │ ├── structarm__rfft__instance__f32.js │ │ │ │ │ ├── structarm__rfft__instance__q15.html │ │ │ │ │ ├── structarm__rfft__instance__q15.js │ │ │ │ │ ├── structarm__rfft__instance__q31.html │ │ │ │ │ ├── structarm__rfft__instance__q31.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ └── tabs.css │ │ │ ├── General │ │ │ │ └── html │ │ │ │ │ ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── CMSISv4_small.png │ │ │ │ │ ├── _c_m_revision_history.html │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ └── tabs.css │ │ │ ├── RTOS │ │ │ │ └── html │ │ │ │ │ ├── API_Structure.png │ │ │ │ │ ├── CMSIS_Logo_Final.png │ │ │ │ │ ├── CMSIS_RTOS_Files.png │ │ │ │ │ ├── MailQueue.png │ │ │ │ │ ├── MessageQueue.png │ │ │ │ │ ├── Mutex.png │ │ │ │ │ ├── Semaphore.png │ │ │ │ │ ├── ThreadStatus.png │ │ │ │ │ ├── Timer.png │ │ │ │ │ ├── TimerValues.png │ │ │ │ │ ├── _function_overview.html │ │ │ │ │ ├── _rtos_validation.html │ │ │ │ │ ├── _using_o_s.html │ │ │ │ │ ├── annotated.html │ │ │ │ │ ├── annotated.js │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── cmsis.css │ │ │ │ │ ├── cmsis__os_8h.html │ │ │ │ │ ├── cmsis__os_8txt.html │ │ │ │ │ ├── cmsis_os_h.html │ │ │ │ │ ├── dir_67baed4ff719a838d401a6dc7774cf41.html │ │ │ │ │ ├── dir_9afdeffb8e409a4e0df5c5bf9ab1a7d2.html │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── globals_defs.html │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ ├── globals_func.html │ │ │ │ │ ├── globals_type.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___definitions.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___definitions.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___inter_thread.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___inter_thread.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___kernel_ctrl.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___kernel_ctrl.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mail.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mail.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___message.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___message.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mutex_mgmt.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___mutex_mgmt.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___pool_mgmt.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___pool_mgmt.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___semaphore_mgmt.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___signal_mgmt.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___signal_mgmt.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___status.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___status.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___thread_mgmt.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___thread_mgmt.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___timer_mgmt.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___timer_mgmt.js │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___wait.html │ │ │ │ │ ├── group___c_m_s_i_s___r_t_o_s___wait.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── modules.js │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── navtree.css │ │ │ │ │ ├── navtree.js │ │ │ │ │ ├── navtreeindex0.js │ │ │ │ │ ├── open.png │ │ │ │ │ ├── pages.html │ │ │ │ │ ├── printComponentTabs.js │ │ │ │ │ ├── resize.js │ │ │ │ │ ├── rtos_revision_history.html │ │ │ │ │ ├── simple_signal.png │ │ │ │ │ ├── structos_mail_q_def__t.html │ │ │ │ │ ├── structos_mail_q_def__t.js │ │ │ │ │ ├── structos_message_q_def__t.html │ │ │ │ │ ├── structos_message_q_def__t.js │ │ │ │ │ ├── structos_mutex_def__t.html │ │ │ │ │ ├── structos_mutex_def__t.js │ │ │ │ │ ├── structos_pool_def__t.html │ │ │ │ │ ├── structos_pool_def__t.js │ │ │ │ │ ├── structos_semaphore_def__t.html │ │ │ │ │ ├── structos_semaphore_def__t.js │ │ │ │ │ ├── structos_thread_def__t.html │ │ │ │ │ ├── structos_thread_def__t.js │ │ │ │ │ ├── structos_timer_def__t.html │ │ │ │ │ ├── structos_timer_def__t.js │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ ├── tab_topnav.png │ │ │ │ │ └── tabs.css │ │ │ └── index.html │ │ ├── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armcc_V6.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ │ ├── Lib │ │ │ ├── ARM │ │ │ │ ├── arm_cortexM4b_math.lib │ │ │ │ ├── arm_cortexM4bf_math.lib │ │ │ │ ├── arm_cortexM4l_math.lib │ │ │ │ └── arm_cortexM4lf_math.lib │ │ │ ├── GCC │ │ │ │ ├── libarm_cortexM4l_math.a │ │ │ │ └── libarm_cortexM4lf_math.a │ │ │ └── license.txt │ │ ├── RTOS │ │ │ └── Template │ │ │ │ └── cmsis_os.h │ │ └── index.html │ └── STM32F4xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f4xx_hal.h │ │ ├── stm32f4xx_hal_adc.h │ │ ├── stm32f4xx_hal_adc_ex.h │ │ ├── stm32f4xx_hal_can.h │ │ ├── stm32f4xx_hal_cec.h │ │ ├── stm32f4xx_hal_conf_template.h │ │ ├── stm32f4xx_hal_cortex.h │ │ ├── stm32f4xx_hal_crc.h │ │ ├── stm32f4xx_hal_cryp.h │ │ ├── stm32f4xx_hal_cryp_ex.h │ │ ├── stm32f4xx_hal_dac.h │ │ ├── stm32f4xx_hal_dac_ex.h │ │ ├── stm32f4xx_hal_dcmi.h │ │ ├── stm32f4xx_hal_dcmi_ex.h │ │ ├── stm32f4xx_hal_def.h │ │ ├── stm32f4xx_hal_dfsdm.h │ │ ├── stm32f4xx_hal_dma.h │ │ ├── stm32f4xx_hal_dma2d.h │ │ ├── stm32f4xx_hal_dma_ex.h │ │ ├── stm32f4xx_hal_dsi.h │ │ ├── stm32f4xx_hal_eth.h │ │ ├── stm32f4xx_hal_flash.h │ │ ├── stm32f4xx_hal_flash_ex.h │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ ├── stm32f4xx_hal_fmpi2c.h │ │ ├── stm32f4xx_hal_fmpi2c_ex.h │ │ ├── stm32f4xx_hal_gpio.h │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ ├── stm32f4xx_hal_hash.h │ │ ├── stm32f4xx_hal_hash_ex.h │ │ ├── stm32f4xx_hal_hcd.h │ │ ├── stm32f4xx_hal_i2c.h │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ ├── stm32f4xx_hal_i2s.h │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ ├── stm32f4xx_hal_irda.h │ │ ├── stm32f4xx_hal_iwdg.h │ │ ├── stm32f4xx_hal_lptim.h │ │ ├── stm32f4xx_hal_ltdc.h │ │ ├── stm32f4xx_hal_ltdc_ex.h │ │ ├── stm32f4xx_hal_nand.h │ │ ├── stm32f4xx_hal_nor.h │ │ ├── stm32f4xx_hal_pccard.h │ │ ├── stm32f4xx_hal_pcd.h │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ ├── stm32f4xx_hal_pwr.h │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ ├── stm32f4xx_hal_qspi.h │ │ ├── stm32f4xx_hal_rcc.h │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ ├── stm32f4xx_hal_rng.h │ │ ├── stm32f4xx_hal_rtc.h │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ ├── stm32f4xx_hal_sai.h │ │ ├── stm32f4xx_hal_sai_ex.h │ │ ├── stm32f4xx_hal_sd.h │ │ ├── stm32f4xx_hal_sdram.h │ │ ├── stm32f4xx_hal_smartcard.h │ │ ├── stm32f4xx_hal_spdifrx.h │ │ ├── stm32f4xx_hal_spi.h │ │ ├── stm32f4xx_hal_sram.h │ │ ├── stm32f4xx_hal_tim.h │ │ ├── stm32f4xx_hal_tim_ex.h │ │ ├── stm32f4xx_hal_uart.h │ │ ├── stm32f4xx_hal_usart.h │ │ ├── stm32f4xx_hal_wwdg.h │ │ ├── stm32f4xx_ll_fmc.h │ │ ├── stm32f4xx_ll_fsmc.h │ │ ├── stm32f4xx_ll_sdmmc.h │ │ └── stm32f4xx_ll_usb.h │ │ ├── Release_Notes.html │ │ ├── STM32F410Rx_User_Manual.chm │ │ ├── STM32F411xE_User_Manual.chm │ │ ├── STM32F412Zx_User_Manual.chm │ │ ├── STM32F417xx_User_Manual.chm │ │ ├── STM32F423xx_User_Manual.chm │ │ ├── STM32F439xx_User_Manual.chm │ │ ├── STM32F446xx_User_Manual.chm │ │ ├── STM32F479xx_User_Manual.chm │ │ └── Src │ │ ├── stm32f4xx_hal.c │ │ ├── stm32f4xx_hal_adc.c │ │ ├── stm32f4xx_hal_adc_ex.c │ │ ├── stm32f4xx_hal_can.c │ │ ├── stm32f4xx_hal_cec.c │ │ ├── stm32f4xx_hal_cortex.c │ │ ├── stm32f4xx_hal_crc.c │ │ ├── stm32f4xx_hal_cryp.c │ │ ├── stm32f4xx_hal_cryp_ex.c │ │ ├── stm32f4xx_hal_dac.c │ │ ├── stm32f4xx_hal_dac_ex.c │ │ ├── stm32f4xx_hal_dcmi.c │ │ ├── stm32f4xx_hal_dcmi_ex.c │ │ ├── stm32f4xx_hal_dfsdm.c │ │ ├── stm32f4xx_hal_dma.c │ │ ├── stm32f4xx_hal_dma2d.c │ │ ├── stm32f4xx_hal_dma_ex.c │ │ ├── stm32f4xx_hal_dsi.c │ │ ├── stm32f4xx_hal_eth.c │ │ ├── stm32f4xx_hal_flash.c │ │ ├── stm32f4xx_hal_flash_ex.c │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ ├── stm32f4xx_hal_fmpi2c.c │ │ ├── stm32f4xx_hal_fmpi2c_ex.c │ │ ├── stm32f4xx_hal_gpio.c │ │ ├── stm32f4xx_hal_hash.c │ │ ├── stm32f4xx_hal_hash_ex.c │ │ ├── stm32f4xx_hal_hcd.c │ │ ├── stm32f4xx_hal_i2c.c │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ ├── stm32f4xx_hal_i2s.c │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ ├── stm32f4xx_hal_irda.c │ │ ├── stm32f4xx_hal_iwdg.c │ │ ├── stm32f4xx_hal_lptim.c │ │ ├── stm32f4xx_hal_ltdc.c │ │ ├── stm32f4xx_hal_ltdc_ex.c │ │ ├── stm32f4xx_hal_msp_template.c │ │ ├── stm32f4xx_hal_nand.c │ │ ├── stm32f4xx_hal_nor.c │ │ ├── stm32f4xx_hal_pccard.c │ │ ├── stm32f4xx_hal_pcd.c │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ ├── stm32f4xx_hal_pwr.c │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ ├── stm32f4xx_hal_qspi.c │ │ ├── stm32f4xx_hal_rcc.c │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ ├── stm32f4xx_hal_rng.c │ │ ├── stm32f4xx_hal_rtc.c │ │ ├── stm32f4xx_hal_rtc_ex.c │ │ ├── stm32f4xx_hal_sai.c │ │ ├── stm32f4xx_hal_sai_ex.c │ │ ├── stm32f4xx_hal_sd.c │ │ ├── stm32f4xx_hal_sdram.c │ │ ├── stm32f4xx_hal_smartcard.c │ │ ├── stm32f4xx_hal_spdifrx.c │ │ ├── stm32f4xx_hal_spi.c │ │ ├── stm32f4xx_hal_sram.c │ │ ├── stm32f4xx_hal_tim.c │ │ ├── stm32f4xx_hal_tim_ex.c │ │ ├── stm32f4xx_hal_timebase_rtc_alarm_template.c │ │ ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c │ │ ├── stm32f4xx_hal_timebase_tim_template.c │ │ ├── stm32f4xx_hal_uart.c │ │ ├── stm32f4xx_hal_usart.c │ │ ├── stm32f4xx_hal_wwdg.c │ │ ├── stm32f4xx_ll_fmc.c │ │ ├── stm32f4xx_ll_fsmc.c │ │ ├── stm32f4xx_ll_sdmmc.c │ │ └── stm32f4xx_ll_usb.c ├── Middlewares │ └── ST │ │ ├── STM32_USB_Device_Library │ │ ├── Class │ │ │ ├── AUDIO │ │ │ │ ├── Inc │ │ │ │ │ ├── usbd_audio.h │ │ │ │ │ └── usbd_audio_if_template.h │ │ │ │ └── Src │ │ │ │ │ ├── usbd_audio.c │ │ │ │ │ └── usbd_audio_if_template.c │ │ │ ├── CDC │ │ │ │ ├── Inc │ │ │ │ │ ├── usbd_cdc.h │ │ │ │ │ └── usbd_cdc_if_template.h │ │ │ │ └── Src │ │ │ │ │ ├── usbd_cdc.c │ │ │ │ │ └── usbd_cdc_if_template.c │ │ │ ├── CustomHID │ │ │ │ ├── Inc │ │ │ │ │ ├── usbd_customhid.h │ │ │ │ │ └── usbd_customhid_if_template.h │ │ │ │ └── Src │ │ │ │ │ ├── usbd_customhid.c │ │ │ │ │ └── usbd_customhid_if_template.c │ │ │ ├── DFU │ │ │ │ ├── Inc │ │ │ │ │ ├── usbd_dfu.h │ │ │ │ │ └── usbd_dfu_media_template.h │ │ │ │ └── Src │ │ │ │ │ ├── usbd_dfu.c │ │ │ │ │ └── usbd_dfu_media_template.c │ │ │ ├── HID │ │ │ │ ├── Inc │ │ │ │ │ └── usbd_hid.h │ │ │ │ └── Src │ │ │ │ │ └── usbd_hid.c │ │ │ ├── MSC │ │ │ │ ├── Inc │ │ │ │ │ ├── usbd_msc.h │ │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_scsi.h │ │ │ │ │ └── usbd_msc_storage_template.h │ │ │ │ └── Src │ │ │ │ │ ├── usbd_msc.c │ │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ ├── usbd_msc_scsi.c │ │ │ │ │ └── usbd_msc_storage_template.c │ │ │ └── Template │ │ │ │ ├── Inc │ │ │ │ └── usbd_template.h │ │ │ │ └── Src │ │ │ │ └── usbd_template.c │ │ ├── Core │ │ │ ├── Inc │ │ │ │ ├── usbd_conf_template.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_ctlreq.h │ │ │ │ ├── usbd_def.h │ │ │ │ └── usbd_ioreq.h │ │ │ └── Src │ │ │ │ ├── usbd_conf_template.c │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_ctlreq.c │ │ │ │ └── usbd_ioreq.c │ │ └── Release_Notes.html │ │ └── STM32_USB_Host_Library │ │ ├── Class │ │ ├── AUDIO │ │ │ ├── Inc │ │ │ │ └── usbh_audio.h │ │ │ └── Src │ │ │ │ └── usbh_audio.c │ │ ├── CDC │ │ │ ├── Inc │ │ │ │ └── usbh_cdc.h │ │ │ └── Src │ │ │ │ └── usbh_cdc.c │ │ ├── HID │ │ │ ├── Inc │ │ │ │ ├── usbh_hid.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Src │ │ │ │ ├── usbh_hid.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ ├── MSC │ │ │ ├── Inc │ │ │ │ ├── usbh_msc.h │ │ │ │ ├── usbh_msc_bot.h │ │ │ │ └── usbh_msc_scsi.h │ │ │ └── Src │ │ │ │ ├── usbh_msc.c │ │ │ │ ├── usbh_msc_bot.c │ │ │ │ └── usbh_msc_scsi.c │ │ ├── MTP │ │ │ ├── Inc │ │ │ │ ├── usbh_mtp.h │ │ │ │ └── usbh_mtp_ptp.h │ │ │ └── Src │ │ │ │ ├── usbh_mtp.c │ │ │ │ └── usbh_mtp_ptp.c │ │ └── Template │ │ │ ├── Inc │ │ │ └── usbh_template.h │ │ │ └── Src │ │ │ └── usbh_template.c │ │ ├── Core │ │ ├── Inc │ │ │ ├── usbh_conf_template.h │ │ │ ├── usbh_core.h │ │ │ ├── usbh_ctlreq.h │ │ │ ├── usbh_def.h │ │ │ ├── usbh_ioreq.h │ │ │ └── usbh_pipes.h │ │ └── Src │ │ │ ├── usbh_conf_template.c │ │ │ ├── usbh_core.c │ │ │ ├── usbh_ctlreq.c │ │ │ ├── usbh_ioreq.c │ │ │ └── usbh_pipes.c │ │ └── Release_Notes.html └── libstm32f4 │ └── build_gcc │ ├── .gitignore │ ├── Makefile │ ├── debug.mk │ ├── gcc.mk │ ├── readme.md │ ├── release.mk │ └── stm32f4.mk └── variants ├── STM32F407VG_Disco ├── PeripheralPins.c ├── PinNames.h ├── libstm32f4_disco_f407vg_gcc_rel.a ├── libstm32f4_disco_f407vg_gcc_rel.a.txt ├── linker_scripts │ └── gcc │ │ └── STM32F407VGTx_FLASH.ld ├── pins_arduino.h ├── stm32f4xx_hal_conf.h ├── usb │ ├── usbd_conf.c │ ├── usbd_conf.h │ ├── usbd_desc.c │ └── usbd_desc.h ├── variant.cpp └── variant.h └── STM32F429ZI_Nucleo ├── PeripheralPins.c ├── PinNames.h ├── libstm32f4_nucleo_f429zi_gcc_rel.a ├── libstm32f4_nucleo_f429zi_gcc_rel.a.txt ├── linker_scripts └── gcc │ └── STM32F429ZI_FLASH.ld ├── pins_arduino.h ├── stm32f4xx_hal_conf.h ├── usb ├── usbd_conf.c ├── usbd_conf.h ├── usbd_desc.c └── usbd_desc.h ├── variant.cpp └── variant.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.orig 2 | *.swp 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/boards.txt -------------------------------------------------------------------------------- /cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /cores/arduino/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Client.h -------------------------------------------------------------------------------- /cores/arduino/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/HardwareSerial.h -------------------------------------------------------------------------------- /cores/arduino/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/IPAddress.cpp -------------------------------------------------------------------------------- /cores/arduino/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/IPAddress.h -------------------------------------------------------------------------------- /cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Print.h -------------------------------------------------------------------------------- /cores/arduino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Printable.h -------------------------------------------------------------------------------- /cores/arduino/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/RingBuffer.cpp -------------------------------------------------------------------------------- /cores/arduino/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/RingBuffer.h -------------------------------------------------------------------------------- /cores/arduino/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Server.h -------------------------------------------------------------------------------- /cores/arduino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Stream.cpp -------------------------------------------------------------------------------- /cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Stream.h -------------------------------------------------------------------------------- /cores/arduino/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Tone.cpp -------------------------------------------------------------------------------- /cores/arduino/Tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Tone.h -------------------------------------------------------------------------------- /cores/arduino/UARTClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/UARTClass.cpp -------------------------------------------------------------------------------- /cores/arduino/UARTClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/UARTClass.h -------------------------------------------------------------------------------- /cores/arduino/USARTClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/USARTClass.cpp -------------------------------------------------------------------------------- /cores/arduino/USARTClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/USARTClass.h -------------------------------------------------------------------------------- /cores/arduino/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/Udp.h -------------------------------------------------------------------------------- /cores/arduino/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/WCharacter.h -------------------------------------------------------------------------------- /cores/arduino/WInterrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/WInterrupts.c -------------------------------------------------------------------------------- /cores/arduino/WInterrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/WInterrupts.h -------------------------------------------------------------------------------- /cores/arduino/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/WMath.cpp -------------------------------------------------------------------------------- /cores/arduino/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/WMath.h -------------------------------------------------------------------------------- /cores/arduino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/WString.cpp -------------------------------------------------------------------------------- /cores/arduino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/WString.h -------------------------------------------------------------------------------- /cores/arduino/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/abi.cpp -------------------------------------------------------------------------------- /cores/arduino/avr/PeripheralPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/PeripheralPins.h -------------------------------------------------------------------------------- /cores/arduino/avr/PinConfigured.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/PinConfigured.c -------------------------------------------------------------------------------- /cores/arduino/avr/PinConfigured.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/PinConfigured.h -------------------------------------------------------------------------------- /cores/arduino/avr/PinNamesTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/PinNamesTypes.h -------------------------------------------------------------------------------- /cores/arduino/avr/PortNames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/PortNames.c -------------------------------------------------------------------------------- /cores/arduino/avr/PortNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/PortNames.h -------------------------------------------------------------------------------- /cores/arduino/avr/dtostrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/dtostrf.c -------------------------------------------------------------------------------- /cores/arduino/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/dtostrf.h -------------------------------------------------------------------------------- /cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /cores/arduino/avr/pinmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/pinmap.c -------------------------------------------------------------------------------- /cores/arduino/avr/pinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/avr/pinmap.h -------------------------------------------------------------------------------- /cores/arduino/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/binary.h -------------------------------------------------------------------------------- /cores/arduino/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/chip.h -------------------------------------------------------------------------------- /cores/arduino/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/hooks.c -------------------------------------------------------------------------------- /cores/arduino/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/itoa.c -------------------------------------------------------------------------------- /cores/arduino/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/itoa.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/analog.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/analog.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/clock.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/clock.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/digital_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/digital_io.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/digital_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/digital_io.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/hw_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/hw_config.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/hw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/hw_config.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/interrupt.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/interrupt.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/spi_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/spi_com.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/spi_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/spi_com.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/stm32_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/stm32_eeprom.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/stm32_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/stm32_eeprom.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/system_stm32f4xx.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/timer.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/timer.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/twi.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/twi.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/uart.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/uart.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/uart_emul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/uart_emul.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/uart_emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/uart_emul.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/usb_device_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/usb_device_core.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/usb_device_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/usb_device_ctlreq.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/usb_device_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/usb_device_ioreq.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/usb_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/usb_interface.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/usb_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/usb_interface.h -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/usbd_hid_composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/usbd_hid_composite.c -------------------------------------------------------------------------------- /cores/arduino/libstm32f4/usbd_hid_composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/libstm32f4/usbd_hid_composite.h -------------------------------------------------------------------------------- /cores/arduino/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/main.cpp -------------------------------------------------------------------------------- /cores/arduino/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/new.cpp -------------------------------------------------------------------------------- /cores/arduino/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/syscalls.h -------------------------------------------------------------------------------- /cores/arduino/syscalls_stm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/syscalls_stm32.c -------------------------------------------------------------------------------- /cores/arduino/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring.c -------------------------------------------------------------------------------- /cores/arduino/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring.h -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_analog.c -------------------------------------------------------------------------------- /cores/arduino/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_analog.h -------------------------------------------------------------------------------- /cores/arduino/wiring_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_constants.h -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_digital.c -------------------------------------------------------------------------------- /cores/arduino/wiring_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_digital.h -------------------------------------------------------------------------------- /cores/arduino/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_private.h -------------------------------------------------------------------------------- /cores/arduino/wiring_pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_pulse.cpp -------------------------------------------------------------------------------- /cores/arduino/wiring_pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_pulse.h -------------------------------------------------------------------------------- /cores/arduino/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_shift.c -------------------------------------------------------------------------------- /cores/arduino/wiring_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/cores/arduino/wiring_shift.h -------------------------------------------------------------------------------- /libraries/CapacitiveSensor-0.5.1/CapacitiveSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/CapacitiveSensor-0.5.1/CapacitiveSensor.cpp -------------------------------------------------------------------------------- /libraries/CapacitiveSensor-0.5.1/CapacitiveSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/CapacitiveSensor-0.5.1/CapacitiveSensor.h -------------------------------------------------------------------------------- /libraries/CapacitiveSensor-0.5.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/CapacitiveSensor-0.5.1/README.md -------------------------------------------------------------------------------- /libraries/CapacitiveSensor-0.5.1/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/CapacitiveSensor-0.5.1/keywords.txt -------------------------------------------------------------------------------- /libraries/CapacitiveSensor-0.5.1/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/CapacitiveSensor-0.5.1/library.properties -------------------------------------------------------------------------------- /libraries/EEPROM/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/EEPROM.h -------------------------------------------------------------------------------- /libraries/EEPROM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/README.md -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_get/eeprom_get.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_put/eeprom_put.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_read/eeprom_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_update/eeprom_update.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/examples/eeprom_update/eeprom_update.ino -------------------------------------------------------------------------------- /libraries/EEPROM/examples/eeprom_write/eeprom_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino -------------------------------------------------------------------------------- /libraries/EEPROM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/keywords.txt -------------------------------------------------------------------------------- /libraries/EEPROM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/EEPROM/library.properties -------------------------------------------------------------------------------- /libraries/Firmata/Boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/Boards.h -------------------------------------------------------------------------------- /libraries/Firmata/Firmata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/Firmata.cpp -------------------------------------------------------------------------------- /libraries/Firmata/Firmata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/Firmata.h -------------------------------------------------------------------------------- /libraries/Firmata/examples/AnalogFirmata/AnalogFirmata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/AnalogFirmata/AnalogFirmata.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/EchoString/EchoString.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/EchoString/EchoString.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/OldStandardFirmata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/OldStandardFirmata/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/ServoFirmata/ServoFirmata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/ServoFirmata/ServoFirmata.ino -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/StandardFirmata/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmataPlus/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/StandardFirmataPlus/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmataWiFi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/StandardFirmataWiFi/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/examples/StandardFirmataWiFi/wifiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/examples/StandardFirmataWiFi/wifiConfig.h -------------------------------------------------------------------------------- /libraries/Firmata/extras/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/extras/LICENSE.txt -------------------------------------------------------------------------------- /libraries/Firmata/extras/revisions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/extras/revisions.txt -------------------------------------------------------------------------------- /libraries/Firmata/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/keywords.txt -------------------------------------------------------------------------------- /libraries/Firmata/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/library.properties -------------------------------------------------------------------------------- /libraries/Firmata/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/readme.md -------------------------------------------------------------------------------- /libraries/Firmata/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/release.sh -------------------------------------------------------------------------------- /libraries/Firmata/test/firmata_test/firmata_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/test/firmata_test/firmata_test.ino -------------------------------------------------------------------------------- /libraries/Firmata/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/test/readme.md -------------------------------------------------------------------------------- /libraries/Firmata/utility/EthernetClientStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/EthernetClientStream.cpp -------------------------------------------------------------------------------- /libraries/Firmata/utility/EthernetClientStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/EthernetClientStream.h -------------------------------------------------------------------------------- /libraries/Firmata/utility/FirmataFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/FirmataFeature.h -------------------------------------------------------------------------------- /libraries/Firmata/utility/SerialFirmata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/SerialFirmata.cpp -------------------------------------------------------------------------------- /libraries/Firmata/utility/SerialFirmata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/SerialFirmata.h -------------------------------------------------------------------------------- /libraries/Firmata/utility/WiFi101Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/WiFi101Stream.cpp -------------------------------------------------------------------------------- /libraries/Firmata/utility/WiFi101Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/WiFi101Stream.h -------------------------------------------------------------------------------- /libraries/Firmata/utility/WiFiStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/WiFiStream.cpp -------------------------------------------------------------------------------- /libraries/Firmata/utility/WiFiStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/WiFiStream.h -------------------------------------------------------------------------------- /libraries/Firmata/utility/firmataDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Firmata/utility/firmataDebug.h -------------------------------------------------------------------------------- /libraries/GSM/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/README.adoc -------------------------------------------------------------------------------- /libraries/GSM/examples/GsmWebClient/GsmWebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/GsmWebServer/GsmWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/SendSMS/SendSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/SendSMS/SendSMS.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/PinManagement/PinManagement.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/Tools/PinManagement/PinManagement.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/TestModem/TestModem.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/Tools/TestModem/TestModem.ino -------------------------------------------------------------------------------- /libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino -------------------------------------------------------------------------------- /libraries/GSM/extras/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/extras/License.txt -------------------------------------------------------------------------------- /libraries/GSM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/keywords.txt -------------------------------------------------------------------------------- /libraries/GSM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/library.properties -------------------------------------------------------------------------------- /libraries/GSM/src/DEFAULT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/DEFAULT.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3CircularBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3CircularBuffer.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3CircularBuffer.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3IO.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileAccessProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileAccessProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileAccessProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileAccessProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileCellManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileCellManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileCellManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileCellManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileClientProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileClientProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileClientService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileClientService.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileDataNetworkProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileDataNetworkProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileDataNetworkProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileDataNetworkProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileMockupProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileMockupProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileMockupProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileMockupProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileNetworkProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileNetworkProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileNetworkRegistry.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileNetworkRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileNetworkRegistry.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileSMSProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileSMSProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileSMSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileSMSProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileServerProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileServerProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileServerService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileServerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileServerService.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileVoiceProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileVoiceProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3MobileVoiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3MobileVoiceProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SMSService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3SMSService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SMSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3SMSService.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1AccessProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1AccessProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BandManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1BandManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BandManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1BandManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BaseProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1BaseProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1BaseProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1BaseProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1CellManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1CellManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1CellManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1CellManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ClientProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ClientProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DirectModemProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1DirectModemProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1DirectModemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1DirectModemProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ModemCore.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ModemCore.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ModemVerification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ModemVerification.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiClientProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1MultiClientProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiClientProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1MultiClientProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiServerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1MultiServerProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1MultiServerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1MultiServerProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1PinManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1PinManagement.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1PinManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1PinManagement.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1SMSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1SMSProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ScanNetworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ScanNetworks.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ServerProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ServerProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1ServerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1ServerProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1VoiceProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1VoiceProvider.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV1VoiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV1VoiceProvider.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV2.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3ShieldV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3ShieldV2.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SoftSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3SoftSerial.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3SoftSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3SoftSerial.h -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3VoiceCallService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3VoiceCallService.cpp -------------------------------------------------------------------------------- /libraries/GSM/src/GSM3VoiceCallService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/GSM/src/GSM3VoiceCallService.h -------------------------------------------------------------------------------- /libraries/Keyboard/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Keyboard/README.adoc -------------------------------------------------------------------------------- /libraries/Keyboard/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Keyboard/keywords.txt -------------------------------------------------------------------------------- /libraries/Keyboard/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Keyboard/library.properties -------------------------------------------------------------------------------- /libraries/Keyboard/src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Keyboard/src/Keyboard.cpp -------------------------------------------------------------------------------- /libraries/Keyboard/src/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Keyboard/src/Keyboard.h -------------------------------------------------------------------------------- /libraries/LiquidCrystal/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/README.adoc -------------------------------------------------------------------------------- /libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino -------------------------------------------------------------------------------- /libraries/LiquidCrystal/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /libraries/LiquidCrystal/examples/Cursor/Cursor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/examples/Cursor/Cursor.ino -------------------------------------------------------------------------------- /libraries/LiquidCrystal/examples/Display/Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/examples/Display/Display.ino -------------------------------------------------------------------------------- /libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.ino -------------------------------------------------------------------------------- /libraries/LiquidCrystal/examples/Scroll/Scroll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/examples/Scroll/Scroll.ino -------------------------------------------------------------------------------- /libraries/LiquidCrystal/examples/setCursor/setCursor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/examples/setCursor/setCursor.ino -------------------------------------------------------------------------------- /libraries/LiquidCrystal/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/keywords.txt -------------------------------------------------------------------------------- /libraries/LiquidCrystal/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/library.properties -------------------------------------------------------------------------------- /libraries/LiquidCrystal/src/LiquidCrystal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/src/LiquidCrystal.cpp -------------------------------------------------------------------------------- /libraries/LiquidCrystal/src/LiquidCrystal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/LiquidCrystal/src/LiquidCrystal.h -------------------------------------------------------------------------------- /libraries/Mouse/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Mouse/README.adoc -------------------------------------------------------------------------------- /libraries/Mouse/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Mouse/keywords.txt -------------------------------------------------------------------------------- /libraries/Mouse/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Mouse/library.properties -------------------------------------------------------------------------------- /libraries/Mouse/src/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Mouse/src/Mouse.cpp -------------------------------------------------------------------------------- /libraries/Mouse/src/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Mouse/src/Mouse.h -------------------------------------------------------------------------------- /libraries/SPI/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/SPI/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/SPI/SPI.h -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/Servo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/README.adoc -------------------------------------------------------------------------------- /libraries/Servo/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/Servo.h -------------------------------------------------------------------------------- /libraries/Servo/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/ServoTimers.h -------------------------------------------------------------------------------- /libraries/Servo/examples/Knob/Knob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/examples/Knob/Knob.ino -------------------------------------------------------------------------------- /libraries/Servo/examples/Sweep/Sweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/examples/Sweep/Sweep.ino -------------------------------------------------------------------------------- /libraries/Servo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/keywords.txt -------------------------------------------------------------------------------- /libraries/Servo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Servo/library.properties -------------------------------------------------------------------------------- /libraries/TFT/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/README.adoc -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTBitmapLogo/arduino.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/examples/Arduino/TFTBitmapLogo/arduino.bmp -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino -------------------------------------------------------------------------------- /libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino -------------------------------------------------------------------------------- /libraries/TFT/extras/Adafruit-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/extras/Adafruit-README.txt -------------------------------------------------------------------------------- /libraries/TFT/extras/Adafruit-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/extras/Adafruit-license.txt -------------------------------------------------------------------------------- /libraries/TFT/extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/extras/README.md -------------------------------------------------------------------------------- /libraries/TFT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/keywords.txt -------------------------------------------------------------------------------- /libraries/TFT/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/library.properties -------------------------------------------------------------------------------- /libraries/TFT/src/TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/TFT.cpp -------------------------------------------------------------------------------- /libraries/TFT/src/TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/TFT.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/utility/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/utility/Adafruit_GFX.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_ST7735.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/utility/Adafruit_ST7735.cpp -------------------------------------------------------------------------------- /libraries/TFT/src/utility/Adafruit_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/utility/Adafruit_ST7735.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/PImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/utility/PImage.h -------------------------------------------------------------------------------- /libraries/TFT/src/utility/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/utility/glcdfont.c -------------------------------------------------------------------------------- /libraries/TFT/src/utility/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/TFT/src/utility/keywords.txt -------------------------------------------------------------------------------- /libraries/WiFi/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/README.adoc -------------------------------------------------------------------------------- /libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino -------------------------------------------------------------------------------- /libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifiHD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/binary/wifiHD.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifiHD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/binary/wifiHD.hex -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifiHD_2_1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/binary/wifiHD_2_1.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifi_dnld.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/binary/wifi_dnld.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifi_dnld.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/binary/wifi_dnld.hex -------------------------------------------------------------------------------- /libraries/WiFi/extras/binary/wifi_dnld_2_1.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/binary/wifi_dnld_2_1.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/scripts/ArduinoWifiShield_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/scripts/ArduinoWifiShield_upgrade.sh -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/.cproject -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/.project -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/Release/wifiHD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/Release/wifiHD.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/Release/wifiHD.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/Release/wifiHD.hex -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_access.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_at45dbx.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_ebi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_ebi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/CONFIG/conf_sd_mmc_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/CONFIG/conf_sd_mmc_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/SOFTWARE_FRAMEWORK/COMPONENTS/WIFI/HD/v2.7.0/revision.txt: -------------------------------------------------------------------------------- 1 | Revision: 2491 2 | -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ard_spi.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ard_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ard_tcp.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ard_tcp.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ard_utils.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ard_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ard_utils.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/avr32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/avr32_spi.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/board_init.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/board_init.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/cmd_wl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/cmd_wl.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/cmd_wl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/cmd_wl.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/console.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/console.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/debug.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/fw_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/fw_download.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/fw_download_extflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/fw_download_extflash.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/license.txt -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/lwip_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/lwip_setup.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/lwip_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/lwip_setup.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/lwipopts.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/main.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/nvram.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/nvram.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/owl_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/owl_os.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ping.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/ping.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/printf-stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/printf-stdarg.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/printf-stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/printf-stdarg.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/timer.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/timer.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/top_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/top_defs.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/trace.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/util.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/util.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/wifi_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wl_cm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/wl_cm.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wl_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/wl_cm.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/src/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/src/wl_definitions.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifiHD/wifiHD.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifiHD/wifiHD.cproj -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/.cproject -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/.project -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/Release/wifi_dnld.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/Release/wifi_dnld.elf -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_access.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_at45dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/CONFIG/conf_at45dbx.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/Doc/gettingstarted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/Doc/gettingstarted.pdf -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/clocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/clocks.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/clocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/clocks.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/flash_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/flash_fw.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/license.txt -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/nor_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/nor_flash.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/nor_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/nor_flash.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/printf-stdarg.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/startup.c -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/startup.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/src/wl_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/src/wl_fw.h -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifi_dnld/wifi_dnld.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifi_dnld/wifi_dnld.cproj -------------------------------------------------------------------------------- /libraries/WiFi/extras/wifishield.atsln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/extras/wifishield.atsln -------------------------------------------------------------------------------- /libraries/WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/keywords.txt -------------------------------------------------------------------------------- /libraries/WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/library.properties -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFi.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFi.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFiClient.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFiClient.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFiServer.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFiServer.h -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/WiFiUdp.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/debug.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/server_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/server_drv.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/server_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/server_drv.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/spi_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/spi_drv.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/spi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/spi_drv.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wifi_drv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/wifi_drv.cpp -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wifi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/wifi_drv.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wifi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/wifi_spi.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wl_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/wl_definitions.h -------------------------------------------------------------------------------- /libraries/WiFi/src/utility/wl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/WiFi/src/utility/wl_types.h -------------------------------------------------------------------------------- /libraries/Wire/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/Wire.cpp -------------------------------------------------------------------------------- /libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /libraries/Wire/examples/master_reader/master_reader.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/examples/master_reader/master_reader.pde -------------------------------------------------------------------------------- /libraries/Wire/examples/master_writer/master_writer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/examples/master_writer/master_writer.pde -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_receiver/slave_receiver.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/examples/slave_receiver/slave_receiver.pde -------------------------------------------------------------------------------- /libraries/Wire/examples/slave_sender/slave_sender.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/examples/slave_sender/slave_sender.pde -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/Drivers/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.pdf -------------------------------------------------------------------------------- /system/Drivers/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/CMSIS_END_USER_LICENCE_AGREEMENT.rtf -------------------------------------------------------------------------------- /system/Drivers/CMSIS/DSP_Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/DSP_Lib/license.txt -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Device/ST/STM32F4xx/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Device/ST/STM32F4xx/Release_Notes.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/_using_pg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/_using_pg.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/_using_pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/_using_pg.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/annotated.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/annotated.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/bc_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/bdwn.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/check.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/classes.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/closed.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/cmsis.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/doxygen.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/doxygen.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/dynsections.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2blank.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2cl.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2doc.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2link.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2mnode.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2mo.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2node.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2ns.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/ftv2pnode.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/functions.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/globals.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/index.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/jquery.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/modules.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/modules.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/nav_f.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/nav_g.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/nav_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/navtree.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/navtree.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/open.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/pages.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/resize.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/search.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/sync_off.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/sync_on.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/tab_a.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/tab_b.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/tab_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/tab_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/tab_topnav.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/Core/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/Core/html/tabs.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/Biquad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/Biquad.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/CFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/CFFT.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/CFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/CFFTQ15.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/CFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/CFFTQ31.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/CIFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/CIFFTQ15.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/CIFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/CIFFTQ31.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/Convolution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/Convolution.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/DCT4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/DCT4.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/DCT4Equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/DCT4Equation.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FFTBin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FFTBin.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FFTBinInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FFTBinInput.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FFTBinOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FFTBinOutput.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FIR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FIR.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FIRDecimator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FIRDecimator.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FIRLPF_input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FIRLPF_input.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FIRLattice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FIRLattice.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/FIRSparse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/FIRSparse.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/IIRLattice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/IIRLattice.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/LMS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/LMS.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/LinearInterp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/LinearInterp.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/MatrixScale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/MatrixScale.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/PID.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/PID.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/RFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/RFFT.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/RFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/RFFTQ15.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/RFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/RFFTQ31.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/RIFFT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/RIFFT.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/RIFFTQ15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/RIFFTQ15.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/RIFFTQ31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/RIFFTQ31.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/SignalFlow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/SignalFlow.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/Variance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/Variance.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/annotated.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/annotated.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/bc_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/bdwn.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/clarke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/clarke.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/classes.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/closed.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/cmsis.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/deprecated.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/dotProduct.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/dotProduct.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/doxygen.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/doxygen.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/dynsections.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/examples.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/files.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2blank.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2cl.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2doc.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2lastnode.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2link.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2mnode.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2mo.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2node.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2ns.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2pnode.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2splitbar.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/ftv2vertline.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/functions.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/functions_dup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/functions_dup.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/globals.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___conv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___conv.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___corr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___corr.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___f_i_r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___f_i_r.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___fill.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___l_m_s.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___l_m_s.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___max.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___max.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___min.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___min.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___p_i_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___p_i_d.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___r_m_s.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___r_m_s.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group___s_t_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group___s_t_d.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__clarke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__clarke.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__copy.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__copy.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__cos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__cos.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__cos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__cos.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__mean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__mean.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__mean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__mean.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__negate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__negate.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__offset.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__park.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__park.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__park.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__park.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__power.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__scale.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__shift.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__sin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__sin.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/group__sin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/group__sin.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/index.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/jquery.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/modules.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/modules.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/nav_f.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/nav_g.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/nav_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/navtree.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/navtree.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex0.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex1.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex2.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/navtreeindex3.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/open.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/pages.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/park.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/park.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/parkFormula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/parkFormula.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/resize.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_5f.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_61.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_61.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_62.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_63.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_64.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_65.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_65.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_66.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_66.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_67.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_68.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_68.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_69.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_69.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_6b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_6b.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_6c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_6c.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_6d.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_6e.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_6f.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_70.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_71.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_71.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_72.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_72.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_73.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_74.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_74.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_75.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_75.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_76.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_76.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_77.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/all_78.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/all_78.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/close.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/search/search.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/sinCos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/sinCos.gif -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/sync_off.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/sync_on.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/tab_a.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/tab_b.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/tab_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/tab_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/tab_topnav.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/DSP/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/DSP/html/tabs.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/bc_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/bdwn.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/closed.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/cmsis.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/doxygen.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/doxygen.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/ftv2cl.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/ftv2doc.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/ftv2link.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/ftv2mo.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/ftv2node.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/ftv2ns.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/index.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/jquery.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/nav_f.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/nav_g.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/nav_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/navtree.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/navtree.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/open.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/pages.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/resize.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/sync_off.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/sync_on.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/tab_a.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/tab_b.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/tab_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/tab_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/General/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/General/html/tabs.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/MailQueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/MailQueue.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/Mutex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/Mutex.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/Semaphore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/Semaphore.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/Timer.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/TimerValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/TimerValues.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/_using_o_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/_using_o_s.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/annotated.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/annotated.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/bc_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/bdwn.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/classes.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/closed.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/cmsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/cmsis.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/cmsis_os_h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/cmsis_os_h.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/doxygen.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/doxygen.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/dynsections.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/files.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2blank.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2cl.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2doc.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2link.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2mnode.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2mo.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2node.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2ns.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/ftv2pnode.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/functions.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/globals.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/index.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/jquery.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/modules.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/modules.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/nav_f.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/nav_g.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/nav_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/navtree.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/navtree.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/open.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/pages.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/resize.js -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/sync_off.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/sync_on.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/tab_a.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/tab_b.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/tab_h.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/tab_s.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/tab_topnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/tab_topnav.png -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/RTOS/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/RTOS/html/tabs.css -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Documentation/index.html -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Lib/ARM/arm_cortexM4b_math.lib -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Lib/ARM/arm_cortexM4bf_math.lib -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Lib/ARM/arm_cortexM4l_math.lib -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Lib/ARM/arm_cortexM4lf_math.lib -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Lib/GCC/libarm_cortexM4l_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Lib/GCC/libarm_cortexM4l_math.a -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Lib/GCC/libarm_cortexM4lf_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Lib/GCC/libarm_cortexM4lf_math.a -------------------------------------------------------------------------------- /system/Drivers/CMSIS/Lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/Lib/license.txt -------------------------------------------------------------------------------- /system/Drivers/CMSIS/RTOS/Template/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/RTOS/Template/cmsis_os.h -------------------------------------------------------------------------------- /system/Drivers/CMSIS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/CMSIS/index.html -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cec.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cryp.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dcmi.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dsi.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_eth.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hash.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_hcd.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2s.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_irda.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_iwdg.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_ltdc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nand.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_nor.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_qspi.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sai.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sd.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_sram.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_wwdg.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fmc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_fsmc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_sdmmc.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Release_Notes.html -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cec.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cryp.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dcmi.c -------------------------------------------------------------------------------- /system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /system/libstm32f4/build_gcc/.gitignore: -------------------------------------------------------------------------------- 1 | release_* 2 | debug_* 3 | -------------------------------------------------------------------------------- /system/libstm32f4/build_gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/libstm32f4/build_gcc/Makefile -------------------------------------------------------------------------------- /system/libstm32f4/build_gcc/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/libstm32f4/build_gcc/debug.mk -------------------------------------------------------------------------------- /system/libstm32f4/build_gcc/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/libstm32f4/build_gcc/gcc.mk -------------------------------------------------------------------------------- /system/libstm32f4/build_gcc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/libstm32f4/build_gcc/readme.md -------------------------------------------------------------------------------- /system/libstm32f4/build_gcc/release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/libstm32f4/build_gcc/release.mk -------------------------------------------------------------------------------- /system/libstm32f4/build_gcc/stm32f4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/system/libstm32f4/build_gcc/stm32f4.mk -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/PeripheralPins.c -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/PinNames.h -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/pins_arduino.h -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/usb/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/usb/usbd_conf.c -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/usb/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/usb/usbd_conf.h -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/usb/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/usb/usbd_desc.c -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/usb/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/usb/usbd_desc.h -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/variant.cpp -------------------------------------------------------------------------------- /variants/STM32F407VG_Disco/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F407VG_Disco/variant.h -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/PeripheralPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/PeripheralPins.c -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/PinNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/PinNames.h -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/pins_arduino.h -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/usb/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/usb/usbd_conf.c -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/usb/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/usb/usbd_conf.h -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/usb/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/usb/usbd_desc.c -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/usb/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/usb/usbd_desc.h -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/variant.cpp -------------------------------------------------------------------------------- /variants/STM32F429ZI_Nucleo/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpistm/Arduino_Core_STM32F4/HEAD/variants/STM32F429ZI_Nucleo/variant.h --------------------------------------------------------------------------------