├── Course source code ├── FatFs SDcard - FileSystem │ ├── FatFs │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ff_gen_drv.c │ │ ├── ff_gen_drv.h │ │ ├── integer.h │ │ └── option │ │ │ └── syscall.c │ ├── SD_Reader.hex │ └── SdCard │ │ ├── fatfs.c │ │ ├── fatfs.h │ │ ├── fatfs_sd.c │ │ ├── fatfs_sd.h │ │ ├── ffconf.h │ │ ├── sd_driver.c │ │ ├── sd_driver.h │ │ ├── user_diskio.c │ │ └── user_diskio.h ├── FreeRTOS │ ├── FreeRTOS │ │ ├── CMSIS_RTOS │ │ │ ├── cmsis_os.c │ │ │ └── cmsis_os.h │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── StackMacros.h │ │ │ ├── croutine.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── list.h │ │ │ ├── message_buffer.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stack_macros.h │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ │ ├── GCC │ │ │ │ └── ARM_CM3 │ │ │ │ │ ├── port.c │ │ │ │ │ └── portmacro.h │ │ │ └── MemMang │ │ │ │ └── heap_4.c │ │ ├── queue.c │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c │ └── RTOS │ │ ├── FreeRTOSConfig.h │ │ └── freertos.c ├── MPU6050 - I2C │ ├── TJ_MPU6050.c │ └── TJ_MPU6050.h ├── Project Setup files │ ├── my_eclipse_codingStyles.xml │ └── printfRedirect.txt ├── RC522 RFID - SPI │ ├── rc522.c │ └── rc522.h ├── TM1637 display - GPIO │ ├── tm1637.c │ └── tm1637.h ├── USB MSC │ ├── STM32_USB_Device_Library │ │ ├── Class │ │ │ └── MSC │ │ │ │ ├── Inc │ │ │ │ ├── usbd_msc.h │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Src │ │ │ │ ├── usbd_msc.c │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── Core │ │ │ ├── Inc │ │ │ ├── usbd_core.h │ │ │ ├── usbd_ctlreq.h │ │ │ ├── usbd_def.h │ │ │ └── usbd_ioreq.h │ │ │ └── Src │ │ │ ├── usbd_core.c │ │ │ ├── usbd_ctlreq.c │ │ │ └── usbd_ioreq.c │ └── USB_MSC │ │ ├── usb_device.c │ │ ├── usb_device.h │ │ ├── usbd_conf.c │ │ ├── usbd_conf.h │ │ ├── usbd_desc.c │ │ ├── usbd_desc.h │ │ ├── usbd_storage_if.c │ │ └── usbd_storage_if.h └── WAV Recorder - ADC - SD Card │ └── WAV_Recorder │ ├── wav_recorder.c │ └── wav_recorder.h ├── STM32 Getting Started - Level1 Register ├── Application │ ├── MPU6050 │ │ ├── TJ_MPU6050.c │ │ └── TJ_MPU6050.h │ ├── RC522 │ │ ├── rc522.c │ │ └── rc522.h │ ├── RTOS │ │ ├── FreeRTOSConfig.h │ │ └── freertos.c │ └── SdCard │ │ ├── fatfs.c │ │ ├── fatfs.h │ │ ├── fatfs_sd.c │ │ ├── fatfs_sd.h │ │ ├── ffconf.h │ │ ├── sd_driver.c │ │ ├── sd_driver.h │ │ ├── user_diskio.c │ │ └── user_diskio.h ├── Core │ ├── Inc │ │ ├── main.h │ │ ├── stm32f103xb.h │ │ ├── stm32f1xx.h │ │ └── system_stm32f1xx.h │ └── Src │ │ ├── main.c │ │ ├── printf_redirect.c │ │ └── system_stm32f1xx.c └── Peripherals │ ├── Inc │ ├── adc.h │ ├── crc.h │ ├── exti.h │ ├── flash.h │ ├── gpio.h │ ├── i2c.h │ ├── pwr.h │ ├── rcc.h │ ├── rtc.h │ ├── spi.h │ ├── tim.h │ └── uart.h │ └── Src │ ├── adc.c │ ├── crc.c │ ├── exti.c │ ├── flash.c │ ├── gpio.c │ ├── i2c.c │ ├── pwr.c │ ├── rcc.c │ ├── rtc.c │ ├── spi.c │ ├── tim.c │ └── uart.c ├── STM32 Getting Started - Level2 HAL ├── Application │ ├── MPU6050 │ │ ├── TJ_MPU6050.c │ │ └── TJ_MPU6050.h │ ├── RC522 │ │ ├── rc522.c │ │ └── rc522.h │ ├── SdCard │ │ ├── fatfs.c │ │ ├── fatfs.h │ │ ├── fatfs_sd.c │ │ ├── fatfs_sd.h │ │ ├── ffconf.h │ │ ├── sd_driver.c │ │ ├── sd_driver.h │ │ ├── user_diskio.c │ │ └── user_diskio.h │ └── USB_MSC │ │ ├── usb_device.c │ │ ├── usb_device.h │ │ ├── usbd_conf.c │ │ ├── usbd_conf.h │ │ ├── usbd_desc.c │ │ ├── usbd_desc.h │ │ ├── usbd_storage_if.c │ │ └── usbd_storage_if.h ├── Core │ ├── Inc │ │ ├── main.h │ │ └── stm32f1xx_it.h │ └── Src │ │ ├── main.c │ │ ├── printf_redirect.c │ │ ├── stm32f1xx_it.c │ │ └── system_stm32f1xx.c └── Peripherals │ ├── Inc │ ├── adc.h │ ├── crc.h │ ├── exti.h │ ├── gpio.h │ ├── i2c.h │ ├── pwr.h │ ├── rcc.h │ ├── rtc.h │ ├── spi.h │ ├── tim.h │ └── uart.h │ └── Src │ ├── adc.c │ ├── crc.c │ ├── exti.c │ ├── gpio.c │ ├── i2c.c │ ├── pwr.c │ ├── rcc.c │ ├── rtc.c │ ├── spi.c │ ├── tim.c │ └── uart.c └── STM32F103 Manuals ├── STM32F1 Starter Kit Manual.docx ├── STM32F103 - CortexM3 Programming.pdf ├── STM32F103 - Datasheet.pdf ├── STM32F103 - FlashProgramming.pdf └── STM32F103 - Reference manual.pdf /Course source code/FatFs SDcard - FileSystem/FatFs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/diskio.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/FatFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/diskio.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/FatFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/ff.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/FatFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/ff.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/FatFs/ff_gen_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/ff_gen_drv.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/FatFs/ff_gen_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/ff_gen_drv.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/FatFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/integer.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/FatFs/option/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/FatFs/option/syscall.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SD_Reader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SD_Reader.hex -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/fatfs.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/fatfs.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/fatfs_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/fatfs_sd.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/fatfs_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/fatfs_sd.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/ffconf.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/sd_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/sd_driver.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/sd_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/sd_driver.h -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/user_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/user_diskio.c -------------------------------------------------------------------------------- /Course source code/FatFs SDcard - FileSystem/SdCard/user_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FatFs SDcard - FileSystem/SdCard/user_diskio.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/CMSIS_RTOS/cmsis_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/CMSIS_RTOS/cmsis_os.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/CMSIS_RTOS/cmsis_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/CMSIS_RTOS/cmsis_os.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/croutine.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/event_groups.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/FreeRTOS.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/StackMacros.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/croutine.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/deprecated_definitions.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/event_groups.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/list.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/message_buffer.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/mpu_prototypes.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/mpu_wrappers.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/portable.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/projdefs.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/queue.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/semphr.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/stack_macros.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/stream_buffer.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/task.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/include/timers.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/list.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/portable/GCC/ARM_CM3/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/portable/GCC/ARM_CM3/port.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/portable/GCC/ARM_CM3/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/portable/GCC/ARM_CM3/portmacro.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/portable/MemMang/heap_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/portable/MemMang/heap_4.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/queue.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/stream_buffer.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/tasks.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/FreeRTOS/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/FreeRTOS/timers.c -------------------------------------------------------------------------------- /Course source code/FreeRTOS/RTOS/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/RTOS/FreeRTOSConfig.h -------------------------------------------------------------------------------- /Course source code/FreeRTOS/RTOS/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/FreeRTOS/RTOS/freertos.c -------------------------------------------------------------------------------- /Course source code/MPU6050 - I2C/TJ_MPU6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/MPU6050 - I2C/TJ_MPU6050.c -------------------------------------------------------------------------------- /Course source code/MPU6050 - I2C/TJ_MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/MPU6050 - I2C/TJ_MPU6050.h -------------------------------------------------------------------------------- /Course source code/Project Setup files/my_eclipse_codingStyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/Project Setup files/my_eclipse_codingStyles.xml -------------------------------------------------------------------------------- /Course source code/Project Setup files/printfRedirect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/Project Setup files/printfRedirect.txt -------------------------------------------------------------------------------- /Course source code/RC522 RFID - SPI/rc522.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/RC522 RFID - SPI/rc522.c -------------------------------------------------------------------------------- /Course source code/RC522 RFID - SPI/rc522.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/RC522 RFID - SPI/rc522.h -------------------------------------------------------------------------------- /Course source code/TM1637 display - GPIO/tm1637.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/TM1637 display - GPIO/tm1637.c -------------------------------------------------------------------------------- /Course source code/TM1637 display - GPIO/tm1637.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/TM1637 display - GPIO/tm1637.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc_bot.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc_data.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Inc/usbd_msc_scsi.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc.c -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc_bot.c -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc_data.c -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Class/MSC/Src/usbd_msc_scsi.c -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_core.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_def.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Core/Src/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Core/Src/usbd_core.c -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c -------------------------------------------------------------------------------- /Course source code/USB MSC/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usb_device.c -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usb_device.h -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usbd_conf.c -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usbd_conf.h -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usbd_desc.c -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usbd_desc.h -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usbd_storage_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usbd_storage_if.c -------------------------------------------------------------------------------- /Course source code/USB MSC/USB_MSC/usbd_storage_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/USB MSC/USB_MSC/usbd_storage_if.h -------------------------------------------------------------------------------- /Course source code/WAV Recorder - ADC - SD Card/WAV_Recorder/wav_recorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/WAV Recorder - ADC - SD Card/WAV_Recorder/wav_recorder.c -------------------------------------------------------------------------------- /Course source code/WAV Recorder - ADC - SD Card/WAV_Recorder/wav_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/Course source code/WAV Recorder - ADC - SD Card/WAV_Recorder/wav_recorder.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/MPU6050/TJ_MPU6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/MPU6050/TJ_MPU6050.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/MPU6050/TJ_MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/MPU6050/TJ_MPU6050.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/RC522/rc522.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/RC522/rc522.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/RC522/rc522.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/RC522/rc522.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/RTOS/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/RTOS/FreeRTOSConfig.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/RTOS/freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/RTOS/freertos.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/fatfs.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/fatfs.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/fatfs_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/fatfs_sd.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/fatfs_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/fatfs_sd.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/ffconf.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/sd_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/sd_driver.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/sd_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/sd_driver.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/user_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/user_diskio.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Application/SdCard/user_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Application/SdCard/user_diskio.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Core/Inc/main.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Core/Inc/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Core/Inc/stm32f103xb.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Core/Inc/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Core/Inc/stm32f1xx.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Core/Inc/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Core/Inc/system_stm32f1xx.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Core/Src/main.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Core/Src/printf_redirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Core/Src/printf_redirect.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/adc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/crc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/exti.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/flash.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/gpio.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/i2c.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/pwr.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/rcc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/rtc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/spi.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/tim.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Inc/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Inc/uart.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/adc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/crc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/exti.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/flash.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/gpio.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/i2c.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/pwr.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/rcc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/rtc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/spi.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/tim.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level1 Register/Peripherals/Src/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level1 Register/Peripherals/Src/uart.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/MPU6050/TJ_MPU6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/MPU6050/TJ_MPU6050.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/MPU6050/TJ_MPU6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/MPU6050/TJ_MPU6050.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/RC522/rc522.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/RC522/rc522.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/RC522/rc522.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/RC522/rc522.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs_sd.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/fatfs_sd.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/ffconf.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/sd_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/sd_driver.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/sd_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/sd_driver.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/user_diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/user_diskio.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/SdCard/user_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/SdCard/user_diskio.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usb_device.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usb_device.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_conf.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_conf.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_desc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_desc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_storage_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_storage_if.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_storage_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Application/USB_MSC/usbd_storage_if.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Core/Inc/main.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Core/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Core/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Core/Src/main.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Core/Src/printf_redirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Core/Src/printf_redirect.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Core/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Core/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Core/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Core/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/adc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/crc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/exti.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/gpio.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/i2c.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/pwr.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/rcc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/rtc.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/spi.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/tim.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Inc/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Inc/uart.h -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/adc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/crc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/exti.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/gpio.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/i2c.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/pwr.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/rcc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/rtc.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/spi.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/tim.c -------------------------------------------------------------------------------- /STM32 Getting Started - Level2 HAL/Peripherals/Src/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32 Getting Started - Level2 HAL/Peripherals/Src/uart.c -------------------------------------------------------------------------------- /STM32F103 Manuals/STM32F1 Starter Kit Manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32F103 Manuals/STM32F1 Starter Kit Manual.docx -------------------------------------------------------------------------------- /STM32F103 Manuals/STM32F103 - CortexM3 Programming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32F103 Manuals/STM32F103 - CortexM3 Programming.pdf -------------------------------------------------------------------------------- /STM32F103 Manuals/STM32F103 - Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32F103 Manuals/STM32F103 - Datasheet.pdf -------------------------------------------------------------------------------- /STM32F103 Manuals/STM32F103 - FlashProgramming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32F103 Manuals/STM32F103 - FlashProgramming.pdf -------------------------------------------------------------------------------- /STM32F103 Manuals/STM32F103 - Reference manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MYaqoobEmbedded/STM32-Getting-Started/HEAD/STM32F103 Manuals/STM32F103 - Reference manual.pdf --------------------------------------------------------------------------------