├── Board Screw Spacer.blend
├── Hardware
├── Block Diagram - 5-5-2020.png
├── FPGA-Sources
│ ├── FPGA_CTRL_01.bdf
│ ├── FPGA_CTRL_TLDF.vhd
│ └── FPGA_Pinout_Mk-III_Rev-A.csv
└── Schematics
│ ├── OSRSG - CPU-Schematic.pdf
│ ├── OSRSG - FPGA-Schematic.pdf
│ ├── OSRSG - HFS-Schematic.oxps
│ ├── OSRSG - HFS-Schematic.pdf
│ ├── OSRSG - IO-Interfaces-Schematic.pdf
│ ├── OSRSG - LFS-Schematic.oxps
│ ├── OSRSG - LFS-Schematic.pdf
│ ├── OSRSG - MasterCLK-Schematic.pdf
│ ├── OSRSG - PSU-Schematic.pdf
│ ├── OSRSG - RF Mixer and Filter-Schematic.oxps
│ └── OSRSG - RF Mixer and Filter-Schematic.pdf
├── README.md
├── Software
└── ARSG_MkIII
│ ├── .cproject
│ ├── .mxproject
│ ├── .project
│ ├── .settings
│ └── language.settings.xml
│ ├── ARSG_MkIII Debug.launch
│ ├── ARSG_MkIII.ioc
│ ├── Core
│ ├── Inc
│ │ ├── AD9957.h
│ │ ├── AD9957_Driver.h
│ │ ├── ADF4355.h
│ │ ├── ADF4356_Driver.h
│ │ ├── FPGADriver.h
│ │ ├── FreeRTOSConfig.h
│ │ ├── main.h
│ │ ├── stm32f4xx_hal_conf.h
│ │ └── stm32f4xx_it.h
│ ├── Src
│ │ ├── AD9957.c
│ │ ├── AD9957_Driver.cpp
│ │ ├── ADF4355.c
│ │ ├── ADF4356_Driver.cpp
│ │ ├── FPGADriver.cpp
│ │ ├── freertos.c
│ │ ├── main.c
│ │ ├── main.cpp
│ │ ├── stm32f4xx_hal_msp.c
│ │ ├── stm32f4xx_hal_timebase_tim.c
│ │ ├── stm32f4xx_it.c
│ │ ├── syscalls.c
│ │ ├── sysmem.c
│ │ └── system_stm32f4xx.c
│ └── Startup
│ │ └── startup_stm32f407vgtx.s
│ ├── Debug
│ ├── ARSG_MkIII.bin
│ ├── ARSG_MkIII.elf
│ ├── ARSG_MkIII.list
│ ├── ARSG_MkIII.map
│ ├── Core
│ │ ├── AD9957.su
│ │ ├── Src
│ │ │ ├── AD9957.d
│ │ │ ├── AD9957.o
│ │ │ ├── AD9957.su
│ │ │ ├── AD9957Driver.su
│ │ │ ├── AD9957_Driver.d
│ │ │ ├── AD9957_Driver.o
│ │ │ ├── AD9957_Driver.su
│ │ │ ├── ADF4355.d
│ │ │ ├── ADF4355.o
│ │ │ ├── ADF4355.su
│ │ │ ├── ADF4356_Driver.d
│ │ │ ├── ADF4356_Driver.o
│ │ │ ├── ADF4356_Driver.su
│ │ │ ├── FPGADriver.d
│ │ │ ├── FPGADriver.o
│ │ │ ├── FPGADriver.su
│ │ │ ├── freertos.d
│ │ │ ├── freertos.o
│ │ │ ├── freertos.su
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── main.su
│ │ │ ├── stm32f4xx_hal_msp.d
│ │ │ ├── stm32f4xx_hal_msp.o
│ │ │ ├── stm32f4xx_hal_msp.su
│ │ │ ├── stm32f4xx_hal_timebase_tim.d
│ │ │ ├── stm32f4xx_hal_timebase_tim.o
│ │ │ ├── stm32f4xx_hal_timebase_tim.su
│ │ │ ├── stm32f4xx_it.d
│ │ │ ├── stm32f4xx_it.o
│ │ │ ├── stm32f4xx_it.su
│ │ │ ├── subdir.mk
│ │ │ ├── syscalls.d
│ │ │ ├── syscalls.o
│ │ │ ├── syscalls.su
│ │ │ ├── sysmem.d
│ │ │ ├── sysmem.o
│ │ │ ├── sysmem.su
│ │ │ ├── system_stm32f4xx.d
│ │ │ ├── system_stm32f4xx.o
│ │ │ └── system_stm32f4xx.su
│ │ ├── Startup
│ │ │ ├── startup_stm32f407vgtx.d
│ │ │ ├── startup_stm32f407vgtx.o
│ │ │ └── subdir.mk
│ │ └── subdir.mk
│ ├── Drivers
│ │ └── STM32F4xx_HAL_Driver
│ │ │ └── Src
│ │ │ ├── stm32f4xx_hal.d
│ │ │ ├── stm32f4xx_hal.o
│ │ │ ├── stm32f4xx_hal.su
│ │ │ ├── stm32f4xx_hal_adc.d
│ │ │ ├── stm32f4xx_hal_adc.o
│ │ │ ├── stm32f4xx_hal_adc.su
│ │ │ ├── stm32f4xx_hal_adc_ex.d
│ │ │ ├── stm32f4xx_hal_adc_ex.o
│ │ │ ├── stm32f4xx_hal_adc_ex.su
│ │ │ ├── stm32f4xx_hal_cortex.d
│ │ │ ├── stm32f4xx_hal_cortex.o
│ │ │ ├── stm32f4xx_hal_cortex.su
│ │ │ ├── stm32f4xx_hal_crc.d
│ │ │ ├── stm32f4xx_hal_crc.o
│ │ │ ├── stm32f4xx_hal_crc.su
│ │ │ ├── stm32f4xx_hal_dma.d
│ │ │ ├── stm32f4xx_hal_dma.o
│ │ │ ├── stm32f4xx_hal_dma.su
│ │ │ ├── stm32f4xx_hal_dma_ex.d
│ │ │ ├── stm32f4xx_hal_dma_ex.o
│ │ │ ├── stm32f4xx_hal_dma_ex.su
│ │ │ ├── stm32f4xx_hal_exti.d
│ │ │ ├── stm32f4xx_hal_exti.o
│ │ │ ├── stm32f4xx_hal_exti.su
│ │ │ ├── stm32f4xx_hal_flash.d
│ │ │ ├── stm32f4xx_hal_flash.o
│ │ │ ├── stm32f4xx_hal_flash.su
│ │ │ ├── stm32f4xx_hal_flash_ex.d
│ │ │ ├── stm32f4xx_hal_flash_ex.o
│ │ │ ├── stm32f4xx_hal_flash_ex.su
│ │ │ ├── stm32f4xx_hal_flash_ramfunc.d
│ │ │ ├── stm32f4xx_hal_flash_ramfunc.o
│ │ │ ├── stm32f4xx_hal_flash_ramfunc.su
│ │ │ ├── stm32f4xx_hal_gpio.d
│ │ │ ├── stm32f4xx_hal_gpio.o
│ │ │ ├── stm32f4xx_hal_gpio.su
│ │ │ ├── stm32f4xx_hal_i2c.d
│ │ │ ├── stm32f4xx_hal_i2c.o
│ │ │ ├── stm32f4xx_hal_i2c.su
│ │ │ ├── stm32f4xx_hal_i2c_ex.d
│ │ │ ├── stm32f4xx_hal_i2c_ex.o
│ │ │ ├── stm32f4xx_hal_i2c_ex.su
│ │ │ ├── stm32f4xx_hal_pcd.d
│ │ │ ├── stm32f4xx_hal_pcd.o
│ │ │ ├── stm32f4xx_hal_pcd.su
│ │ │ ├── stm32f4xx_hal_pcd_ex.d
│ │ │ ├── stm32f4xx_hal_pcd_ex.o
│ │ │ ├── stm32f4xx_hal_pcd_ex.su
│ │ │ ├── stm32f4xx_hal_pwr.d
│ │ │ ├── stm32f4xx_hal_pwr.o
│ │ │ ├── stm32f4xx_hal_pwr.su
│ │ │ ├── stm32f4xx_hal_pwr_ex.d
│ │ │ ├── stm32f4xx_hal_pwr_ex.o
│ │ │ ├── stm32f4xx_hal_pwr_ex.su
│ │ │ ├── stm32f4xx_hal_rcc.d
│ │ │ ├── stm32f4xx_hal_rcc.o
│ │ │ ├── stm32f4xx_hal_rcc.su
│ │ │ ├── stm32f4xx_hal_rcc_ex.d
│ │ │ ├── stm32f4xx_hal_rcc_ex.o
│ │ │ ├── stm32f4xx_hal_rcc_ex.su
│ │ │ ├── stm32f4xx_hal_rng.d
│ │ │ ├── stm32f4xx_hal_rng.o
│ │ │ ├── stm32f4xx_hal_rng.su
│ │ │ ├── stm32f4xx_hal_rtc.d
│ │ │ ├── stm32f4xx_hal_rtc.o
│ │ │ ├── stm32f4xx_hal_rtc.su
│ │ │ ├── stm32f4xx_hal_rtc_ex.d
│ │ │ ├── stm32f4xx_hal_rtc_ex.o
│ │ │ ├── stm32f4xx_hal_rtc_ex.su
│ │ │ ├── stm32f4xx_hal_spi.d
│ │ │ ├── stm32f4xx_hal_spi.o
│ │ │ ├── stm32f4xx_hal_spi.su
│ │ │ ├── stm32f4xx_hal_tim.d
│ │ │ ├── stm32f4xx_hal_tim.o
│ │ │ ├── stm32f4xx_hal_tim.su
│ │ │ ├── stm32f4xx_hal_tim_ex.d
│ │ │ ├── stm32f4xx_hal_tim_ex.o
│ │ │ ├── stm32f4xx_hal_tim_ex.su
│ │ │ ├── stm32f4xx_hal_uart.d
│ │ │ ├── stm32f4xx_hal_uart.o
│ │ │ ├── stm32f4xx_hal_uart.su
│ │ │ ├── stm32f4xx_ll_usb.d
│ │ │ ├── stm32f4xx_ll_usb.o
│ │ │ ├── stm32f4xx_ll_usb.su
│ │ │ └── subdir.mk
│ ├── LIBJPEG
│ │ └── App
│ │ │ ├── libjpeg.d
│ │ │ ├── libjpeg.o
│ │ │ ├── libjpeg.su
│ │ │ └── subdir.mk
│ ├── Middlewares
│ │ ├── ST
│ │ │ └── STM32_USB_Device_Library
│ │ │ │ ├── Class
│ │ │ │ ├── CDC
│ │ │ │ │ └── Src
│ │ │ │ │ │ ├── subdir.mk
│ │ │ │ │ │ ├── usbd_cdc.d
│ │ │ │ │ │ └── usbd_cdc.su
│ │ │ │ └── DFU
│ │ │ │ │ └── Src
│ │ │ │ │ ├── subdir.mk
│ │ │ │ │ ├── usbd_dfu.d
│ │ │ │ │ ├── usbd_dfu.o
│ │ │ │ │ └── usbd_dfu.su
│ │ │ │ └── Core
│ │ │ │ └── Src
│ │ │ │ ├── subdir.mk
│ │ │ │ ├── usbd_core.d
│ │ │ │ ├── usbd_core.o
│ │ │ │ ├── usbd_core.su
│ │ │ │ ├── usbd_ctlreq.d
│ │ │ │ ├── usbd_ctlreq.o
│ │ │ │ ├── usbd_ctlreq.su
│ │ │ │ ├── usbd_ioreq.d
│ │ │ │ ├── usbd_ioreq.o
│ │ │ │ └── usbd_ioreq.su
│ │ └── Third_Party
│ │ │ ├── FreeRTOS
│ │ │ └── Source
│ │ │ │ ├── CMSIS_RTOS_V2
│ │ │ │ ├── cmsis_os2.d
│ │ │ │ ├── cmsis_os2.o
│ │ │ │ ├── cmsis_os2.su
│ │ │ │ └── subdir.mk
│ │ │ │ ├── croutine.d
│ │ │ │ ├── croutine.o
│ │ │ │ ├── croutine.su
│ │ │ │ ├── event_groups.d
│ │ │ │ ├── event_groups.o
│ │ │ │ ├── event_groups.su
│ │ │ │ ├── list.d
│ │ │ │ ├── list.o
│ │ │ │ ├── list.su
│ │ │ │ ├── portable
│ │ │ │ ├── GCC
│ │ │ │ │ └── ARM_CM4F
│ │ │ │ │ │ ├── port.d
│ │ │ │ │ │ ├── port.o
│ │ │ │ │ │ ├── port.su
│ │ │ │ │ │ └── subdir.mk
│ │ │ │ └── MemMang
│ │ │ │ │ ├── heap_4.d
│ │ │ │ │ ├── heap_4.o
│ │ │ │ │ ├── heap_4.su
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── queue.d
│ │ │ │ ├── queue.o
│ │ │ │ ├── queue.su
│ │ │ │ ├── stream_buffer.d
│ │ │ │ ├── stream_buffer.o
│ │ │ │ ├── stream_buffer.su
│ │ │ │ ├── subdir.mk
│ │ │ │ ├── tasks.d
│ │ │ │ ├── tasks.o
│ │ │ │ ├── tasks.su
│ │ │ │ ├── timers.d
│ │ │ │ ├── timers.o
│ │ │ │ └── timers.su
│ │ │ └── LibJPEG
│ │ │ └── source
│ │ │ ├── jaricom.d
│ │ │ ├── jaricom.o
│ │ │ ├── jaricom.su
│ │ │ ├── jcapimin.d
│ │ │ ├── jcapimin.o
│ │ │ ├── jcapimin.su
│ │ │ ├── jcapistd.d
│ │ │ ├── jcapistd.o
│ │ │ ├── jcapistd.su
│ │ │ ├── jcarith.d
│ │ │ ├── jcarith.o
│ │ │ ├── jcarith.su
│ │ │ ├── jccoefct.d
│ │ │ ├── jccoefct.o
│ │ │ ├── jccoefct.su
│ │ │ ├── jccolor.d
│ │ │ ├── jccolor.o
│ │ │ ├── jccolor.su
│ │ │ ├── jcdctmgr.d
│ │ │ ├── jcdctmgr.o
│ │ │ ├── jcdctmgr.su
│ │ │ ├── jchuff.d
│ │ │ ├── jchuff.o
│ │ │ ├── jchuff.su
│ │ │ ├── jcinit.d
│ │ │ ├── jcinit.o
│ │ │ ├── jcinit.su
│ │ │ ├── jcmainct.d
│ │ │ ├── jcmainct.o
│ │ │ ├── jcmainct.su
│ │ │ ├── jcmarker.d
│ │ │ ├── jcmarker.o
│ │ │ ├── jcmarker.su
│ │ │ ├── jcmaster.d
│ │ │ ├── jcmaster.o
│ │ │ ├── jcmaster.su
│ │ │ ├── jcomapi.d
│ │ │ ├── jcomapi.o
│ │ │ ├── jcomapi.su
│ │ │ ├── jcparam.d
│ │ │ ├── jcparam.o
│ │ │ ├── jcparam.su
│ │ │ ├── jcprepct.d
│ │ │ ├── jcprepct.o
│ │ │ ├── jcprepct.su
│ │ │ ├── jcsample.d
│ │ │ ├── jcsample.o
│ │ │ ├── jcsample.su
│ │ │ ├── jctrans.d
│ │ │ ├── jctrans.o
│ │ │ ├── jctrans.su
│ │ │ ├── jdapimin.d
│ │ │ ├── jdapimin.o
│ │ │ ├── jdapimin.su
│ │ │ ├── jdapistd.d
│ │ │ ├── jdapistd.o
│ │ │ ├── jdapistd.su
│ │ │ ├── jdarith.d
│ │ │ ├── jdarith.o
│ │ │ ├── jdarith.su
│ │ │ ├── jdatadst.d
│ │ │ ├── jdatadst.o
│ │ │ ├── jdatadst.su
│ │ │ ├── jdatasrc.d
│ │ │ ├── jdatasrc.o
│ │ │ ├── jdatasrc.su
│ │ │ ├── jdcoefct.d
│ │ │ ├── jdcoefct.o
│ │ │ ├── jdcoefct.su
│ │ │ ├── jdcolor.d
│ │ │ ├── jdcolor.o
│ │ │ ├── jdcolor.su
│ │ │ ├── jddctmgr.d
│ │ │ ├── jddctmgr.o
│ │ │ ├── jddctmgr.su
│ │ │ ├── jdhuff.d
│ │ │ ├── jdhuff.o
│ │ │ ├── jdhuff.su
│ │ │ ├── jdinput.d
│ │ │ ├── jdinput.o
│ │ │ ├── jdinput.su
│ │ │ ├── jdmainct.d
│ │ │ ├── jdmainct.o
│ │ │ ├── jdmainct.su
│ │ │ ├── jdmarker.d
│ │ │ ├── jdmarker.o
│ │ │ ├── jdmarker.su
│ │ │ ├── jdmaster.d
│ │ │ ├── jdmaster.o
│ │ │ ├── jdmaster.su
│ │ │ ├── jdmerge.d
│ │ │ ├── jdmerge.o
│ │ │ ├── jdmerge.su
│ │ │ ├── jdpostct.d
│ │ │ ├── jdpostct.o
│ │ │ ├── jdpostct.su
│ │ │ ├── jdsample.d
│ │ │ ├── jdsample.o
│ │ │ ├── jdsample.su
│ │ │ ├── jdtrans.d
│ │ │ ├── jdtrans.o
│ │ │ ├── jdtrans.su
│ │ │ ├── jerror.d
│ │ │ ├── jerror.o
│ │ │ ├── jerror.su
│ │ │ ├── jfdctflt.d
│ │ │ ├── jfdctflt.o
│ │ │ ├── jfdctflt.su
│ │ │ ├── jfdctfst.d
│ │ │ ├── jfdctfst.o
│ │ │ ├── jfdctfst.su
│ │ │ ├── jfdctint.d
│ │ │ ├── jfdctint.o
│ │ │ ├── jfdctint.su
│ │ │ ├── jidctflt.d
│ │ │ ├── jidctflt.o
│ │ │ ├── jidctflt.su
│ │ │ ├── jidctfst.d
│ │ │ ├── jidctfst.o
│ │ │ ├── jidctfst.su
│ │ │ ├── jidctint.d
│ │ │ ├── jidctint.o
│ │ │ ├── jidctint.su
│ │ │ ├── jmemmgr.d
│ │ │ ├── jmemmgr.o
│ │ │ ├── jmemmgr.su
│ │ │ ├── jmemnobs.d
│ │ │ ├── jmemnobs.o
│ │ │ ├── jmemnobs.su
│ │ │ ├── jquant1.d
│ │ │ ├── jquant1.o
│ │ │ ├── jquant1.su
│ │ │ ├── jquant2.d
│ │ │ ├── jquant2.o
│ │ │ ├── jquant2.su
│ │ │ ├── jutils.d
│ │ │ ├── jutils.o
│ │ │ ├── jutils.su
│ │ │ └── subdir.mk
│ ├── USB_DEVICE
│ │ ├── App
│ │ │ ├── subdir.mk
│ │ │ ├── usb_device.d
│ │ │ ├── usb_device.o
│ │ │ ├── usb_device.su
│ │ │ ├── usbd_cdc_if.d
│ │ │ ├── usbd_cdc_if.su
│ │ │ ├── usbd_desc.d
│ │ │ ├── usbd_desc.o
│ │ │ ├── usbd_desc.su
│ │ │ ├── usbd_dfu_if.d
│ │ │ ├── usbd_dfu_if.o
│ │ │ └── usbd_dfu_if.su
│ │ └── Target
│ │ │ ├── subdir.mk
│ │ │ ├── usbd_conf.d
│ │ │ ├── usbd_conf.o
│ │ │ └── usbd_conf.su
│ ├── makefile
│ ├── objects.list
│ ├── objects.mk
│ └── sources.mk
│ ├── Drivers
│ ├── CMSIS
│ │ ├── Device
│ │ │ └── ST
│ │ │ │ └── STM32F4xx
│ │ │ │ └── Include
│ │ │ │ ├── stm32f407xx.h
│ │ │ │ ├── stm32f4xx.h
│ │ │ │ └── system_stm32f4xx.h
│ │ └── Include
│ │ │ ├── cmsis_armcc.h
│ │ │ ├── cmsis_armclang.h
│ │ │ ├── cmsis_compiler.h
│ │ │ ├── cmsis_gcc.h
│ │ │ ├── cmsis_iccarm.h
│ │ │ ├── cmsis_version.h
│ │ │ ├── core_armv8mbl.h
│ │ │ ├── core_armv8mml.h
│ │ │ ├── core_cm0.h
│ │ │ ├── core_cm0plus.h
│ │ │ ├── core_cm1.h
│ │ │ ├── core_cm23.h
│ │ │ ├── core_cm3.h
│ │ │ ├── core_cm33.h
│ │ │ ├── core_cm4.h
│ │ │ ├── core_cm7.h
│ │ │ ├── core_sc000.h
│ │ │ ├── core_sc300.h
│ │ │ ├── mpu_armv7.h
│ │ │ ├── mpu_armv8.h
│ │ │ └── tz_context.h
│ └── STM32F4xx_HAL_Driver
│ │ ├── Inc
│ │ ├── Legacy
│ │ │ └── stm32_hal_legacy.h
│ │ ├── stm32f4xx_hal.h
│ │ ├── stm32f4xx_hal_adc.h
│ │ ├── stm32f4xx_hal_adc_ex.h
│ │ ├── stm32f4xx_hal_cortex.h
│ │ ├── stm32f4xx_hal_crc.h
│ │ ├── stm32f4xx_hal_def.h
│ │ ├── stm32f4xx_hal_dma.h
│ │ ├── stm32f4xx_hal_dma_ex.h
│ │ ├── stm32f4xx_hal_exti.h
│ │ ├── stm32f4xx_hal_flash.h
│ │ ├── stm32f4xx_hal_flash_ex.h
│ │ ├── stm32f4xx_hal_flash_ramfunc.h
│ │ ├── stm32f4xx_hal_gpio.h
│ │ ├── stm32f4xx_hal_gpio_ex.h
│ │ ├── stm32f4xx_hal_i2c.h
│ │ ├── stm32f4xx_hal_i2c_ex.h
│ │ ├── stm32f4xx_hal_pcd.h
│ │ ├── stm32f4xx_hal_pcd_ex.h
│ │ ├── stm32f4xx_hal_pwr.h
│ │ ├── stm32f4xx_hal_pwr_ex.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_spi.h
│ │ ├── stm32f4xx_hal_tim.h
│ │ ├── stm32f4xx_hal_tim_ex.h
│ │ ├── stm32f4xx_hal_uart.h
│ │ └── stm32f4xx_ll_usb.h
│ │ └── Src
│ │ ├── stm32f4xx_hal.c
│ │ ├── stm32f4xx_hal_adc.c
│ │ ├── stm32f4xx_hal_adc_ex.c
│ │ ├── stm32f4xx_hal_cortex.c
│ │ ├── stm32f4xx_hal_crc.c
│ │ ├── stm32f4xx_hal_dma.c
│ │ ├── stm32f4xx_hal_dma_ex.c
│ │ ├── stm32f4xx_hal_exti.c
│ │ ├── stm32f4xx_hal_flash.c
│ │ ├── stm32f4xx_hal_flash_ex.c
│ │ ├── stm32f4xx_hal_flash_ramfunc.c
│ │ ├── stm32f4xx_hal_gpio.c
│ │ ├── stm32f4xx_hal_i2c.c
│ │ ├── stm32f4xx_hal_i2c_ex.c
│ │ ├── stm32f4xx_hal_pcd.c
│ │ ├── stm32f4xx_hal_pcd_ex.c
│ │ ├── stm32f4xx_hal_pwr.c
│ │ ├── stm32f4xx_hal_pwr_ex.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_spi.c
│ │ ├── stm32f4xx_hal_tim.c
│ │ ├── stm32f4xx_hal_tim_ex.c
│ │ ├── stm32f4xx_hal_uart.c
│ │ └── stm32f4xx_ll_usb.c
│ ├── LIBJPEG
│ ├── App
│ │ ├── libjpeg.c
│ │ └── libjpeg.h
│ └── Target
│ │ ├── jconfig.h
│ │ ├── jdata_conf.h
│ │ └── jmorecfg.h
│ ├── Middlewares
│ ├── ST
│ │ └── STM32_USB_Device_Library
│ │ │ ├── Class
│ │ │ └── DFU
│ │ │ │ ├── Inc
│ │ │ │ └── usbd_dfu.h
│ │ │ │ └── Src
│ │ │ │ └── usbd_dfu.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
│ └── Third_Party
│ │ ├── FreeRTOS
│ │ └── Source
│ │ │ ├── CMSIS_RTOS_V2
│ │ │ ├── cmsis_os.h
│ │ │ ├── cmsis_os2.c
│ │ │ └── cmsis_os2.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_CM4F
│ │ │ │ │ ├── port.c
│ │ │ │ │ └── portmacro.h
│ │ │ └── MemMang
│ │ │ │ └── heap_4.c
│ │ │ ├── queue.c
│ │ │ ├── stream_buffer.c
│ │ │ ├── tasks.c
│ │ │ └── timers.c
│ │ └── LibJPEG
│ │ ├── include
│ │ ├── jconfig_template.h
│ │ ├── jdata_conf_template.h
│ │ ├── jdct.h
│ │ ├── jerror.h
│ │ ├── jinclude.h
│ │ ├── jmemsys.h
│ │ ├── jmorecfg_template.h
│ │ ├── jpegint.h
│ │ ├── jpeglib.h
│ │ └── jversion.h
│ │ └── source
│ │ ├── jaricom.c
│ │ ├── jcapimin.c
│ │ ├── jcapistd.c
│ │ ├── jcarith.c
│ │ ├── jccoefct.c
│ │ ├── jccolor.c
│ │ ├── jcdctmgr.c
│ │ ├── jchuff.c
│ │ ├── jcinit.c
│ │ ├── jcmainct.c
│ │ ├── jcmarker.c
│ │ ├── jcmaster.c
│ │ ├── jcomapi.c
│ │ ├── jcparam.c
│ │ ├── jcprepct.c
│ │ ├── jcsample.c
│ │ ├── jctrans.c
│ │ ├── jdapimin.c
│ │ ├── jdapistd.c
│ │ ├── jdarith.c
│ │ ├── jdatadst.c
│ │ ├── jdatasrc.c
│ │ ├── jdcoefct.c
│ │ ├── jdcolor.c
│ │ ├── jddctmgr.c
│ │ ├── jdhuff.c
│ │ ├── jdinput.c
│ │ ├── jdmainct.c
│ │ ├── jdmarker.c
│ │ ├── jdmaster.c
│ │ ├── jdmerge.c
│ │ ├── jdpostct.c
│ │ ├── jdsample.c
│ │ ├── jdtrans.c
│ │ ├── jerror.c
│ │ ├── jfdctflt.c
│ │ ├── jfdctfst.c
│ │ ├── jfdctint.c
│ │ ├── jidctflt.c
│ │ ├── jidctfst.c
│ │ ├── jidctint.c
│ │ ├── jmemmgr.c
│ │ ├── jmemnobs.c
│ │ ├── jquant1.c
│ │ ├── jquant2.c
│ │ └── jutils.c
│ ├── STM32F407VGTX_FLASH.ld
│ ├── STM32F407VGTX_RAM.ld
│ └── USB_DEVICE
│ ├── App
│ ├── usb_device.c
│ ├── usb_device.h
│ ├── usbd_desc.c
│ ├── usbd_desc.h
│ ├── usbd_dfu_if.c
│ └── usbd_dfu_if.h
│ └── Target
│ ├── usbd_conf.c
│ └── usbd_conf.h
└── Spacers for Mounting Screws.stl
/Board Screw Spacer.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Board Screw Spacer.blend
--------------------------------------------------------------------------------
/Hardware/Block Diagram - 5-5-2020.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Block Diagram - 5-5-2020.png
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - CPU-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - CPU-Schematic.pdf
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - FPGA-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - FPGA-Schematic.pdf
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - HFS-Schematic.oxps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - HFS-Schematic.oxps
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - HFS-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - HFS-Schematic.pdf
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - IO-Interfaces-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - IO-Interfaces-Schematic.pdf
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - LFS-Schematic.oxps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - LFS-Schematic.oxps
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - LFS-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - LFS-Schematic.pdf
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - MasterCLK-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - MasterCLK-Schematic.pdf
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - PSU-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - PSU-Schematic.pdf
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - RF Mixer and Filter-Schematic.oxps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - RF Mixer and Filter-Schematic.oxps
--------------------------------------------------------------------------------
/Hardware/Schematics/OSRSG - RF Mixer and Filter-Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Hardware/Schematics/OSRSG - RF Mixer and Filter-Schematic.pdf
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # ORFSG---OpenSourceRFSignalGenerator
2 | RF Signal Generator with filtered outputs, modulation features and adjustable Amplitude with at least 80dB of dynamic range.
3 |
4 | This git-repo contains the basic information about the design for users to develop their own application, as well as some simple firmware to get the mainboard up and running for testing.
5 |
6 | The FPGA-Directory contains information specific to the FPGA on the mainboard, as well as the Source-Code (Quartus Lite-Project) for the FPGA. You need Quartus Lite and an Altera USB Blaster to program the FPGA!
7 |
8 | The "Software"-Directory contains the Source-Code for the Firmware.
9 | The Firmware-Source is a STM32CUBEIDE-Project that can be imported into the STM32CUBEIDE to be compiled and programmed into the main Processor.
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | ARSG_MkIII
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.cdt.managedbuilder.core.genmakebuilder
10 | clean,full,incremental,
11 |
12 |
13 |
14 |
15 | org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder
16 | full,incremental,
17 |
18 |
19 |
20 |
21 |
22 | com.st.stm32cube.ide.mcu.MCUProjectNature
23 | com.st.stm32cube.ide.mcu.MCUCubeProjectNature
24 | org.eclipse.cdt.core.cnature
25 | org.eclipse.cdt.core.ccnature
26 | com.st.stm32cube.ide.mcu.MCUCubeIdeServicesRevAev2ProjectNature
27 | com.st.stm32cube.ide.mcu.MCUAdvancedStructureProjectNature
28 | com.st.stm32cube.ide.mcu.MCUEndUserDisabledTrustZoneProjectNature
29 | com.st.stm32cube.ide.mcu.MCUSingleCpuProjectNature
30 | com.st.stm32cube.ide.mcu.MCURootProjectNature
31 | org.eclipse.cdt.managedbuilder.core.managedBuildNature
32 | org.eclipse.cdt.managedbuilder.core.ScannerConfigNature
33 |
34 |
35 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Core/Inc/AD9957.h:
--------------------------------------------------------------------------------
1 | /*
2 | * AD9957.h
3 | *
4 | * Created on: Aug 23, 2020
5 | * Author: voyag
6 | */
7 |
8 | #ifndef INC_AD9957_H_
9 | #define INC_AD9957_H_
10 |
11 | #include "main.h"
12 |
13 | #define AD9957_IOUP_Pin GPIO_PIN_8
14 | #define AD9957_IOUP_GPIO_Port GPIOE
15 | #define AD9957_CS_Pin GPIO_PIN_9
16 | #define AD9957_CS_GPIO_Port GPIOE
17 | #define AD9957_RESET_Pin GPIO_PIN_10
18 | #define AD9957_RESET_GPIO_Port GPIOE
19 | #define AD9957_IORESET_Pin GPIO_PIN_11
20 | #define AD9957_IORESET_GPIO_Port GPIOE
21 | #define AD9957_PLL_LOCK_Pin GPIO_PIN_12
22 | #define AD9957_PLL_LOCK_GPIO_Port GPIOE
23 |
24 | void AD9957_Setup(); // Setup of the AD9957-Chip
25 | void AD9957_PLLCheck(); // Checks the Lock-Signal of the AD9957 PLL
26 | void AD9957_SetMode(uint8_t mode); // Set the mode of the AD9957
27 | void AD9957_CWFreq(int frequency);
28 | void AD9957_CWAmplitude(int amplitude);
29 | void AD9957_CWPhase(int phase);
30 | void AD9957_FillIntRAM(int *databuffer);
31 |
32 |
33 | #endif /* INC_AD9957_H_ */
34 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Core/Src/AD9957.c:
--------------------------------------------------------------------------------
1 | /*
2 | * AD9957.c
3 | *
4 | * Created on: Aug 23, 2020
5 | * Author: voyag
6 | */
7 |
8 |
9 |
10 |
11 | #include "AD9957.h"
12 |
13 | void AD9957_Setup(){ // Setup of the AD9957-Chip
14 |
15 | }
16 |
17 | void AD9957_PLLCheck(){ // Checks the Lock-Signal of the AD9957 PLL
18 |
19 | }
20 |
21 | void AD9957_SetMode(uint8_t mode){
22 | // Set the mode of the AD9957
23 | }
24 |
25 | void AD9957_CWFreq(int frequency){
26 |
27 | }
28 |
29 | void AD9957_CWAmplitude(int amplitude){
30 |
31 | }
32 |
33 | void AD9957_CWPhase(int phase){
34 |
35 | }
36 |
37 | void AD9957_FillIntRAM(int *databuffer){
38 |
39 | }
40 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Core/Src/FPGADriver.cpp:
--------------------------------------------------------------------------------
1 | /*
2 | * FPGADriver.cpp
3 | *
4 | * Created on: Sep 27, 2020
5 | * Author: voyag
6 | */
7 |
8 | #include
9 |
10 | FPGA_Driver::FPGA_Driver() {
11 | // TODO Auto-generated constructor stub
12 |
13 | }
14 |
15 | FPGA_Driver::~FPGA_Driver() {
16 | // TODO Auto-generated destructor stub
17 | }
18 |
19 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Core/Src/freertos.c:
--------------------------------------------------------------------------------
1 | /* USER CODE BEGIN Header */
2 | /**
3 | ******************************************************************************
4 | * File Name : freertos.c
5 | * Description : Code for freertos applications
6 | ******************************************************************************
7 | * @attention
8 | *
9 | * © Copyright (c) 2020 STMicroelectronics.
10 | * All rights reserved.
11 | *
12 | * This software component is licensed by ST under Ultimate Liberty license
13 | * SLA0044, the "License"; You may not use this file except in compliance with
14 | * the License. You may obtain a copy of the License at:
15 | * www.st.com/SLA0044
16 | *
17 | ******************************************************************************
18 | */
19 | /* USER CODE END Header */
20 |
21 | /* Includes ------------------------------------------------------------------*/
22 | #include "FreeRTOS.h"
23 | #include "task.h"
24 | #include "main.h"
25 |
26 | /* Private includes ----------------------------------------------------------*/
27 | /* USER CODE BEGIN Includes */
28 |
29 | /* USER CODE END Includes */
30 |
31 | /* Private typedef -----------------------------------------------------------*/
32 | /* USER CODE BEGIN PTD */
33 |
34 | /* USER CODE END PTD */
35 |
36 | /* Private define ------------------------------------------------------------*/
37 | /* USER CODE BEGIN PD */
38 |
39 | /* USER CODE END PD */
40 |
41 | /* Private macro -------------------------------------------------------------*/
42 | /* USER CODE BEGIN PM */
43 |
44 | /* USER CODE END PM */
45 |
46 | /* Private variables ---------------------------------------------------------*/
47 | /* USER CODE BEGIN Variables */
48 |
49 | /* USER CODE END Variables */
50 |
51 | /* Private function prototypes -----------------------------------------------*/
52 | /* USER CODE BEGIN FunctionPrototypes */
53 |
54 | /* USER CODE END FunctionPrototypes */
55 |
56 | /* Private application code --------------------------------------------------*/
57 | /* USER CODE BEGIN Application */
58 |
59 | /* USER CODE END Application */
60 |
61 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
62 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/ARSG_MkIII.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/ARSG_MkIII.bin
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/ARSG_MkIII.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/ARSG_MkIII.elf
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/AD9957.su:
--------------------------------------------------------------------------------
1 | AD9957.cpp:10:1:AD9957::AD9957() 16 static
2 | AD9957.cpp:15:1:AD9957::~AD9957() 16 static
3 | AD9957.cpp:15:1:virtual AD9957::~AD9957() 16 static
4 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/AD9957.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/AD9957.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/AD9957.su:
--------------------------------------------------------------------------------
1 | AD9957.c:13:6:AD9957_Setup 4 static
2 | AD9957.c:17:6:AD9957_PLLCheck 4 static
3 | AD9957.c:21:6:AD9957_SetMode 16 static
4 | AD9957.c:25:6:AD9957_CWFreq 16 static
5 | AD9957.c:29:6:AD9957_CWAmplitude 16 static
6 | AD9957.c:33:6:AD9957_CWPhase 16 static
7 | AD9957.c:37:6:AD9957_FillIntRAM 16 static
8 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/AD9957Driver.su:
--------------------------------------------------------------------------------
1 | AD9957Driver.cpp:16:1:AD9957_Driver::AD9957_Driver() 16 static
2 | AD9957Driver.cpp:21:1:AD9957_Driver::~AD9957_Driver() 16 static
3 | AD9957Driver.cpp:21:1:virtual AD9957_Driver::~AD9957_Driver() 16 static
4 | AD9957Driver.cpp:25:9:uint8_t Setup(uint8_t, long int, uint8_t) 24 static
5 | AD9957Driver.cpp:34:9:uint8_t ReportError() 4 static
6 | AD9957Driver.cpp:38:9:uint8_t IOReset() 4 static
7 | AD9957Driver.cpp:43:9:uint8_t SetMode(uint8_t) 16 static
8 | AD9957Driver.cpp:47:9:uint8_t SetupFPGA(uint8_t, uint8_t) 16 static
9 | AD9957Driver.cpp:51:9:uint8_t WriteFPGA(uint16_t*, uint32_t, uint32_t) 24 static
10 | AD9957Driver.cpp:56:10:uint16_t ReadFPGA(uint32_t) 16 static
11 | AD9957Driver.cpp:60:9:uint8_t SetupRamp(double, double, int, double, uint8_t) 40 static
12 | AD9957Driver.cpp:66:9:uint8_t ST_SetFrequency(double) 16 static
13 | AD9957Driver.cpp:70:9:uint8_t ST_SetPhase(double) 16 static
14 | AD9957Driver.cpp:74:9:uint8_t ST_SetAmplitude(double) 16 static
15 | AD9957Driver.cpp:78:9:uint8_t ST_FillRAM_Internal(double, double, double, uint16_t) 40 static
16 | AD9957Driver.cpp:83:9:uint8_t ST_FillRAM_FPGA(double, double, double, uint32_t) 40 static
17 | AD9957Driver.cpp:88:9:uint8_t ST_StartRAMP() 4 static
18 | AD9957Driver.cpp:92:9:uint8_t ST_STOP() 4 static
19 | AD9957Driver.cpp:97:9:uint8_t IDAC_WriteBuffer(uint16_t, uint16_t) 16 static
20 | AD9957Driver.cpp:101:9:uint8_t IDAC_Start() 4 static
21 | AD9957Driver.cpp:105:9:uint8_t IDAC_Stop() 4 static
22 | AD9957Driver.cpp:110:9:uint8_t QDUC_Setup(double) 16 static
23 | AD9957Driver.cpp:114:9:uint8_t QDUC_WriteBuffer(uint16_t, uint16_t, uint16_t) 16 static
24 | AD9957Driver.cpp:118:9:uint8_t QDUC_Start() 4 static
25 | AD9957Driver.cpp:122:9:uint8_t QDUC_Stop() 4 static
26 | AD9957Driver.cpp:127:9:uint8_t RAM_Read(uint16_t) 16 static
27 | AD9957Driver.cpp:131:9:uint8_t RAM_Write(uint16_t, uint32_t) 16 static
28 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/AD9957_Driver.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/AD9957_Driver.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/ADF4355.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/ADF4355.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/ADF4355.su:
--------------------------------------------------------------------------------
1 | ADF4355.c:22:9:ADF4355_Setup 32 static
2 | ADF4355.c:127:9:ADF4355_FPGA_Setup 32 static
3 | ADF4355.c:137:9:ADF4355_FPGA_START 24 static
4 | ADF4355.c:144:6:ADF4355_FPGA_WriteData 24 static
5 | ADF4355.c:148:6:ADF4355_FPGA_DUMP 16 static
6 | ADF4355.c:152:6:ADF4355_SetFrequency 16 static
7 | ADF4355.c:158:6:ADF4355_SetPhase 16 static
8 | ADF4355.c:162:6:ADF4355_GetConfig 16 static
9 | ADF4355.c:166:6:ADF4355_ConvertFreq 24 static
10 | ADF4355.c:330:6:ADF4355_WriteData 8 static
11 | ADF4355.c:362:6:ADF4355_WriteDataLite 16 static
12 | ADF4355.c:385:6:ADF4355_WriteRegister 24 static
13 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/ADF4356_Driver.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/ADF4356_Driver.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/ADF4356_Driver.su:
--------------------------------------------------------------------------------
1 | ADF4356_Driver.cpp:10:1:ADF4356_Driver::ADF4356_Driver() 16 static
2 | ADF4356_Driver.cpp:16:1:ADF4356_Driver::~ADF4356_Driver() 16 static
3 | ADF4356_Driver.cpp:16:1:virtual ADF4356_Driver::~ADF4356_Driver() 16 static
4 | ADF4356_Driver.cpp:20:9:uint8_t ADF4356_Driver::Setup(uint8_t, long int, uint8_t, int) 32 static
5 | ADF4356_Driver.cpp:125:9:uint8_t ADF4356_Driver::FPGA_Setup(unsigned char, long int, int, uint8_t) 32 static
6 | ADF4356_Driver.cpp:135:9:uint8_t ADF4356_Driver::FPGA_START(unsigned char) 24 static
7 | ADF4356_Driver.cpp:142:6:void ADF4356_Driver::FPGA_WriteData(float, float, int) 24 static
8 | ADF4356_Driver.cpp:146:6:void ADF4356_Driver::FPGA_DUMP(int) 16 static
9 | ADF4356_Driver.cpp:150:6:void ADF4356_Driver::SetFrequency(double) 24 static
10 | ADF4356_Driver.cpp:156:6:void ADF4356_Driver::SetPhase(float) 16 static
11 | ADF4356_Driver.cpp:160:6:void ADF4356_Driver::GetConfig(int*) 16 static
12 | cmath:415:5:constexpr typename __gnu_cxx::__promote_2<_Tp, _Up>::__type std::pow(_Tp, _Up) [with _Tp = int; _Up = int] 24 static
13 | ADF4356_Driver.cpp:164:6:void ADF4356_Driver::ConvertFreq(double) 40 static
14 | ADF4356_Driver.cpp:328:6:void ADF4356_Driver::WriteData() 16 static
15 | ADF4356_Driver.cpp:360:6:void ADF4356_Driver::WriteDataLite(uint8_t) 16 static
16 | ADF4356_Driver.cpp:383:6:void ADF4356_Driver::WriteRegister(int) 24 static
17 | ADF4356_Driver.cpp:393:10:uint32_t ADF4356_Driver::ReadRegister(uint8_t) 16 static
18 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/FPGADriver.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/FPGADriver.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/FPGADriver.su:
--------------------------------------------------------------------------------
1 | FPGADriver.cpp:10:1:FPGA_Driver::FPGA_Driver() 16 static
2 | FPGADriver.cpp:15:1:FPGA_Driver::~FPGA_Driver() 16 static
3 | FPGADriver.cpp:15:1:virtual FPGA_Driver::~FPGA_Driver() 16 static
4 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/freertos.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/freertos.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/freertos.su:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/freertos.su
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/main.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/main.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/main.su:
--------------------------------------------------------------------------------
1 | main.cpp:121:5:int main() 16 static
2 | main.cpp:219:6:void SystemClock_Config() 104 static
3 | main.cpp:272:13:void MX_ADC1_Init() 24 static
4 | main.cpp:338:13:void MX_CRC_Init() 8 static
5 | main.cpp:364:13:void MX_I2C1_Init() 8 static
6 | main.cpp:398:13:void MX_RNG_Init() 8 static
7 | main.cpp:424:13:void MX_RTC_Init() 32 static
8 | main.cpp:486:13:void MX_SPI1_Init() 8 static
9 | main.cpp:524:13:void MX_SPI2_Init() 8 static
10 | main.cpp:562:13:void MX_TIM3_Init() 80 static
11 | main.cpp:634:13:void MX_USART1_UART_Init() 8 static
12 | main.cpp:667:13:void MX_DMA_Init() 16 static
13 | main.cpp:729:13:void MX_GPIO_Init() 56 static
14 | main.cpp:869:6:void StartDefaultTask(void*) 16 static
15 | main.cpp:890:6:void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef*) 16 static
16 | main.cpp:907:6:void Error_Handler() 4 static
17 | main.cpp:913:1:void __static_initialization_and_destruction_0(int, int) 16 static
18 | main.cpp:913:1:cpp) 8 static
19 | main.cpp:913:1:cpp) 8 static
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_hal_msp.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_hal_msp.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_hal_msp.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_msp.c:83:6:HAL_MspInit 16 static
2 | stm32f4xx_hal_msp.c:105:6:HAL_ADC_MspInit 24 static
3 | stm32f4xx_hal_msp.c:147:6:HAL_ADC_MspDeInit 16 static
4 | stm32f4xx_hal_msp.c:172:6:HAL_CRC_MspInit 24 static
5 | stm32f4xx_hal_msp.c:194:6:HAL_CRC_MspDeInit 16 static
6 | stm32f4xx_hal_msp.c:216:6:HAL_I2C_MspInit 48 static
7 | stm32f4xx_hal_msp.c:290:6:HAL_I2C_MspDeInit 16 static
8 | stm32f4xx_hal_msp.c:324:6:HAL_RNG_MspInit 24 static
9 | stm32f4xx_hal_msp.c:346:6:HAL_RNG_MspDeInit 16 static
10 | stm32f4xx_hal_msp.c:368:6:HAL_RTC_MspInit 16 static
11 | stm32f4xx_hal_msp.c:390:6:HAL_RTC_MspDeInit 16 static
12 | stm32f4xx_hal_msp.c:412:6:HAL_SPI_MspInit 56 static
13 | stm32f4xx_hal_msp.c:548:6:HAL_SPI_MspDeInit 16 static
14 | stm32f4xx_hal_msp.c:603:6:HAL_TIM_Base_MspInit 48 static
15 | stm32f4xx_hal_msp.c:632:6:HAL_TIM_MspPostInit 40 static
16 | stm32f4xx_hal_msp.c:664:6:HAL_TIM_Base_MspDeInit 16 static
17 | stm32f4xx_hal_msp.c:693:6:HAL_UART_MspInit 48 static
18 | stm32f4xx_hal_msp.c:766:6:HAL_UART_MspDeInit 16 static
19 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_hal_timebase_tim.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_hal_timebase_tim.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_hal_timebase_tim.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_timebase_tim.c:42:19:HAL_InitTick 56 static
2 | stm32f4xx_hal_timebase_tim.c:94:6:HAL_SuspendTick 4 static
3 | stm32f4xx_hal_timebase_tim.c:106:6:HAL_ResumeTick 4 static
4 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_it.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_it.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/stm32f4xx_it.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_it.c:81:6:NMI_Handler 4 static
2 | stm32f4xx_it.c:94:6:HardFault_Handler 4 static
3 | stm32f4xx_it.c:109:6:MemManage_Handler 4 static
4 | stm32f4xx_it.c:124:6:BusFault_Handler 4 static
5 | stm32f4xx_it.c:139:6:UsageFault_Handler 4 static
6 | stm32f4xx_it.c:154:6:DebugMon_Handler 4 static
7 | stm32f4xx_it.c:174:6:DMA1_Stream0_IRQHandler 8 static
8 | stm32f4xx_it.c:188:6:DMA1_Stream3_IRQHandler 8 static
9 | stm32f4xx_it.c:202:6:DMA1_Stream4_IRQHandler 8 static
10 | stm32f4xx_it.c:216:6:DMA1_Stream6_IRQHandler 8 static
11 | stm32f4xx_it.c:230:6:TIM1_UP_TIM10_IRQHandler 8 static
12 | stm32f4xx_it.c:244:6:DMA2_Stream0_IRQHandler 8 static
13 | stm32f4xx_it.c:258:6:DMA2_Stream2_IRQHandler 8 static
14 | stm32f4xx_it.c:272:6:DMA2_Stream3_IRQHandler 8 static
15 | stm32f4xx_it.c:286:6:DMA2_Stream4_IRQHandler 8 static
16 | stm32f4xx_it.c:300:6:OTG_FS_IRQHandler 8 static
17 | stm32f4xx_it.c:314:6:DMA2_Stream7_IRQHandler 8 static
18 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/syscalls.d:
--------------------------------------------------------------------------------
1 | Core/Src/syscalls.o: ../Core/Src/syscalls.c
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/syscalls.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/syscalls.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/syscalls.su:
--------------------------------------------------------------------------------
1 | syscalls.c:48:6:initialise_monitor_handles 4 static
2 | syscalls.c:52:5:_getpid 4 static
3 | syscalls.c:57:5:_kill 16 static
4 | syscalls.c:63:6:_exit 16 static
5 | syscalls.c:69:27:_read 32 static
6 | syscalls.c:81:27:_write 32 static
7 | syscalls.c:92:5:_close 16 static
8 | syscalls.c:98:5:_fstat 16 static
9 | syscalls.c:104:5:_isatty 16 static
10 | syscalls.c:109:5:_lseek 24 static
11 | syscalls.c:114:5:_open 12 static
12 | syscalls.c:120:5:_wait 16 static
13 | syscalls.c:126:5:_unlink 16 static
14 | syscalls.c:132:5:_times 16 static
15 | syscalls.c:137:5:_stat 16 static
16 | syscalls.c:143:5:_link 16 static
17 | syscalls.c:149:5:_fork 8 static
18 | syscalls.c:155:5:_execve 24 static
19 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/sysmem.d:
--------------------------------------------------------------------------------
1 | Core/Src/sysmem.o: ../Core/Src/sysmem.c
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/sysmem.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/sysmem.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/sysmem.su:
--------------------------------------------------------------------------------
1 | sysmem.c:54:7:_sbrk 32 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/system_stm32f4xx.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Src/system_stm32f4xx.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Src/system_stm32f4xx.su:
--------------------------------------------------------------------------------
1 | system_stm32f4xx.c:150:6:SystemInit 4 static
2 | system_stm32f4xx.c:205:6:SystemCoreClockUpdate 32 static
3 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Startup/startup_stm32f407vgtx.d:
--------------------------------------------------------------------------------
1 | Core/Startup/startup_stm32f407vgtx.o: \
2 | ../Core/Startup/startup_stm32f407vgtx.s
3 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Startup/startup_stm32f407vgtx.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Core/Startup/startup_stm32f407vgtx.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/Startup/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | S_SRCS += \
7 | ../Core/Startup/startup_stm32f407vgtx.s
8 |
9 | S_DEPS += \
10 | ./Core/Startup/startup_stm32f407vgtx.d
11 |
12 | OBJS += \
13 | ./Core/Startup/startup_stm32f407vgtx.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | Core/Startup/startup_stm32f407vgtx.o: ../Core/Startup/startup_stm32f407vgtx.s
18 | arm-none-eabi-gcc -mcpu=cortex-m4 -g3 -c -x assembler-with-cpp -MMD -MP -MF"Core/Startup/startup_stm32f407vgtx.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@" "$<"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Core/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 |
7 | # Each subdirectory must supply rules for building sources it contributes
8 |
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal.c:157:19:HAL_Init 8 static
2 | stm32f4xx_hal.c:190:19:HAL_DeInit 8 static
3 | stm32f4xx_hal.c:219:13:HAL_MspInit 4 static
4 | stm32f4xx_hal.c:230:13:HAL_MspDeInit 4 static
5 | stm32f4xx_hal.c:253:26:HAL_InitTick 16 static
6 | stm32f4xx_hal.c:312:13:HAL_IncTick 4 static
7 | stm32f4xx_hal.c:323:17:HAL_GetTick 4 static
8 | stm32f4xx_hal.c:332:10:HAL_GetTickPrio 4 static
9 | stm32f4xx_hal.c:341:19:HAL_SetTickFreq 24 static
10 | stm32f4xx_hal.c:373:21:HAL_GetTickFreq 4 static
11 | stm32f4xx_hal.c:389:13:HAL_Delay 24 static
12 | stm32f4xx_hal.c:415:13:HAL_SuspendTick 4 static
13 | stm32f4xx_hal.c:431:13:HAL_ResumeTick 4 static
14 | stm32f4xx_hal.c:441:10:HAL_GetHalVersion 4 static
15 | stm32f4xx_hal.c:450:10:HAL_GetREVID 4 static
16 | stm32f4xx_hal.c:459:10:HAL_GetDEVID 4 static
17 | stm32f4xx_hal.c:468:6:HAL_DBGMCU_EnableDBGSleepMode 4 static
18 | stm32f4xx_hal.c:477:6:HAL_DBGMCU_DisableDBGSleepMode 4 static
19 | stm32f4xx_hal.c:486:6:HAL_DBGMCU_EnableDBGStopMode 4 static
20 | stm32f4xx_hal.c:495:6:HAL_DBGMCU_DisableDBGStopMode 4 static
21 | stm32f4xx_hal.c:504:6:HAL_DBGMCU_EnableDBGStandbyMode 4 static
22 | stm32f4xx_hal.c:513:6:HAL_DBGMCU_DisableDBGStandbyMode 4 static
23 | stm32f4xx_hal.c:524:6:HAL_EnableCompensationCell 4 static
24 | stm32f4xx_hal.c:535:6:HAL_DisableCompensationCell 4 static
25 | stm32f4xx_hal.c:544:10:HAL_GetUIDw0 4 static
26 | stm32f4xx_hal.c:553:10:HAL_GetUIDw1 4 static
27 | stm32f4xx_hal.c:562:10:HAL_GetUIDw2 4 static
28 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_adc.c:312:19:HAL_ADC_Init 24 static
2 | stm32f4xx_hal_adc.c:406:19:HAL_ADC_DeInit 24 static
3 | stm32f4xx_hal_adc.c:663:13:HAL_ADC_MspInit 16 static
4 | stm32f4xx_hal_adc.c:678:13:HAL_ADC_MspDeInit 16 static
5 | stm32f4xx_hal_adc.c:717:19:HAL_ADC_Start 24 static
6 | stm32f4xx_hal_adc.c:832:19:HAL_ADC_Stop 16 static
7 | stm32f4xx_hal_adc.c:875:19:HAL_ADC_PollForConversion 24 static
8 | stm32f4xx_hal_adc.c:960:19:HAL_ADC_PollForEvent 32 static
9 | stm32f4xx_hal_adc.c:1022:19:HAL_ADC_Start_IT 24 static
10 | stm32f4xx_hal_adc.c:1139:19:HAL_ADC_Stop_IT 16 static
11 | stm32f4xx_hal_adc.c:1176:6:HAL_ADC_IRQHandler 24 static
12 | stm32f4xx_hal_adc.c:1338:19:HAL_ADC_Start_DMA 32 static
13 | stm32f4xx_hal_adc.c:1471:19:HAL_ADC_Stop_DMA 24 static
14 | stm32f4xx_hal_adc.c:1517:10:HAL_ADC_GetValue 16 static
15 | stm32f4xx_hal_adc.c:1529:13:HAL_ADC_ConvCpltCallback 16 static
16 | stm32f4xx_hal_adc.c:1544:13:HAL_ADC_ConvHalfCpltCallback 16 static
17 | stm32f4xx_hal_adc.c:1559:13:HAL_ADC_LevelOutOfWindowCallback 16 static
18 | stm32f4xx_hal_adc.c:1580:13:HAL_ADC_ErrorCallback 16 static
19 | stm32f4xx_hal_adc.c:1618:19:HAL_ADC_ConfigChannel 24 static
20 | stm32f4xx_hal_adc.c:1741:19:HAL_ADC_AnalogWDGConfig 16 static
21 | stm32f4xx_hal_adc.c:1823:10:HAL_ADC_GetState 16 static
22 | stm32f4xx_hal_adc.c:1835:10:HAL_ADC_GetError 16 static
23 | stm32f4xx_hal_adc.c:1855:13:ADC_Init 24 static
24 | stm32f4xx_hal_adc.c:1943:13:ADC_DMAConvCplt 24 static
25 | stm32f4xx_hal_adc.c:2012:13:ADC_DMAHalfConvCplt 24 static
26 | stm32f4xx_hal_adc.c:2029:13:ADC_DMAError 24 static
27 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_adc_ex.c:147:19:HAL_ADCEx_InjectedStart 32 static
2 | stm32f4xx_hal_adc_ex.c:242:19:HAL_ADCEx_InjectedStart_IT 32 static
3 | stm32f4xx_hal_adc_ex.c:345:19:HAL_ADCEx_InjectedStop 24 static
4 | stm32f4xx_hal_adc_ex.c:399:19:HAL_ADCEx_InjectedPollForConversion 24 static
5 | stm32f4xx_hal_adc_ex.c:466:19:HAL_ADCEx_InjectedStop_IT 24 static
6 | stm32f4xx_hal_adc_ex.c:528:10:HAL_ADCEx_InjectedGetValue 24 static
7 | stm32f4xx_hal_adc_ex.c:579:19:HAL_ADCEx_MultiModeStart_DMA 32 static
8 | stm32f4xx_hal_adc_ex.c:698:19:HAL_ADCEx_MultiModeStop_DMA 24 static
9 | stm32f4xx_hal_adc_ex.c:751:10:HAL_ADCEx_MultiModeGetValue 24 static
10 | stm32f4xx_hal_adc_ex.c:770:13:HAL_ADCEx_InjectedConvCpltCallback 16 static
11 | stm32f4xx_hal_adc_ex.c:787:19:HAL_ADCEx_InjectedConfigChannel 24 static
12 | stm32f4xx_hal_adc_ex.c:951:19:HAL_ADCEx_MultiModeConfigChannel 24 static
13 | stm32f4xx_hal_adc_ex.c:998:13:ADC_MultiModeDMAConvCplt 24 static
14 | stm32f4xx_hal_adc_ex.c:1051:13:ADC_MultiModeDMAHalfConvCplt 24 static
15 | stm32f4xx_hal_adc_ex.c:1064:13:ADC_MultiModeDMAError 24 static
16 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su:
--------------------------------------------------------------------------------
1 | core_cm4.h:1657:22:__NVIC_SetPriorityGrouping 24 static
2 | core_cm4.h:1676:26:__NVIC_GetPriorityGrouping 4 static
3 | core_cm4.h:1688:22:__NVIC_EnableIRQ 16 static
4 | core_cm4.h:1724:22:__NVIC_DisableIRQ 16 static,ignoring_inline_asm
5 | core_cm4.h:1743:26:__NVIC_GetPendingIRQ 16 static
6 | core_cm4.h:1762:22:__NVIC_SetPendingIRQ 16 static
7 | core_cm4.h:1777:22:__NVIC_ClearPendingIRQ 16 static
8 | core_cm4.h:1794:26:__NVIC_GetActive 16 static
9 | core_cm4.h:1816:22:__NVIC_SetPriority 16 static
10 | core_cm4.h:1838:26:__NVIC_GetPriority 16 static
11 | core_cm4.h:1863:26:NVIC_EncodePriority 40 static
12 | core_cm4.h:1890:22:NVIC_DecodePriority 40 static
13 | core_cm4.h:1939:34:__NVIC_SystemReset 4 static,ignoring_inline_asm
14 | core_cm4.h:2022:26:SysTick_Config 16 static
15 | stm32f4xx_hal_cortex.c:143:6:HAL_NVIC_SetPriorityGrouping 16 static
16 | stm32f4xx_hal_cortex.c:165:6:HAL_NVIC_SetPriority 32 static
17 | stm32f4xx_hal_cortex.c:187:6:HAL_NVIC_EnableIRQ 16 static
18 | stm32f4xx_hal_cortex.c:203:6:HAL_NVIC_DisableIRQ 16 static
19 | stm32f4xx_hal_cortex.c:216:6:HAL_NVIC_SystemReset 8 static
20 | stm32f4xx_hal_cortex.c:229:10:HAL_SYSTICK_Config 16 static
21 | stm32f4xx_hal_cortex.c:258:6:HAL_MPU_Disable 4 static,ignoring_inline_asm
22 | stm32f4xx_hal_cortex.c:281:6:HAL_MPU_Enable 16 static,ignoring_inline_asm
23 | stm32f4xx_hal_cortex.c:300:6:HAL_MPU_ConfigRegion 16 static
24 | stm32f4xx_hal_cortex.c:344:10:HAL_NVIC_GetPriorityGrouping 8 static
25 | stm32f4xx_hal_cortex.c:371:6:HAL_NVIC_GetPriority 24 static
26 | stm32f4xx_hal_cortex.c:386:6:HAL_NVIC_SetPendingIRQ 16 static
27 | stm32f4xx_hal_cortex.c:404:10:HAL_NVIC_GetPendingIRQ 16 static
28 | stm32f4xx_hal_cortex.c:420:6:HAL_NVIC_ClearPendingIRQ 16 static
29 | stm32f4xx_hal_cortex.c:437:10:HAL_NVIC_GetActive 16 static
30 | stm32f4xx_hal_cortex.c:454:6:HAL_SYSTICK_CLKSourceConfig 16 static
31 | stm32f4xx_hal_cortex.c:472:6:HAL_SYSTICK_IRQHandler 8 static
32 | stm32f4xx_hal_cortex.c:481:13:HAL_SYSTICK_Callback 4 static
33 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_crc.c:95:19:HAL_CRC_Init 16 static
2 | stm32f4xx_hal_crc.c:126:19:HAL_CRC_DeInit 16 static
3 | stm32f4xx_hal_crc.c:170:13:HAL_CRC_MspInit 16 static
4 | stm32f4xx_hal_crc.c:185:13:HAL_CRC_MspDeInit 16 static
5 | stm32f4xx_hal_crc.c:227:10:HAL_CRC_Accumulate 32 static
6 | stm32f4xx_hal_crc.c:257:10:HAL_CRC_Calculate 32 static
7 | stm32f4xx_hal_crc.c:306:22:HAL_CRC_GetState 16 static
8 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_dma.c:171:19:HAL_DMA_Init 32 static
2 | stm32f4xx_hal_dma.c:310:19:HAL_DMA_DeInit 24 static
3 | stm32f4xx_hal_dma.c:408:19:HAL_DMA_Start 32 static
4 | stm32f4xx_hal_dma.c:452:19:HAL_DMA_Start_IT 32 static
5 | stm32f4xx_hal_dma.c:514:19:HAL_DMA_Abort 24 static
6 | stm32f4xx_hal_dma.c:581:19:HAL_DMA_Abort_IT 16 static
7 | stm32f4xx_hal_dma.c:611:19:HAL_DMA_PollForTransfer 48 static
8 | stm32f4xx_hal_dma.c:747:6:HAL_DMA_IRQHandler 32 static
9 | stm32f4xx_hal_dma.c:968:19:HAL_DMA_RegisterCallback 32 static
10 | stm32f4xx_hal_dma.c:1028:19:HAL_DMA_UnRegisterCallback 24 static
11 | stm32f4xx_hal_dma.c:1113:22:HAL_DMA_GetState 16 static
12 | stm32f4xx_hal_dma.c:1124:10:HAL_DMA_GetError 16 static
13 | stm32f4xx_hal_dma.c:1150:13:DMA_SetConfig 24 static
14 | stm32f4xx_hal_dma.c:1184:17:DMA_CalcBaseAndBitshift 24 static
15 | stm32f4xx_hal_dma.c:1212:26:DMA_CheckFifoParam 24 static
16 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_dma_ex.c:101:19:HAL_DMAEx_MultiBufferStart 32 static
2 | stm32f4xx_hal_dma_ex.c:155:19:HAL_DMAEx_MultiBufferStart_IT 32 static
3 | stm32f4xx_hal_dma_ex.c:240:19:HAL_DMAEx_ChangeMemory 24 static
4 | stm32f4xx_hal_dma_ex.c:277:13:DMA_MultiBufferSetConfig 24 static
5 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_exti.c:143:19:HAL_EXTI_SetConfigLine 32 static
2 | stm32f4xx_hal_exti.c:238:19:HAL_EXTI_GetConfigLine 32 static
3 | stm32f4xx_hal_exti.c:327:19:HAL_EXTI_ClearConfigLine 32 static
4 | stm32f4xx_hal_exti.c:380:19:HAL_EXTI_RegisterCallback 32 static
5 | stm32f4xx_hal_exti.c:405:19:HAL_EXTI_GetHandle 16 static
6 | stm32f4xx_hal_exti.c:445:6:HAL_EXTI_IRQHandler 24 static
7 | stm32f4xx_hal_exti.c:477:10:HAL_EXTI_GetPending 32 static
8 | stm32f4xx_hal_exti.c:506:6:HAL_EXTI_ClearPending 24 static
9 | stm32f4xx_hal_exti.c:527:6:HAL_EXTI_GenerateSWI 24 static
10 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_flash.c:156:19:HAL_FLASH_Program 32 static
2 | stm32f4xx_hal_flash.c:214:19:HAL_FLASH_Program_IT 32 static
3 | stm32f4xx_hal_flash.c:261:6:HAL_FLASH_IRQHandler 16 static
4 | stm32f4xx_hal_flash.c:384:13:HAL_FLASH_EndOfOperationCallback 16 static
5 | stm32f4xx_hal_flash.c:401:13:HAL_FLASH_OperationErrorCallback 16 static
6 | stm32f4xx_hal_flash.c:433:19:HAL_FLASH_Unlock 16 static
7 | stm32f4xx_hal_flash.c:457:19:HAL_FLASH_Lock 4 static
8 | stm32f4xx_hal_flash.c:469:19:HAL_FLASH_OB_Unlock 4 static
9 | stm32f4xx_hal_flash.c:489:19:HAL_FLASH_OB_Lock 4 static
10 | stm32f4xx_hal_flash.c:501:19:HAL_FLASH_OB_Launch 8 static
11 | stm32f4xx_hal_flash.c:538:10:HAL_FLASH_GetError 4 static
12 | stm32f4xx_hal_flash.c:552:19:FLASH_WaitForLastOperation 24 static
13 | stm32f4xx_hal_flash.c:612:13:FLASH_Program_DoubleWord 24 static,ignoring_inline_asm
14 | stm32f4xx_hal_flash.c:646:13:FLASH_Program_Word 16 static
15 | stm32f4xx_hal_flash.c:671:13:FLASH_Program_HalfWord 16 static
16 | stm32f4xx_hal_flash.c:696:13:FLASH_Program_Byte 16 static
17 | stm32f4xx_hal_flash.c:713:13:FLASH_SetErrorCode 4 static
18 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_flash_ex.c:162:19:HAL_FLASHEx_Erase 24 static
2 | stm32f4xx_hal_flash_ex.c:233:19:HAL_FLASHEx_Erase_IT 24 static
3 | stm32f4xx_hal_flash_ex.c:286:19:HAL_FLASHEx_OBProgram 24 static
4 | stm32f4xx_hal_flash_ex.c:345:6:HAL_FLASHEx_OBGetConfig 16 static
5 | stm32f4xx_hal_flash_ex.c:953:13:FLASH_MassErase 16 static
6 | stm32f4xx_hal_flash_ex.c:982:6:FLASH_Erase_Sector 24 static
7 | stm32f4xx_hal_flash_ex.c:1032:26:FLASH_OB_EnableWRP 24 static
8 | stm32f4xx_hal_flash_ex.c:1068:26:FLASH_OB_DisableWRP 24 static
9 | stm32f4xx_hal_flash_ex.c:1162:26:FLASH_OB_RDP_LevelConfig 24 static
10 | stm32f4xx_hal_flash_ex.c:1196:26:FLASH_OB_UserConfig 24 static
11 | stm32f4xx_hal_flash_ex.c:1231:26:FLASH_OB_BOR_LevelConfig 16 static
12 | stm32f4xx_hal_flash_ex.c:1249:16:FLASH_OB_GetUser 4 static
13 | stm32f4xx_hal_flash_ex.c:1259:17:FLASH_OB_GetWRP 4 static
14 | stm32f4xx_hal_flash_ex.c:1273:16:FLASH_OB_GetRDP 16 static
15 | stm32f4xx_hal_flash_ex.c:1301:16:FLASH_OB_GetBOR 4 static
16 | stm32f4xx_hal_flash_ex.c:1311:6:FLASH_FlushCaches 4 static
17 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.su:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.su
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_gpio.c:171:6:HAL_GPIO_Init 40 static
2 | stm32f4xx_hal_gpio.c:296:6:HAL_GPIO_DeInit 32 static
3 | stm32f4xx_hal_gpio.c:377:15:HAL_GPIO_ReadPin 24 static
4 | stm32f4xx_hal_gpio.c:412:6:HAL_GPIO_WritePin 16 static
5 | stm32f4xx_hal_gpio.c:435:6:HAL_GPIO_TogglePin 16 static
6 | stm32f4xx_hal_gpio.c:461:19:HAL_GPIO_LockPin 24 static
7 | stm32f4xx_hal_gpio.c:495:6:HAL_GPIO_EXTI_IRQHandler 16 static
8 | stm32f4xx_hal_gpio.c:510:13:HAL_GPIO_EXTI_Callback 16 static
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.su:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.su
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_pcd.c:123:19:HAL_PCD_Init 80 static
2 | stm32f4xx_hal_pcd.c:244:19:HAL_PCD_DeInit 16 static
3 | stm32f4xx_hal_pcd.c:280:13:HAL_PCD_MspInit 16 static
4 | stm32f4xx_hal_pcd.c:295:13:HAL_PCD_MspDeInit 16 static
5 | stm32f4xx_hal_pcd.c:990:19:HAL_PCD_Start 24 static
6 | stm32f4xx_hal_pcd.c:1016:19:HAL_PCD_Stop 16 static
7 | stm32f4xx_hal_pcd.c:1038:6:HAL_PCD_IRQHandler 64 static
8 | stm32f4xx_hal_pcd.c:1425:13:HAL_PCD_DataOutStageCallback 16 static
9 | stm32f4xx_hal_pcd.c:1442:13:HAL_PCD_DataInStageCallback 16 static
10 | stm32f4xx_hal_pcd.c:1457:13:HAL_PCD_SetupStageCallback 16 static
11 | stm32f4xx_hal_pcd.c:1472:13:HAL_PCD_SOFCallback 16 static
12 | stm32f4xx_hal_pcd.c:1487:13:HAL_PCD_ResetCallback 16 static
13 | stm32f4xx_hal_pcd.c:1502:13:HAL_PCD_SuspendCallback 16 static
14 | stm32f4xx_hal_pcd.c:1517:13:HAL_PCD_ResumeCallback 16 static
15 | stm32f4xx_hal_pcd.c:1533:13:HAL_PCD_ISOOUTIncompleteCallback 16 static
16 | stm32f4xx_hal_pcd.c:1550:13:HAL_PCD_ISOINIncompleteCallback 16 static
17 | stm32f4xx_hal_pcd.c:1566:13:HAL_PCD_ConnectCallback 16 static
18 | stm32f4xx_hal_pcd.c:1581:13:HAL_PCD_DisconnectCallback 16 static
19 | stm32f4xx_hal_pcd.c:1615:19:HAL_PCD_DevConnect 24 static
20 | stm32f4xx_hal_pcd.c:1640:19:HAL_PCD_DevDisconnect 16 static
21 | stm32f4xx_hal_pcd.c:1654:19:HAL_PCD_SetAddress 16 static
22 | stm32f4xx_hal_pcd.c:1670:19:HAL_PCD_EP_Open 24 static
23 | stm32f4xx_hal_pcd.c:1714:19:HAL_PCD_EP_Close 24 static
24 | stm32f4xx_hal_pcd.c:1745:19:HAL_PCD_EP_Receive 32 static
25 | stm32f4xx_hal_pcd.c:1781:10:HAL_PCD_EP_GetRxCount 16 static
26 | stm32f4xx_hal_pcd.c:1793:19:HAL_PCD_EP_Transmit 32 static
27 | stm32f4xx_hal_pcd.c:1829:19:HAL_PCD_EP_SetStall 24 static
28 | stm32f4xx_hal_pcd.c:1870:19:HAL_PCD_EP_ClrStall 24 static
29 | stm32f4xx_hal_pcd.c:1906:19:HAL_PCD_EP_Flush 16 static
30 | stm32f4xx_hal_pcd.c:1929:19:HAL_PCD_ActivateRemoteWakeup 16 static
31 | stm32f4xx_hal_pcd.c:1939:19:HAL_PCD_DeActivateRemoteWakeup 16 static
32 | stm32f4xx_hal_pcd.c:1968:18:HAL_PCD_GetState 16 static
33 | stm32f4xx_hal_pcd.c:1992:26:PCD_WriteEmptyTxFifo 48 static
34 | stm32f4xx_hal_pcd.c:2052:26:PCD_EP_OutXfrComplete_int 32 static
35 | stm32f4xx_hal_pcd.c:2157:26:PCD_EP_OutSetupPacket_int 32 static
36 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_pcd_ex.c:71:19:HAL_PCDEx_SetTxFiFo 24 static
2 | stm32f4xx_hal_pcd_ex.c:113:19:HAL_PCDEx_SetRxFiFo 16 static
3 | stm32f4xx_hal_pcd_ex.c:302:13:HAL_PCDEx_LPM_Callback 16 static
4 | stm32f4xx_hal_pcd_ex.c:319:13:HAL_PCDEx_BCD_Callback 16 static
5 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_pwr.c:92:6:HAL_PWR_DeInit 4 static
2 | stm32f4xx_hal_pwr.c:105:6:HAL_PWR_EnableBkUpAccess 4 static
3 | stm32f4xx_hal_pwr.c:117:6:HAL_PWR_DisableBkUpAccess 4 static
4 | stm32f4xx_hal_pwr.c:252:6:HAL_PWR_ConfigPVD 16 static
5 | stm32f4xx_hal_pwr.c:295:6:HAL_PWR_EnablePVD 4 static
6 | stm32f4xx_hal_pwr.c:304:6:HAL_PWR_DisablePVD 4 static
7 | stm32f4xx_hal_pwr.c:318:6:HAL_PWR_EnableWakeUpPin 16 static
8 | stm32f4xx_hal_pwr.c:336:6:HAL_PWR_DisableWakeUpPin 16 static
9 | stm32f4xx_hal_pwr.c:365:6:HAL_PWR_EnterSLEEPMode 16 static,ignoring_inline_asm
10 | stm32f4xx_hal_pwr.c:408:6:HAL_PWR_EnterSTOPMode 16 static,ignoring_inline_asm
11 | stm32f4xx_hal_pwr.c:447:6:HAL_PWR_EnterSTANDBYMode 4 static,ignoring_inline_asm
12 | stm32f4xx_hal_pwr.c:468:6:HAL_PWR_PVD_IRQHandler 8 static
13 | stm32f4xx_hal_pwr.c:485:13:HAL_PWR_PVDCallback 4 static
14 | stm32f4xx_hal_pwr.c:500:6:HAL_PWR_EnableSleepOnExit 4 static
15 | stm32f4xx_hal_pwr.c:512:6:HAL_PWR_DisableSleepOnExit 4 static
16 | stm32f4xx_hal_pwr.c:524:6:HAL_PWR_EnableSEVOnPend 4 static
17 | stm32f4xx_hal_pwr.c:536:6:HAL_PWR_DisableSEVOnPend 4 static
18 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_pwr_ex.c:143:19:HAL_PWREx_EnableBkUpReg 16 static
2 | stm32f4xx_hal_pwr_ex.c:167:19:HAL_PWREx_DisableBkUpReg 16 static
3 | stm32f4xx_hal_pwr_ex.c:191:6:HAL_PWREx_EnableFlashPowerDown 4 static
4 | stm32f4xx_hal_pwr_ex.c:200:6:HAL_PWREx_DisableFlashPowerDown 4 static
5 | stm32f4xx_hal_pwr_ex.c:213:10:HAL_PWREx_GetVoltageRange 4 static
6 | stm32f4xx_hal_pwr_ex.c:234:19:HAL_PWREx_ControlVoltageScaling 32 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_rcc.c:202:26:HAL_RCC_DeInit 4 static
2 | stm32f4xx_hal_rcc.c:221:26:HAL_RCC_OscConfig 32 static
3 | stm32f4xx_hal_rcc.c:582:19:HAL_RCC_ClockConfig 24 static
4 | stm32f4xx_hal_rcc.c:766:6:HAL_RCC_MCOConfig 56 static
5 | stm32f4xx_hal_rcc.c:832:6:HAL_RCC_EnableCSS 4 static
6 | stm32f4xx_hal_rcc.c:841:6:HAL_RCC_DisableCSS 4 static
7 | stm32f4xx_hal_rcc.c:876:17:HAL_RCC_GetSysClockFreq 40 static
8 | stm32f4xx_hal_rcc.c:932:10:HAL_RCC_GetHCLKFreq 4 static
9 | stm32f4xx_hal_rcc.c:943:10:HAL_RCC_GetPCLK1Freq 8 static
10 | stm32f4xx_hal_rcc.c:955:10:HAL_RCC_GetPCLK2Freq 8 static
11 | stm32f4xx_hal_rcc.c:968:13:HAL_RCC_GetOscConfig 16 static
12 | stm32f4xx_hal_rcc.c:1047:6:HAL_RCC_GetClockConfig 16 static
13 | stm32f4xx_hal_rcc.c:1073:6:HAL_RCC_NMI_IRQHandler 8 static
14 | stm32f4xx_hal_rcc.c:1090:13:HAL_RCC_CSSCallback 4 static
15 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_rcc_ex.c:2515:19:HAL_RCCEx_PeriphCLKConfig 32 static
2 | stm32f4xx_hal_rcc_ex.c:2643:6:HAL_RCCEx_GetPeriphCLKConfig 24 static
3 | stm32f4xx_hal_rcc_ex.c:2681:10:HAL_RCCEx_GetPeriphCLKFreq 32 static
4 | stm32f4xx_hal_rcc_ex.c:2805:19:HAL_RCCEx_EnablePLLI2S 24 static
5 | stm32f4xx_hal_rcc_ex.c:2888:19:HAL_RCCEx_DisablePLLI2S 16 static
6 | stm32f4xx_hal_rcc_ex.c:3145:19:HAL_RCC_DeInit 16 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_rng.c:155:19:HAL_RNG_Init 16 static
2 | stm32f4xx_hal_rng.c:216:19:HAL_RNG_DeInit 16 static
3 | stm32f4xx_hal_rng.c:262:13:HAL_RNG_MspInit 16 static
4 | stm32f4xx_hal_rng.c:277:13:HAL_RNG_MspDeInit 16 static
5 | stm32f4xx_hal_rng.c:543:19:HAL_RNG_GenerateRandomNumber 24 static
6 | stm32f4xx_hal_rng.c:597:19:HAL_RNG_GenerateRandomNumber_IT 24 static
7 | stm32f4xx_hal_rng.c:632:10:HAL_RNG_GetRandomNumber 16 static
8 | stm32f4xx_hal_rng.c:651:10:HAL_RNG_GetRandomNumber_IT 24 static
9 | stm32f4xx_hal_rng.c:692:6:HAL_RNG_IRQHandler 24 static
10 | stm32f4xx_hal_rng.c:764:10:HAL_RNG_ReadLastRandomNumber 16 static
11 | stm32f4xx_hal_rng.c:776:13:HAL_RNG_ReadyDataCallback 16 static
12 | stm32f4xx_hal_rng.c:792:13:HAL_RNG_ErrorCallback 16 static
13 | stm32f4xx_hal_rng.c:826:22:HAL_RNG_GetState 16 static
14 | stm32f4xx_hal_rng.c:836:10:HAL_RNG_GetError 16 static
15 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.su:
--------------------------------------------------------------------------------
1 | stm32f4xx_hal_rtc.c:246:19:HAL_RTC_Init 16 static
2 | stm32f4xx_hal_rtc.c:363:19:HAL_RTC_DeInit 24 static
3 | stm32f4xx_hal_rtc.c:672:13:HAL_RTC_MspInit 16 static
4 | stm32f4xx_hal_rtc.c:687:13:HAL_RTC_MspDeInit 16 static
5 | stm32f4xx_hal_rtc.c:725:19:HAL_RTC_SetTime 40 static
6 | stm32f4xx_hal_rtc.c:856:19:HAL_RTC_GetTime 32 static
7 | stm32f4xx_hal_rtc.c:901:19:HAL_RTC_SetDate 40 static
8 | stm32f4xx_hal_rtc.c:1011:19:HAL_RTC_GetDate 32 static
9 | stm32f4xx_hal_rtc.c:1066:19:HAL_RTC_SetAlarm 48 static
10 | stm32f4xx_hal_rtc.c:1249:19:HAL_RTC_SetAlarm_IT 48 static
11 | stm32f4xx_hal_rtc.c:1432:19:HAL_RTC_DeactivateAlarm 24 static
12 | stm32f4xx_hal_rtc.c:1529:19:HAL_RTC_GetAlarm 32 static
13 | stm32f4xx_hal_rtc.c:1580:6:HAL_RTC_AlarmIRQHandler 16 static
14 | stm32f4xx_hal_rtc.c:1631:13:HAL_RTC_AlarmAEventCallback 16 static
15 | stm32f4xx_hal_rtc.c:1647:19:HAL_RTC_PollForAlarmAEvent 24 static
16 | stm32f4xx_hal_rtc.c:1709:19:HAL_RTC_WaitForSynchro 24 static
17 | stm32f4xx_hal_rtc.c:1755:21:HAL_RTC_GetState 16 static
18 | stm32f4xx_hal_rtc.c:1772:19:RTC_EnterInitMode 24 static
19 | stm32f4xx_hal_rtc.c:1804:9:RTC_ByteToBcd2 24 static
20 | stm32f4xx_hal_rtc.c:1822:9:RTC_Bcd2ToByte 24 static
21 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/LIBJPEG/App/libjpeg.d:
--------------------------------------------------------------------------------
1 | LIBJPEG/App/libjpeg.o: ../LIBJPEG/App/libjpeg.c ../LIBJPEG/App/libjpeg.h \
2 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
3 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
4 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
6 | ../Core/Inc/FreeRTOSConfig.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
15 | ../LIBJPEG/Target/jmorecfg.h
16 |
17 | ../LIBJPEG/App/libjpeg.h:
18 |
19 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
20 |
21 | ../LIBJPEG/Target/jconfig.h:
22 |
23 | ../LIBJPEG/Target/jdata_conf.h:
24 |
25 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
28 |
29 | ../Core/Inc/FreeRTOSConfig.h:
30 |
31 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
46 |
47 | ../LIBJPEG/Target/jmorecfg.h:
48 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/LIBJPEG/App/libjpeg.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/LIBJPEG/App/libjpeg.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/LIBJPEG/App/libjpeg.su:
--------------------------------------------------------------------------------
1 | libjpeg.c:37:6:MX_LIBJPEG_Init 4 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/LIBJPEG/App/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../LIBJPEG/App/libjpeg.c
8 |
9 | C_DEPS += \
10 | ./LIBJPEG/App/libjpeg.d
11 |
12 | OBJS += \
13 | ./LIBJPEG/App/libjpeg.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | LIBJPEG/App/libjpeg.o: ../LIBJPEG/App/libjpeg.c
18 | arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DDEBUG -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../LIBJPEG/App -I../LIBJPEG/Target -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Middlewares/Third_Party/LibJPEG/include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"LIBJPEG/App/libjpeg.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c
8 |
9 | C_DEPS += \
10 | ./Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.d
11 |
12 | OBJS += \
13 | ./Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.o: ../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c
18 | arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DDEBUG -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.su:
--------------------------------------------------------------------------------
1 | usbd_cdc.c:456:16:USBD_CDC_Init 24 static
2 | usbd_cdc.c:540:16:USBD_CDC_DeInit 24 static
3 | usbd_cdc.c:576:16:USBD_CDC_Setup 32 static
4 | usbd_cdc.c:673:16:USBD_CDC_DataIn 24 static
5 | usbd_cdc.c:710:16:USBD_CDC_DataOut 24 static
6 | usbd_cdc.c:736:16:USBD_CDC_EP0_RxReady 24 static
7 | usbd_cdc.c:759:17:USBD_CDC_GetFSCfgDesc 16 static
8 | usbd_cdc.c:773:17:USBD_CDC_GetHSCfgDesc 16 static
9 | usbd_cdc.c:787:17:USBD_CDC_GetOtherSpeedCfgDesc 16 static
10 | usbd_cdc.c:800:10:USBD_CDC_GetDeviceQualifierDescriptor 16 static
11 | usbd_cdc.c:813:9:USBD_CDC_RegisterInterface 16 static
12 | usbd_cdc.c:832:9:USBD_CDC_SetTxBuffer 32 static
13 | usbd_cdc.c:850:9:USBD_CDC_SetRxBuffer 24 static
14 | usbd_cdc.c:865:9:USBD_CDC_TransmitPacket 24 static
15 | usbd_cdc.c:899:9:USBD_CDC_ReceivePacket 24 static
16 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.c
8 |
9 | C_DEPS += \
10 | ./Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.d
11 |
12 | OBJS += \
13 | ./Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.o: ../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.c
18 | arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DDEBUG -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../LIBJPEG/App -I../LIBJPEG/Target -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Middlewares/Third_Party/LibJPEG/include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src/usbd_dfu.su:
--------------------------------------------------------------------------------
1 | core_cm4.h:1939:34:__NVIC_SystemReset 4 static,ignoring_inline_asm
2 | usbd_dfu.c:251:16:USBD_DFU_Init 24 static
3 | usbd_dfu.c:299:16:USBD_DFU_DeInit 24 static
4 | usbd_dfu.c:332:16:USBD_DFU_Setup 40 static
5 | usbd_dfu.c:465:17:USBD_DFU_GetCfgDesc 16 static
6 | usbd_dfu.c:479:16:USBD_DFU_EP0_RxReady 16 static
7 | usbd_dfu.c:491:17:USBD_DFU_EP0_TxReady 40 static
8 | usbd_dfu.c:593:16:USBD_DFU_SOF 16 static
9 | usbd_dfu.c:607:17:USBD_DFU_GetDeviceQualifierDesc 16 static
10 | usbd_dfu.c:623:17:USBD_DFU_GetUsrStringDesc 32 static
11 | usbd_dfu.c:647:9:USBD_DFU_RegisterMedia 16 static
12 | usbd_dfu.c:670:13:DFU_Detach 24 static
13 | usbd_dfu.c:713:13:DFU_Download 24 static
14 | usbd_dfu.c:768:13:DFU_Upload 32 static
15 | usbd_dfu.c:861:13:DFU_GetStatus 24 static
16 | usbd_dfu.c:937:13:DFU_ClearStatus 24 static
17 | usbd_dfu.c:970:13:DFU_GetState 24 static
18 | usbd_dfu.c:984:13:DFU_Abort 24 static
19 | usbd_dfu.c:1014:13:DFU_Leave 24 static
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.su:
--------------------------------------------------------------------------------
1 | usbd_core.c:89:20:USBD_Init 32 static
2 | usbd_core.c:136:20:USBD_DeInit 24 static
3 | usbd_core.c:175:20:USBD_RegisterClass 24 static
4 | usbd_core.c:207:20:USBD_Start 16 static
5 | usbd_core.c:219:20:USBD_Stop 24 static
6 | usbd_core.c:246:20:USBD_RunTestMode 16 static
7 | usbd_core.c:262:20:USBD_SetClassConfig 24 static
8 | usbd_core.c:282:20:USBD_ClrClassConfig 16 static
9 | usbd_core.c:300:20:USBD_LL_SetupStage 24 static
10 | usbd_core.c:339:20:USBD_LL_DataOutStage 32 static
11 | usbd_core.c:407:20:USBD_LL_DataInStage 32 static
12 | usbd_core.c:496:20:USBD_LL_Reset 16 static
13 | usbd_core.c:530:20:USBD_LL_SetSpeed 16 static
14 | usbd_core.c:545:20:USBD_LL_Suspend 16 static
15 | usbd_core.c:560:20:USBD_LL_Resume 16 static
16 | usbd_core.c:577:20:USBD_LL_SOF 16 static
17 | usbd_core.c:596:20:USBD_LL_IsoINIncomplete 16 static
18 | usbd_core.c:612:20:USBD_LL_IsoOUTIncomplete 16 static
19 | usbd_core.c:628:20:USBD_LL_DevConnected 16 static
20 | usbd_core.c:642:20:USBD_LL_DevDisconnected 16 static
21 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.su:
--------------------------------------------------------------------------------
1 | usbd_def.h:306:26:SWAPBYTE 32 static
2 | usbd_ctlreq.c:100:20:USBD_StdDevReq 24 static
3 | usbd_ctlreq.c:163:20:USBD_StdItfReq 24 static
4 | usbd_ctlreq.c:214:20:USBD_StdEPReq 24 static
5 | usbd_ctlreq.c:380:13:USBD_GetDescriptor 24 static
6 | usbd_ctlreq.c:585:13:USBD_SetAddress 24 static
7 | usbd_ctlreq.c:626:27:USBD_SetConfig 24 static
8 | usbd_ctlreq.c:716:13:USBD_GetConfig 16 static
9 | usbd_ctlreq.c:750:13:USBD_GetStatus 16 static
10 | usbd_ctlreq.c:791:13:USBD_SetFeature 16 static
11 | usbd_ctlreq.c:808:13:USBD_ClrFeature 16 static
12 | usbd_ctlreq.c:836:6:USBD_ParseSetupRequest 24 static
13 | usbd_ctlreq.c:865:6:USBD_CtlError 16 static
14 | usbd_ctlreq.c:882:6:USBD_GetString 32 static
15 | usbd_ctlreq.c:917:16:USBD_GetLen 24 static
16 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.su:
--------------------------------------------------------------------------------
1 | usbd_ioreq.c:87:20:USBD_CtlSendData 24 static
2 | usbd_ioreq.c:109:20:USBD_CtlContinueSendData 24 static
3 | usbd_ioreq.c:126:20:USBD_CtlPrepareRx 24 static
4 | usbd_ioreq.c:148:20:USBD_CtlContinueRx 24 static
5 | usbd_ioreq.c:162:20:USBD_CtlSendStatus 16 static
6 | usbd_ioreq.c:179:20:USBD_CtlReceiveStatus 16 static
7 | usbd_ioreq.c:197:10:USBD_GetRxCount 16 static
8 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.c
8 |
9 | C_DEPS += \
10 | ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.d
11 |
12 | OBJS += \
13 | ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o: ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.c
18 | arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DDEBUG -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../LIBJPEG/App -I../LIBJPEG/Target -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Middlewares/Third_Party/LibJPEG/include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/croutine.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/croutine.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/croutine.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h
13 |
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
15 |
16 | ../Core/Inc/FreeRTOSConfig.h:
17 |
18 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
19 |
20 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
21 |
22 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
23 |
24 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
25 |
26 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
27 |
28 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
29 |
30 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
31 |
32 | ../Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h:
33 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/croutine.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/croutine.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/croutine.su:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/croutine.su
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/event_groups.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/event_groups.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/event_groups.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h
16 |
17 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
18 |
19 | ../Core/Inc/FreeRTOSConfig.h:
20 |
21 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
22 |
23 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
24 |
25 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
30 |
31 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h:
42 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/event_groups.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/event_groups.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/event_groups.su:
--------------------------------------------------------------------------------
1 | event_groups.c:93:21:xEventGroupCreateStatic 32 static,ignoring_inline_asm
2 | event_groups.c:145:21:xEventGroupCreate 16 static
3 | event_groups.c:191:13:xEventGroupSync 56 static,ignoring_inline_asm
4 | event_groups.c:311:13:xEventGroupWaitBits 72 static,ignoring_inline_asm
5 | event_groups.c:461:13:xEventGroupClearBits 32 static,ignoring_inline_asm
6 | event_groups.c:490:13:xEventGroupClearBitsFromISR 24 static
7 | event_groups.c:503:13:xEventGroupGetBitsFromISR 40 static,ignoring_inline_asm
8 | event_groups.c:519:13:xEventGroupSetBits 64 static,ignoring_inline_asm
9 | event_groups.c:613:6:vEventGroupDelete 32 static,ignoring_inline_asm
10 | event_groups.c:657:6:vEventGroupSetBitsCallback 16 static
11 | event_groups.c:665:6:vEventGroupClearBitsCallback 16 static
12 | event_groups.c:671:19:prvTestWaitCondition 32 static
13 | event_groups.c:708:13:xEventGroupSetBitsFromISR 32 static
14 | event_groups.c:723:14:uxEventGroupGetNumber 24 static
15 | event_groups.c:745:7:vEventGroupSetNumber 16 static
16 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/list.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/list.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/list.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h
11 |
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
13 |
14 | ../Core/Inc/FreeRTOSConfig.h:
15 |
16 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
17 |
18 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
19 |
20 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
21 |
22 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
23 |
24 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
25 |
26 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
27 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/list.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/list.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/list.su:
--------------------------------------------------------------------------------
1 | list.c:37:6:vListInitialise 16 static
2 | list.c:62:6:vListInitialiseItem 16 static
3 | list.c:74:6:vListInsertEnd 24 static
4 | list.c:103:6:vListInsert 24 static
5 | list.c:170:13:uxListRemove 24 static
6 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h
12 |
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
14 |
15 | ../Core/Inc/FreeRTOSConfig.h:
16 |
17 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
18 |
19 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
20 |
21 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
22 |
23 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
24 |
25 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
30 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.su:
--------------------------------------------------------------------------------
1 | port.c:187:14:pxPortInitialiseStack 24 static
2 | port.c:217:13:prvTaskExitError 24 static,ignoring_inline_asm
3 | port.c:242:6:SVC_Handler 0 static,ignoring_inline_asm
4 | port.c:261:13:prvPortStartFirstTask 0 static,ignoring_inline_asm
5 | port.c:287:12:xPortStartScheduler 32 static,ignoring_inline_asm
6 | port.c:395:6:vPortEndScheduler 16 static,ignoring_inline_asm
7 | port.c:403:6:vPortEnterCritical 16 static,ignoring_inline_asm
8 | port.c:420:6:vPortExitCritical 16 static,ignoring_inline_asm
9 | port.c:431:6:PendSV_Handler 0 static,ignoring_inline_asm
10 | port.c:488:6:SysTick_Handler 16 static,ignoring_inline_asm
11 | port.c:679:30:vPortSetupTimerInterrupt 4 static
12 | port.c:701:13:vPortEnableVFP 0 static,ignoring_inline_asm
13 | port.c:717:7:vPortValidateInterruptPriority 24 static,ignoring_inline_asm
14 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c
8 |
9 | C_DEPS += \
10 | ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.d
11 |
12 | OBJS += \
13 | ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o: ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c
18 | arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DDEBUG -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../LIBJPEG/App -I../LIBJPEG/Target -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Middlewares/Third_Party/LibJPEG/include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h
12 |
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
14 |
15 | ../Core/Inc/FreeRTOSConfig.h:
16 |
17 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
18 |
19 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
20 |
21 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
22 |
23 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
24 |
25 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
30 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.su:
--------------------------------------------------------------------------------
1 | heap_4.c:113:7:pvPortMalloc 48 static,ignoring_inline_asm
2 | heap_4.c:263:6:vPortFree 32 static,ignoring_inline_asm
3 | heap_4.c:311:8:xPortGetFreeHeapSize 4 static
4 | heap_4.c:317:8:xPortGetMinimumEverFreeHeapSize 4 static
5 | heap_4.c:323:6:vPortInitialiseBlocks 4 static
6 | heap_4.c:329:13:prvHeapInit 24 static
7 | heap_4.c:377:13:prvInsertBlockIntoFreeList 24 static
8 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c
8 |
9 | C_DEPS += \
10 | ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.d
11 |
12 | OBJS += \
13 | ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o: ../Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c
18 | arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DDEBUG -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../LIBJPEG/App -I../LIBJPEG/Target -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Middlewares/Third_Party/LibJPEG/include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/queue.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/queue.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/queue.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h
14 |
15 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
16 |
17 | ../Core/Inc/FreeRTOSConfig.h:
18 |
19 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
20 |
21 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
22 |
23 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
24 |
25 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
30 |
31 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/queue.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
36 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/queue.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/queue.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h
13 |
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
15 |
16 | ../Core/Inc/FreeRTOSConfig.h:
17 |
18 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
19 |
20 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
21 |
22 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
23 |
24 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
25 |
26 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
27 |
28 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
29 |
30 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
31 |
32 | ../Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h:
33 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.su:
--------------------------------------------------------------------------------
1 | stream_buffer.c:219:23:xStreamBufferGenericCreate 56 static,ignoring_inline_asm
2 | stream_buffer.c:283:23:xStreamBufferGenericCreateStatic 72 static,ignoring_inline_asm
3 | stream_buffer.c:359:6:vStreamBufferDelete 24 static,ignoring_inline_asm
4 | stream_buffer.c:392:12:xStreamBufferReset 40 static,ignoring_inline_asm
5 | stream_buffer.c:441:12:xStreamBufferSetTriggerLevel 32 static,ignoring_inline_asm
6 | stream_buffer.c:470:8:xStreamBufferSpacesAvailable 32 static,ignoring_inline_asm
7 | stream_buffer.c:494:8:xStreamBufferBytesAvailable 32 static,ignoring_inline_asm
8 | stream_buffer.c:506:8:xStreamBufferSend 72 static,ignoring_inline_asm
9 | stream_buffer.c:610:8:xStreamBufferSendFromISR 72 static,ignoring_inline_asm
10 | stream_buffer.c:661:15:prvWriteMessageToBuffer 32 static
11 | stream_buffer.c:713:8:xStreamBufferReceive 64 static,ignoring_inline_asm
12 | stream_buffer.c:817:8:xStreamBufferNextMessageLengthBytes 48 static,ignoring_inline_asm
13 | stream_buffer.c:861:8:xStreamBufferReceiveFromISR 72 static,ignoring_inline_asm
14 | stream_buffer.c:918:15:prvReadMessageFromBuffer 40 static
15 | stream_buffer.c:970:12:xStreamBufferIsEmpty 32 static,ignoring_inline_asm
16 | stream_buffer.c:993:12:xStreamBufferIsFull 32 static,ignoring_inline_asm
17 | stream_buffer.c:1028:12:xStreamBufferSendCompletedFromISR 56 static,ignoring_inline_asm
18 | stream_buffer.c:1058:12:xStreamBufferReceiveCompletedFromISR 56 static,ignoring_inline_asm
19 | stream_buffer.c:1088:15:prvWriteBytesToBuffer 48 static,ignoring_inline_asm
20 | stream_buffer.c:1134:15:prvReadBytesFromBuffer 48 static,ignoring_inline_asm
21 | stream_buffer.c:1189:15:prvBytesInBuffer 24 static
22 | stream_buffer.c:1209:13:prvInitialiseNewStreamBuffer 32 static,ignoring_inline_asm
23 | stream_buffer.c:1237:14:uxStreamBufferGetStreamBufferNumber 16 static
24 | stream_buffer.c:1247:7:vStreamBufferSetStreamBufferNumber 16 static
25 | stream_buffer.c:1257:10:ucStreamBufferGetStreamBufferType 16 static
26 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/tasks.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/tasks.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/tasks.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h
15 |
16 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
17 |
18 | ../Core/Inc/FreeRTOSConfig.h:
19 |
20 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
21 |
22 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
23 |
24 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
25 |
26 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
27 |
28 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
29 |
30 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
31 |
32 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
33 |
34 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h:
35 |
36 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
37 |
38 | ../Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h:
39 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/tasks.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/tasks.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/timers.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/FreeRTOS/Source/timers.o: \
2 | ../Middlewares/Third_Party/FreeRTOS/Source/timers.c \
3 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
4 | ../Core/Inc/FreeRTOSConfig.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
7 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h
15 |
16 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
17 |
18 | ../Core/Inc/FreeRTOSConfig.h:
19 |
20 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
21 |
22 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
23 |
24 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
25 |
26 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
27 |
28 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
29 |
30 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
31 |
32 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
33 |
34 | ../Middlewares/Third_Party/FreeRTOS/Source/include/queue.h:
35 |
36 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
37 |
38 | ../Middlewares/Third_Party/FreeRTOS/Source/include/timers.h:
39 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/timers.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/timers.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/FreeRTOS/Source/timers.su:
--------------------------------------------------------------------------------
1 | timers.c:227:12:xTimerCreateTimerTask 48 static,ignoring_inline_asm
2 | timers.c:282:16:xTimerCreate 40 static
3 | timers.c:309:16:xTimerCreateStatic 48 static,ignoring_inline_asm
4 | timers.c:349:13:prvInitialiseNewTimer 32 static,ignoring_inline_asm
5 | timers.c:381:12:xTimerGenericCommand 48 static,ignoring_inline_asm
6 | timers.c:424:14:xTimerGetTimerDaemonTaskHandle 16 static,ignoring_inline_asm
7 | timers.c:433:12:xTimerGetPeriod 24 static,ignoring_inline_asm
8 | timers.c:442:6:vTimerSetReloadMode 24 static,ignoring_inline_asm
9 | timers.c:462:12:xTimerGetExpiryTime 32 static,ignoring_inline_asm
10 | timers.c:473:14:pcTimerGetName 24 static,ignoring_inline_asm
11 | timers.c:482:13:prvProcessExpiredTimer 40 static,ignoring_inline_asm
12 | timers.c:523:8:prvTimerTask 24 static
13 | timers.c:559:13:prvProcessTimerOrBlockTask 24 static,ignoring_inline_asm
14 | timers.c:619:19:prvGetNextExpireTime 24 static
15 | timers.c:645:19:prvSampleTimeNow 24 static
16 | timers.c:668:19:prvInsertTimerInActiveList 32 static
17 | timers.c:709:13:prvProcessReceivedCommands 64 static,ignoring_inline_asm
18 | timers.c:857:13:prvSwitchTimerLists 40 static,ignoring_inline_asm
19 | timers.c:916:13:prvCheckForValidListAndQueue 16 static
20 | timers.c:967:12:xTimerIsTimerActive 32 static,ignoring_inline_asm
21 | timers.c:992:7:pvTimerGetTimerID 32 static,ignoring_inline_asm
22 | timers.c:1009:6:vTimerSetTimerID 24 static,ignoring_inline_asm
23 | timers.c:1025:13:xTimerPendFunctionCallFromISR 48 static
24 | timers.c:1049:13:xTimerPendFunctionCall 48 static,ignoring_inline_asm
25 | timers.c:1078:14:uxTimerGetTimerNumber 16 static
26 | timers.c:1088:7:vTimerSetTimerNumber 16 static
27 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jaricom.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jaricom.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jaricom.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jaricom.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jaricom.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jaricom.su:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jaricom.su
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcapimin.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcapimin.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcapimin.su:
--------------------------------------------------------------------------------
1 | jcapimin.c:31:1:jpeg_CreateCompress 48 static
2 | jcapimin.c:96:1:jpeg_destroy_compress 16 static
3 | jcapimin.c:108:1:jpeg_abort_compress 16 static
4 | jcapimin.c:127:1:jpeg_suppress_tables 32 static
5 | jcapimin.c:155:1:jpeg_finish_compress 24 static
6 | jcapimin.c:200:1:jpeg_write_marker 32 static
7 | jcapimin.c:222:1:jpeg_write_m_header 24 static
8 | jcapimin.c:234:1:jpeg_write_m_byte 16 static
9 | jcapimin.c:262:1:jpeg_write_tables 16 static
10 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcapistd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcapistd.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcapistd.su:
--------------------------------------------------------------------------------
1 | jcapistd.c:38:1:jpeg_start_compress 16 static
2 | jcapistd.c:77:1:jpeg_write_scanlines 40 static
3 | jcapistd.c:120:1:jpeg_write_raw_data 32 static
4 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcarith.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jcarith.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jcarith.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcarith.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcarith.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcarith.su:
--------------------------------------------------------------------------------
1 | jcarith.c:116:1:emit_byte 24 static
2 | jcarith.c:133:1:finish_pass 24 static
3 | jcarith.c:219:1:arith_encode 48 static
4 | jcarith.c:319:1:emit_restart 32 static
5 | jcarith.c:362:1:encode_mcu_DC_first 56 static
6 | jcarith.c:453:1:encode_mcu_AC_first 56 static
7 | jcarith.c:555:1:encode_mcu_DC_refine 32 static
8 | jcarith.c:590:1:encode_mcu_AC_refine 56 static
9 | jcarith.c:686:1:encode_mcu 72 static
10 | jcarith.c:834:1:start_pass 32 static
11 | jcarith.c:917:1:jinit_arith_encoder 24 static
12 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jccoefct.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jccoefct.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jccoefct.su:
--------------------------------------------------------------------------------
1 | jccoefct.c:73:1:start_iMCU_row 24 static
2 | jccoefct.c:101:1:start_pass_coef 24 static
3 | jccoefct.c:144:1:compress_data 96 static
4 | jccoefct.c:249:1:compress_first_pass 112 static
5 | jccoefct.c:346:1:compress_output 88 static
6 | jccoefct.c:410:1:jinit_c_coef_controller 56 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jccolor.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jccolor.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jccolor.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jccolor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jccolor.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jccolor.su:
--------------------------------------------------------------------------------
1 | jccolor.c:87:1:rgb_ycc_start 32 static
2 | jccolor.c:131:1:rgb_ycc_convert 64 static
3 | jccolor.c:187:1:rgb_gray_convert 56 static
4 | jccolor.c:226:1:cmyk_ycck_convert 64 static
5 | jccolor.c:281:1:grayscale_convert 40 static
6 | jccolor.c:310:1:rgb_convert 40 static
7 | jccolor.c:343:1:null_convert 40 static
8 | jccolor.c:375:1:null_method 16 static
9 | jccolor.c:386:1:jinit_color_converter 24 static
10 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcdctmgr.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcdctmgr.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcdctmgr.su:
--------------------------------------------------------------------------------
1 | jcdctmgr.c:65:1:forward_DCT 312 static
2 | jcdctmgr.c:128:1:forward_DCT_float 312 static
3 | jcdctmgr.c:180:1:start_pass_fdctmgr 72 static
4 | jcdctmgr.c:464:1:jinit_forward_dct 24 static
5 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jchuff.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jchuff.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jchuff.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jchuff.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jchuff.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jchuff.su:
--------------------------------------------------------------------------------
1 | jchuff.c:161:1:jpeg_make_c_derived_tbl 1360 static
2 | jchuff.c:269:1:dump_buffer_s 24 static
3 | jchuff.c:284:1:dump_buffer_e 24 static
4 | jchuff.c:307:1:emit_bits_s 40 static
5 | jchuff.c:346:1:emit_bits_e 40 static
6 | jchuff.c:386:1:flush_bits_s 16 static
7 | jchuff.c:397:1:flush_bits_e 16 static
8 | jchuff.c:411:1:emit_dc_symbol 32 static
9 | jchuff.c:424:1:emit_ac_symbol 32 static
10 | jchuff.c:440:1:emit_buffered_bits 24 static
11 | jchuff.c:459:1:emit_eobrun 24 static
12 | jchuff.c:490:1:emit_restart_s 24 static
13 | jchuff.c:511:1:emit_restart_e 24 static
14 | jchuff.c:541:1:encode_mcu_DC_first 56 static
15 | jchuff.c:628:1:encode_mcu_AC_first 64 static
16 | jchuff.c:739:1:encode_mcu_DC_refine 40 static
17 | jchuff.c:786:1:encode_mcu_AC_refine 320 static
18 | jchuff.c:916:1:encode_one_block 56 static
19 | jchuff.c:1016:1:encode_mcu_huff 88 static
20 | jchuff.c:1073:1:finish_pass_huff 64 static
21 | jchuff.c:1122:1:htest_one_block 48 static
22 | jchuff.c:1197:1:encode_mcu_gather 48 static
23 | jchuff.c:1256:1:jpeg_gen_optimal_table 2144 static
24 | jchuff.c:1397:1:finish_pass_gather 72 static
25 | jchuff.c:1451:1:start_pass_huff 32 static
26 | jchuff.c:1557:1:jinit_huff_encoder 24 static
27 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcinit.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jcinit.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jcinit.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcinit.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcinit.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcinit.su:
--------------------------------------------------------------------------------
1 | jcinit.c:30:1:jinit_compress_master 16 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmainct.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmainct.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmainct.su:
--------------------------------------------------------------------------------
1 | jcmainct.c:69:1:start_pass_main 24 static
2 | jcmainct.c:113:1:process_data_simple_main 56 static
3 | jcmainct.c:245:1:jinit_c_main_controller 40 static
4 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmarker.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmarker.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmarker.su:
--------------------------------------------------------------------------------
1 | jcmarker.c:109:1:emit_byte 24 static
2 | jcmarker.c:123:1:emit_marker 16 static
3 | jcmarker.c:132:1:emit_2bytes 16 static
4 | jcmarker.c:145:1:emit_dqt 32 static
5 | jcmarker.c:186:1:emit_dht 40 static
6 | jcmarker.c:224:1:emit_dac 64 static
7 | jcmarker.c:273:1:emit_dri 16 static
8 | jcmarker.c:285:1:emit_sof 24 static
9 | jcmarker.c:316:1:emit_sos 32 static
10 | jcmarker.c:351:1:emit_pseudo_sos 16 static
11 | jcmarker.c:367:1:emit_jfif_app0 16 static
12 | jcmarker.c:402:1:emit_adobe_app14 16 static
13 | jcmarker.c:456:1:write_marker_header 24 static
14 | jcmarker.c:468:1:write_marker_byte 16 static
15 | jcmarker.c:487:1:write_file_header 24 static
16 | jcmarker.c:512:1:write_frame_header 32 static
17 | jcmarker.c:576:1:write_scan_header 32 static
18 | jcmarker.c:620:1:write_file_trailer 16 static
19 | jcmarker.c:634:1:write_tables_only 24 static
20 | jcmarker.c:663:1:jinit_marker_writer 24 static
21 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmaster.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmaster.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcmaster.su:
--------------------------------------------------------------------------------
1 | jcmaster.c:53:1:jpeg_calc_jpeg_dimensions 16 static
2 | jcmaster.c:209:1:jpeg_calc_trans_dimensions 16 static
3 | jcmaster.c:220:1:initial_setup 40 static
4 | jcmaster.c:358:1:validate_script 2664 static
5 | jcmaster.c:493:1:reduce_script 40 static
6 | jcmaster.c:528:1:select_scan_parameters 32 static
7 | jcmaster.c:572:1:per_scan_setup 40 static
8 | jcmaster.c:665:1:prepare_for_pass 24 static
9 | jcmaster.c:753:1:pass_startup 16 static
10 | jcmaster.c:767:1:finish_pass_master 24 static
11 | jcmaster.c:807:1:jinit_c_master_control 24 static
12 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcomapi.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jcomapi.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jcomapi.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcomapi.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcomapi.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcomapi.su:
--------------------------------------------------------------------------------
1 | jcomapi.c:29:1:jpeg_abort 24 static
2 | jcomapi.c:69:1:jpeg_destroy 16 static
3 | jcomapi.c:86:1:jpeg_alloc_quant_table 24 static
4 | jcomapi.c:98:1:jpeg_alloc_huff_table 24 static
5 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcparam.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jcparam.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jcparam.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcparam.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcparam.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcparam.su:
--------------------------------------------------------------------------------
1 | jcparam.c:24:1:jpeg_add_quant_table 40 static
2 | jcparam.c:91:1:jpeg_default_qtables 24 static
3 | jcparam.c:106:1:jpeg_set_linear_quality 32 static
4 | jcparam.c:123:1:jpeg_quality_scaling 16 static
5 | jcparam.c:149:1:jpeg_set_quality 24 static
6 | jcparam.c:169:1:add_huff_table 32 static
7 | jcparam.c:199:1:std_huff_tables 16 static
8 | jcparam.c:285:1:jpeg_set_defaults 24 static
9 | jcparam.c:381:1:jpeg_default_colorspace 16 static
10 | jcparam.c:413:1:jpeg_set_colorspace 24 static
11 | jcparam.c:497:1:fill_a_scan 24 static
12 | jcparam.c:512:1:fill_scans 32 static
13 | jcparam.c:531:1:fill_dc_scans 40 static
14 | jcparam.c:559:1:jpeg_simple_progression 48 static
15 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcprepct.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcprepct.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcprepct.su:
--------------------------------------------------------------------------------
1 | jcprepct.c:78:1:start_pass_prep 24 static
2 | jcprepct.c:106:1:expand_bottom_edge 40 static
3 | jcprepct.c:128:1:pre_process_data 64 static
4 | jcprepct.c:197:1:pre_process_context 64 static
5 | jcprepct.c:269:1:create_context_buffer 56 static
6 | jcprepct.c:318:1:jinit_c_prep_controller 40 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcsample.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcsample.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jcsample.su:
--------------------------------------------------------------------------------
1 | jcsample.c:84:1:start_pass_downsample 16 static
2 | jcsample.c:96:1:expand_right_edge 40 static
3 | jcsample.c:123:1:sep_downsample 56 static
4 | jcsample.c:150:1:int_downsample 88 static
5 | jcsample.c:199:1:fullsize_downsample 32 static
6 | jcsample.c:224:1:h2v1_downsample 56 static
7 | jcsample.c:261:1:h2v2_downsample 56 static
8 | jcsample.c:305:1:h2v2_smooth_downsample 80 static
9 | jcsample.c:406:1:fullsize_smooth_downsample 80 static
10 | jcsample.c:478:1:jinit_downsampler 48 static
11 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jctrans.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jctrans.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jctrans.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jctrans.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jctrans.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jctrans.su:
--------------------------------------------------------------------------------
1 | jctrans.c:39:1:jpeg_write_coefficients 16 static
2 | jctrans.c:64:1:jpeg_copy_critical_parameters 48 static
3 | jctrans.c:163:1:transencode_master_selection 16 static
4 | jctrans.c:221:1:start_iMCU_row 24 static
5 | jctrans.c:249:1:start_pass_coef 24 static
6 | jctrans.c:272:1:compress_output 144 static
7 | jctrans.c:357:1:transencode_coef_controller 32 static
8 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdapimin.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdapimin.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdapimin.su:
--------------------------------------------------------------------------------
1 | jdapimin.c:31:1:jpeg_CreateDecompress 40 static
2 | jdapimin.c:92:1:jpeg_destroy_decompress 16 static
3 | jdapimin.c:104:1:jpeg_abort_decompress 16 static
4 | jdapimin.c:115:1:default_decompress_parms 40 static
5 | jdapimin.c:242:1:jpeg_read_header 24 static
6 | jdapimin.c:288:1:jpeg_consume_input 24 static
7 | jdapimin.c:335:1:jpeg_input_complete 16 static
8 | jdapimin.c:350:1:jpeg_has_multiple_scans 16 static
9 | jdapimin.c:370:1:jpeg_finish_decompress 16 static
10 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdapistd.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdapistd.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdapistd.su:
--------------------------------------------------------------------------------
1 | jdapistd.c:38:1:jpeg_start_decompress 24 static
2 | jdapistd.c:95:1:output_pass_setup 32 static
3 | jdapistd.c:152:1:jpeg_read_scanlines 40 static
4 | jdapistd.c:185:1:jpeg_read_raw_data 32 static
5 | jdapistd.c:228:1:jpeg_start_output 16 static
6 | jdapistd.c:253:1:jpeg_finish_output 16 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdarith.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdarith.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdarith.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdarith.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdarith.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdarith.su:
--------------------------------------------------------------------------------
1 | jdarith.c:65:1:get_byte 24 static
2 | jdarith.c:106:1:arith_decode 40 static
3 | jdarith.c:190:1:process_restart 32 static
4 | jdarith.c:242:1:decode_mcu_DC_first 56 static
5 | jdarith.c:321:1:decode_mcu_AC_first 56 static
6 | jdarith.c:398:1:decode_mcu_DC_refine 32 static
7 | jdarith.c:431:1:decode_mcu_AC_refine 56 static
8 | jdarith.c:503:1:decode_mcu 64 static
9 | jdarith.c:635:1:start_pass 48 static
10 | jdarith.c:745:1:jinit_arith_decoder 32 static
11 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatadst.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdatadst.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdatadst.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
19 |
20 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
21 |
22 | ../LIBJPEG/Target/jconfig.h:
23 |
24 | ../LIBJPEG/Target/jdata_conf.h:
25 |
26 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
27 |
28 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
29 |
30 | ../Core/Inc/FreeRTOSConfig.h:
31 |
32 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
33 |
34 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
35 |
36 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
37 |
38 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
39 |
40 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
41 |
42 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
43 |
44 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
45 |
46 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
47 |
48 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
49 |
50 | ../LIBJPEG/Target/jmorecfg.h:
51 |
52 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
53 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatadst.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatadst.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatadst.su:
--------------------------------------------------------------------------------
1 | jdatadst.c:66:1:init_destination 24 static
2 | jdatadst.c:81:1:init_mem_destination 16 static
3 | jdatadst.c:111:1:empty_output_buffer 24 static
4 | jdatadst.c:127:1:empty_mem_output_buffer 32 static
5 | jdatadst.c:167:1:term_destination 24 static
6 | jdatadst.c:181:1:term_mem_destination 24 static
7 | jdatadst.c:197:1:jpeg_stdio_dest 24 static
8 | jdatadst.c:233:1:jpeg_mem_dest 32 static
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatasrc.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdatasrc.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdatasrc.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
19 |
20 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
21 |
22 | ../LIBJPEG/Target/jconfig.h:
23 |
24 | ../LIBJPEG/Target/jdata_conf.h:
25 |
26 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
27 |
28 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
29 |
30 | ../Core/Inc/FreeRTOSConfig.h:
31 |
32 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
33 |
34 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
35 |
36 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
37 |
38 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
39 |
40 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
41 |
42 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
43 |
44 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
45 |
46 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
47 |
48 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
49 |
50 | ../LIBJPEG/Target/jmorecfg.h:
51 |
52 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
53 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatasrc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatasrc.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdatasrc.su:
--------------------------------------------------------------------------------
1 | jdatasrc.c:46:1:init_source 24 static
2 | jdatasrc.c:59:1:init_mem_source 16 static
3 | jdatasrc.c:99:1:fill_input_buffer 24 static
4 | jdatasrc.c:125:1:fill_mem_input_buffer 16 static
5 | jdatasrc.c:159:1:skip_input_data 24 static
6 | jdatasrc.c:200:1:term_source 16 static
7 | jdatasrc.c:213:1:jpeg_stdio_src 24 static
8 | jdatasrc.c:252:1:jpeg_mem_src 32 static
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdcoefct.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdcoefct.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdcoefct.su:
--------------------------------------------------------------------------------
1 | jdcoefct.c:80:1:start_iMCU_row 24 static
2 | jdcoefct.c:108:1:start_input_pass 16 static
3 | jdcoefct.c:120:1:start_output_pass 24 static
4 | jdcoefct.c:148:1:decompress_onepass 96 static
5 | jdcoefct.c:230:1:dummy_consume_data 16 static
6 | jdcoefct.c:246:1:consume_data 88 static
7 | jdcoefct.c:317:1:decompress_data 80 static
8 | jdcoefct.c:407:1:smoothing_ok 56 static
9 | jdcoefct.c:463:1:decompress_smooth_data 320 static
10 | jdcoefct.c:678:1:jinit_d_coef_controller 56 static
11 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdcolor.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdcolor.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdcolor.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdcolor.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdcolor.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdcolor.su:
--------------------------------------------------------------------------------
1 | jdcolor.c:91:1:build_ycc_rgb_table 32 static
2 | jdcolor.c:141:1:ycc_rgb_convert 80 static
3 | jdcolor.c:189:1:build_rgb_y_table 32 static
4 | jdcolor.c:213:1:rgb_gray_convert 64 static
5 | jdcolor.c:250:1:rgb_convert 40 static
6 | jdcolor.c:282:1:null_convert 40 static
7 | jdcolor.c:314:1:grayscale_convert 32 static
8 | jdcolor.c:330:1:gray_rgb_convert 40 static
9 | jdcolor.c:358:1:ycck_cmyk_convert 88 static
10 | jdcolor.c:406:1:start_pass_dcolor 16 static
11 | jdcolor.c:417:1:jinit_color_deconverter 24 static
12 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jddctmgr.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jddctmgr.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jddctmgr.su:
--------------------------------------------------------------------------------
1 | jddctmgr.c:90:1:start_pass 72 static
2 | jddctmgr.c:362:1:jinit_inverse_dct 32 static
3 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdhuff.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdhuff.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdhuff.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdhuff.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdhuff.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdhuff.su:
--------------------------------------------------------------------------------
1 | jdhuff.c:323:1:jpeg_make_d_derived_tbl 1368 static
2 | jdhuff.c:465:1:jpeg_fill_bit_buffer 48 static
3 | jdhuff.c:592:1:jpeg_huff_decode 24 static
4 | jdhuff.c:636:1:process_restart 24 static
5 | jdhuff.c:695:1:decode_mcu_DC_first 112 static
6 | jdhuff.c:766:1:decode_mcu_AC_first 96 static
7 | jdhuff.c:855:1:decode_mcu_DC_refine 64 static
8 | jdhuff.c:904:1:decode_mcu_AC_refine 368 static
9 | jdhuff.c:1059:1:decode_mcu_sub 120 static
10 | jdhuff.c:1187:1:decode_mcu 112 static
11 | jdhuff.c:1310:1:start_pass_huff_decoder 56 static
12 | jdhuff.c:1509:1:jinit_huff_decoder 32 static
13 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdinput.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdinput.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdinput.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdinput.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdinput.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdinput.su:
--------------------------------------------------------------------------------
1 | jdinput.c:47:1:jpeg_core_output_dimensions 24 static
2 | jdinput.c:208:1:initial_setup 24 static
3 | jdinput.c:388:1:per_scan_setup 32 static
4 | jdinput.c:487:1:latch_quant_tables 32 static
5 | jdinput.c:521:1:start_input_pass 16 static
6 | jdinput.c:538:1:finish_input_pass 16 static
7 | jdinput.c:559:1:consume_markers 24 static
8 | jdinput.c:619:1:reset_input_controller 24 static
9 | jdinput.c:641:1:jinit_input_controller 24 static
10 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmainct.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmainct.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmainct.su:
--------------------------------------------------------------------------------
1 | jdmainct.c:157:1:alloc_funny_pointers 40 static
2 | jdmainct.c:195:1:make_funny_pointers 56 static
3 | jdmainct.c:238:1:set_wraparound_pointers 48 static
4 | jdmainct.c:266:1:set_bottom_pointers 48 static
5 | jdmainct.c:307:1:start_pass_main 24 static
6 | jdmainct.c:345:1:process_data_simple_main 56 static
7 | jdmainct.c:385:1:process_data_context_main 56 static
8 | jdmainct.c:459:1:process_data_crank_post 48 static
9 | jdmainct.c:476:1:jinit_d_main_controller 48 static
10 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmarker.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmarker.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmarker.su:
--------------------------------------------------------------------------------
1 | jdmarker.c:198:1:get_soi 24 static
2 | jdmarker.c:238:1:get_sof 64 static
3 | jdmarker.c:304:1:get_sos 64 static
4 | jdmarker.c:378:1:get_dac 40 static
5 | jdmarker.c:424:1:get_dht 344 static
6 | jdmarker.c:495:1:get_dqt 64 static
7 | jdmarker.c:585:1:get_dri 40 static
8 | jdmarker.c:621:1:examine_app0 32 static
9 | jdmarker.c:697:1:examine_app14 48 static
10 | jdmarker.c:728:1:get_interesting_appn 56 static
11 | jdmarker.c:776:1:save_marker 64 static
12 | jdmarker.c:882:1:skip_variable 32 static
13 | jdmarker.c:911:1:next_marker 32 static
14 | jdmarker.c:958:1:first_marker 40 static
15 | jdmarker.c:994:1:read_markers 16 static
16 | jdmarker.c:1159:1:read_restart_marker 16 static
17 | jdmarker.c:1238:1:jpeg_resync_to_restart 24 static
18 | jdmarker.c:1288:1:reset_marker_reader 24 static
19 | jdmarker.c:1308:1:jinit_marker_reader 24 static
20 | jdmarker.c:1346:1:jpeg_save_markers 40 static
21 | jdmarker.c:1395:1:jpeg_set_marker_processor 32 static
22 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmaster.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmaster.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmaster.su:
--------------------------------------------------------------------------------
1 | jdmaster.c:45:1:use_merged_upsample 16 static
2 | jdmaster.c:88:1:jpeg_calc_output_dimensions 32 static
3 | jdmaster.c:229:1:prepare_range_limit_table 24 static
4 | jdmaster.c:269:1:master_selection 40 static
5 | jdmaster.c:412:1:prepare_for_output_pass 24 static
6 | jdmaster.c:472:1:finish_output_pass 24 static
7 | jdmaster.c:489:1:jpeg_new_colormap 24 static
8 | jdmaster.c:517:1:jinit_master_decompress 24 static
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmerge.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdmerge.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdmerge.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmerge.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmerge.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdmerge.su:
--------------------------------------------------------------------------------
1 | jdmerge.c:83:1:build_ycc_rgb_table 32 static
2 | jdmerge.c:126:1:start_pass_merged_upsample 24 static
3 | jdmerge.c:144:1:merged_2v_upsample 56 static
4 | jdmerge.c:193:1:merged_1v_upsample 40 static
5 | jdmerge.c:226:1:h2v1_merged_upsample 96 static
6 | jdmerge.c:288:1:h2v2_merged_upsample 96 static
7 | jdmerge.c:370:1:jinit_merged_upsampler 24 static
8 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdpostct.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdpostct.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdpostct.su:
--------------------------------------------------------------------------------
1 | jdpostct.c:73:1:start_pass_dpost 40 static
2 | jdpostct.c:126:1:post_process_1pass 64 static
3 | jdpostct.c:158:1:post_process_prepass 64 static
4 | jdpostct.c:202:1:post_process_2pass 56 static
5 | jdpostct.c:250:1:jinit_d_post_controller 40 static
6 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdsample.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdsample.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdsample.su:
--------------------------------------------------------------------------------
1 | jdsample.c:70:1:start_pass_upsample 24 static
2 | jdsample.c:90:1:sep_upsample 56 static
3 | jdsample.c:158:1:fullsize_upsample 24 static
4 | jdsample.c:171:1:noop_upsample 24 static
5 | jdsample.c:190:1:int_upsample 80 static
6 | jdsample.c:234:1:h2v1_upsample 48 static
7 | jdsample.c:262:1:h2v2_upsample 64 static
8 | jdsample.c:294:1:jinit_upsampler 56 static
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdtrans.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jdtrans.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jdtrans.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdtrans.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdtrans.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jdtrans.su:
--------------------------------------------------------------------------------
1 | jdtrans.c:46:1:jpeg_read_coefficients 24 static
2 | jdtrans.c:98:1:transdecode_master_selection 24 static
3 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jerror.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jerror.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jerror.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jversion.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jversion.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jerror.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jerror.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jerror.su:
--------------------------------------------------------------------------------
1 | jerror.c:70:1:error_exit 16 static
2 | jerror.c:98:1:output_message 216 static
3 | jerror.c:129:1:emit_message 24 static
4 | jerror.c:158:1:format_message 88 static
5 | jerror.c:213:1:reset_error_mgr 16 static
6 | jerror.c:232:1:jpeg_std_error 16 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctflt.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctflt.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctflt.su:
--------------------------------------------------------------------------------
1 | jfdctflt.c:60:1:jpeg_fdct_float 112 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctfst.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctfst.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctfst.su:
--------------------------------------------------------------------------------
1 | jfdctfst.c:115:1:jpeg_fdct_ifast 112 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctint.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctint.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jfdctint.su:
--------------------------------------------------------------------------------
1 | jfdctint.c:158:1:jpeg_fdct_islow 72 static
2 | jfdctint.c:328:1:jpeg_fdct_7x7 80 static
3 | jfdctint.c:463:1:jpeg_fdct_6x6 64 static
4 | jfdctint.c:576:1:jpeg_fdct_5x5 56 static
5 | jfdctint.c:686:1:jpeg_fdct_4x4 56 static
6 | jfdctint.c:779:1:jpeg_fdct_3x3 48 static
7 | jfdctint.c:864:1:jpeg_fdct_2x2 48 static
8 | jfdctint.c:908:1:jpeg_fdct_1x1 24 static
9 | jfdctint.c:926:1:jpeg_fdct_9x9 120 static
10 | jfdctint.c:1076:1:jpeg_fdct_10x10 144 static
11 | jfdctint.c:1239:1:jpeg_fdct_11x11 192 static
12 | jfdctint.c:1422:1:jpeg_fdct_12x12 216 static
13 | jfdctint.c:1587:1:jpeg_fdct_13x13 264 static
14 | jfdctint.c:1786:1:jpeg_fdct_14x14 288 static
15 | jfdctint.c:1986:1:jpeg_fdct_15x15 336 static
16 | jfdctint.c:2165:1:jpeg_fdct_16x16 360 static
17 | jfdctint.c:2373:1:jpeg_fdct_16x8 104 static
18 | jfdctint.c:2554:1:jpeg_fdct_14x7 104 static
19 | jfdctint.c:2718:1:jpeg_fdct_12x6 88 static
20 | jfdctint.c:2857:1:jpeg_fdct_10x5 80 static
21 | jfdctint.c:2989:1:jpeg_fdct_8x4 72 static
22 | jfdctint.c:3125:1:jpeg_fdct_6x3 64 static
23 | jfdctint.c:3225:1:jpeg_fdct_4x2 56 static
24 | jfdctint.c:3308:1:jpeg_fdct_2x1 40 static
25 | jfdctint.c:3341:1:jpeg_fdct_8x16 368 static
26 | jfdctint.c:3529:1:jpeg_fdct_7x14 304 static
27 | jfdctint.c:3710:1:jpeg_fdct_6x12 216 static
28 | jfdctint.c:3859:1:jpeg_fdct_5x10 144 static
29 | jfdctint.c:4005:1:jpeg_fdct_4x8 72 static
30 | jfdctint.c:4141:1:jpeg_fdct_3x6 64 static
31 | jfdctint.c:4246:1:jpeg_fdct_2x4 56 static
32 | jfdctint.c:4325:1:jpeg_fdct_1x2 32 static
33 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctflt.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctflt.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctflt.su:
--------------------------------------------------------------------------------
1 | jidctflt.c:69:1:jpeg_idct_float 376 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctfst.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctfst.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctfst.su:
--------------------------------------------------------------------------------
1 | jidctfst.c:168:1:jpeg_idct_ifast 384 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctint.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctint.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jidctint.su:
--------------------------------------------------------------------------------
1 | jidctint.c:171:1:jpeg_idct_islow 360 static
2 | jidctint.c:428:1:jpeg_idct_7x7 288 static
3 | jidctint.c:577:1:jpeg_idct_6x6 232 static
4 | jidctint.c:698:1:jpeg_idct_5x5 184 static
5 | jidctint.c:813:1:jpeg_idct_4x4 144 static
6 | jidctint.c:918:1:jpeg_idct_3x3 104 static
7 | jidctint.c:1007:1:jpeg_idct_2x2 64 static
8 | jidctint.c:1062:1:jpeg_idct_1x1 40 static
9 | jidctint.c:1089:1:jpeg_idct_9x9 392 static
10 | jidctint.c:1260:1:jpeg_idct_10x10 432 static
11 | jidctint.c:1455:1:jpeg_idct_11x11 464 static
12 | jidctint.c:1649:1:jpeg_idct_12x12 496 static
13 | jidctint.c:1865:1:jpeg_idct_13x13 536 static
14 | jidctint.c:2093:1:jpeg_idct_14x14 568 static
15 | jidctint.c:2319:1:jpeg_idct_15x15 608 static
16 | jidctint.c:2561:1:jpeg_idct_16x16 640 static
17 | jidctint.c:2822:1:jpeg_idct_16x8 392 static
18 | jidctint.c:3093:1:jpeg_idct_14x7 344 static
19 | jidctint.c:3288:1:jpeg_idct_12x6 304 static
20 | jidctint.c:3464:1:jpeg_idct_10x5 264 static
21 | jidctint.c:3625:1:jpeg_idct_8x4 224 static
22 | jidctint.c:3778:1:jpeg_idct_6x3 160 static
23 | jidctint.c:3888:1:jpeg_idct_4x2 112 static
24 | jidctint.c:3978:1:jpeg_idct_2x1 48 static
25 | jidctint.c:4020:1:jpeg_idct_8x16 640 static
26 | jidctint.c:4238:1:jpeg_idct_7x14 512 static
27 | jidctint.c:4421:1:jpeg_idct_6x12 400 static
28 | jidctint.c:4585:1:jpeg_idct_5x10 312 static
29 | jidctint.c:4737:1:jpeg_idct_4x8 224 static
30 | jidctint.c:4917:1:jpeg_idct_3x6 160 static
31 | jidctint.c:5021:1:jpeg_idct_2x4 112 static
32 | jidctint.c:5105:1:jpeg_idct_1x2 40 static
33 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jmemmgr.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jmemmgr.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jmemmgr.su:
--------------------------------------------------------------------------------
1 | jmemmgr.c:218:1:out_of_memory 16 static
2 | jmemmgr.c:258:1:alloc_small 56 static
3 | jmemmgr.c:343:1:alloc_large 40 static
4 | jmemmgr.c:396:1:alloc_sarray 56 static
5 | jmemmgr.c:444:1:alloc_barray 56 static
6 | jmemmgr.c:524:1:request_virt_sarray 32 static
7 | jmemmgr.c:554:1:request_virt_barray 32 static
8 | jmemmgr.c:584:1:realize_virt_arrays 48 static
9 | jmemmgr.c:691:1:do_sarray_io 64 static
10 | jmemmgr.c:724:1:do_barray_io 64 static
11 | jmemmgr.c:757:1:access_virt_sarray 40 static
12 | jmemmgr.c:842:1:access_virt_barray 40 static
13 | jmemmgr.c:931:1:free_pool 48 static
14 | jmemmgr.c:1003:1:self_destruct 24 static
15 | jmemmgr.c:1029:1:jinit_memory_mgr 32 static
16 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jmemnobs.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jmemnobs.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jmemnobs.su:
--------------------------------------------------------------------------------
1 | jmemnobs.c:29:1:jpeg_get_small 16 static
2 | jmemnobs.c:35:1:jpeg_free_small 24 static
3 | jmemnobs.c:49:1:jpeg_get_large 16 static
4 | jmemnobs.c:55:1:jpeg_free_large 24 static
5 | jmemnobs.c:67:1:jpeg_mem_available 24 static
6 | jmemnobs.c:81:1:jpeg_open_backing_store 24 static
7 | jmemnobs.c:94:1:jpeg_mem_init 16 static
8 | jmemnobs.c:100:1:jpeg_mem_term 16 static
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant1.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jquant1.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jquant1.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant1.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant1.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant1.su:
--------------------------------------------------------------------------------
1 | jquant1.c:187:1:select_ncolors 48 static
2 | jquant1.c:246:1:output_value 24 static
3 | jquant1.c:260:1:largest_input_value 24 static
4 | jquant1.c:274:1:create_colormap 72 static
5 | jquant1.c:334:1:create_colorindex 64 static
6 | jquant1.c:397:1:make_odither_array 40 static
7 | jquant1.c:433:1:create_odither_tables 40 static
8 | jquant1.c:460:1:color_quantize 56 static
9 | jquant1.c:488:1:color_quantize3 64 static
10 | jquant1.c:516:1:quantize_ord_dither 72 static
11 | jquant1.c:566:1:quantize3_ord_dither 80 static
12 | jquant1.c:611:1:quantize_fs_dither 104 static
13 | jquant1.c:723:1:alloc_fs_workspace 32 static
14 | jquant1.c:742:1:start_pass_1_quant 32 static
15 | jquant1.c:799:1:finish_pass_1_quant 16 static
16 | jquant1.c:811:1:new_color_map_1_quant 16 static
17 | jquant1.c:822:1:jinit_1pass_quantizer 24 static
18 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant2.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jquant2.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jquant2.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant2.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant2.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jquant2.su:
--------------------------------------------------------------------------------
1 | jquant2.c:225:1:prescan_quantize 48 static
2 | jquant2.c:274:1:find_biggest_color_pop 32 static
3 | jquant2.c:294:1:find_biggest_volume 32 static
4 | jquant2.c:314:1:update_box 80 static
5 | jquant2.c:425:1:median_cut 56 static
6 | jquant2.c:500:1:compute_color 96 static
7 | jquant2.c:540:1:select_colors 32 static
8 | jquant2.c:647:1:find_nearby_colors 1104 static
9 | jquant2.c:776:1:find_best_colors 600 static
10 | jquant2.c:856:1:fill_inverse_cmap 472 static
11 | jquant2.c:916:1:pass2_no_dither 72 static
12 | jquant2.c:950:1:pass2_fs_dither 136 static
13 | jquant2.c:1109:1:init_error_limit 32 static
14 | jquant2.c:1144:1:finish_pass1 24 static
15 | jquant2.c:1157:1:finish_pass2 16 static
16 | jquant2.c:1168:1:start_pass_2_quant 32 static
17 | jquant2.c:1231:1:new_color_map_2_quant 24 static
18 | jquant2.c:1245:1:jinit_2pass_quantizer 40 static
19 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jutils.d:
--------------------------------------------------------------------------------
1 | Middlewares/Third_Party/LibJPEG/source/jutils.o: \
2 | ../Middlewares/Third_Party/LibJPEG/source/jutils.c \
3 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h \
4 | ../LIBJPEG/Target/jconfig.h ../LIBJPEG/Target/jdata_conf.h \
5 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
6 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
7 | ../Core/Inc/FreeRTOSConfig.h \
8 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
9 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
10 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
11 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
12 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
13 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
14 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
15 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
16 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h \
17 | ../LIBJPEG/Target/jmorecfg.h \
18 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h \
19 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h
20 |
21 | ../Middlewares/Third_Party/LibJPEG/include/jinclude.h:
22 |
23 | ../LIBJPEG/Target/jconfig.h:
24 |
25 | ../LIBJPEG/Target/jdata_conf.h:
26 |
27 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
28 |
29 | ../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
30 |
31 | ../Core/Inc/FreeRTOSConfig.h:
32 |
33 | ../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
34 |
35 | ../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
36 |
37 | ../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
38 |
39 | ../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
40 |
41 | ../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
42 |
43 | ../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
44 |
45 | ../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
46 |
47 | ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
48 |
49 | ../Middlewares/Third_Party/LibJPEG/include/jpeglib.h:
50 |
51 | ../LIBJPEG/Target/jmorecfg.h:
52 |
53 | ../Middlewares/Third_Party/LibJPEG/include/jpegint.h:
54 |
55 | ../Middlewares/Third_Party/LibJPEG/include/jerror.h:
56 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jutils.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jutils.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/Middlewares/Third_Party/LibJPEG/source/jutils.su:
--------------------------------------------------------------------------------
1 | jutils.c:124:1:jdiv_round_up 16 static
2 | jutils.c:133:1:jround_up 16 static
3 | jutils.c:177:1:jcopy_sample_rows 40 static
4 | jutils.c:211:1:jcopy_block_row 24 static
5 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usb_device.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usb_device.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usb_device.su:
--------------------------------------------------------------------------------
1 | usb_device.c:65:6:MX_USB_DEVICE_Init 8 static
2 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usbd_cdc_if.su:
--------------------------------------------------------------------------------
1 | usbd_cdc_if.c:153:15:CDC_Init_FS 8 static
2 | usbd_cdc_if.c:167:15:CDC_DeInit_FS 4 static
3 | usbd_cdc_if.c:181:15:CDC_Control_FS 16 static
4 | usbd_cdc_if.c:262:15:CDC_Receive_FS 16 static
5 | usbd_cdc_if.c:282:9:CDC_Transmit_FS 24 static
6 | usbd_cdc_if.c:308:15:CDC_TransmitCplt_FS 32 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usbd_desc.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usbd_desc.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usbd_desc.su:
--------------------------------------------------------------------------------
1 | usbd_desc.c:259:11:USBD_FS_DeviceDescriptor 16 static
2 | usbd_desc.c:272:11:USBD_FS_LangIDStrDescriptor 16 static
3 | usbd_desc.c:285:11:USBD_FS_ProductStrDescriptor 16 static
4 | usbd_desc.c:304:11:USBD_FS_ManufacturerStrDescriptor 16 static
5 | usbd_desc.c:317:11:USBD_FS_SerialStrDescriptor 16 static
6 | usbd_desc.c:337:11:USBD_FS_ConfigStrDescriptor 16 static
7 | usbd_desc.c:356:11:USBD_FS_InterfaceStrDescriptor 16 static
8 | usbd_desc.c:389:13:Get_SerialNum 24 static
9 | usbd_desc.c:413:13:IntToUnicode 32 static
10 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usbd_dfu_if.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usbd_dfu_if.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/App/usbd_dfu_if.su:
--------------------------------------------------------------------------------
1 | usbd_dfu_if.c:155:10:MEM_If_Init_FS 4 static
2 | usbd_dfu_if.c:166:10:MEM_If_DeInit_FS 4 static
3 | usbd_dfu_if.c:178:10:MEM_If_Erase_FS 16 static
4 | usbd_dfu_if.c:193:10:MEM_If_Write_FS 24 static
5 | usbd_dfu_if.c:207:10:MEM_If_Read_FS 24 static
6 | usbd_dfu_if.c:222:10:MEM_If_GetStatus_FS 24 static
7 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/Target/subdir.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | # Add inputs and outputs from these tool invocations to the build variables
6 | C_SRCS += \
7 | ../USB_DEVICE/Target/usbd_conf.c
8 |
9 | C_DEPS += \
10 | ./USB_DEVICE/Target/usbd_conf.d
11 |
12 | OBJS += \
13 | ./USB_DEVICE/Target/usbd_conf.o
14 |
15 |
16 | # Each subdirectory must supply rules for building sources it contributes
17 | USB_DEVICE/Target/usbd_conf.o: ../USB_DEVICE/Target/usbd_conf.c
18 | arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DUSE_HAL_DRIVER -DDEBUG -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I../USB_DEVICE/App -I../USB_DEVICE/Target -I../Middlewares/ST/STM32_USB_Device_Library/Core/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Inc -I../Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc -I../LIBJPEG/App -I../LIBJPEG/Target -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Middlewares/Third_Party/LibJPEG/include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -MMD -MP -MF"USB_DEVICE/Target/usbd_conf.d" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
19 |
20 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/Target/usbd_conf.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Debug/USB_DEVICE/Target/usbd_conf.o
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/USB_DEVICE/Target/usbd_conf.su:
--------------------------------------------------------------------------------
1 | usbd_conf.c:68:6:HAL_PCD_MspInit 48 static
2 | usbd_conf.c:101:6:HAL_PCD_MspDeInit 16 static
3 | usbd_conf.c:134:6:HAL_PCD_SetupStageCallback 16 static
4 | usbd_conf.c:149:6:HAL_PCD_DataOutStageCallback 16 static
5 | usbd_conf.c:164:6:HAL_PCD_DataInStageCallback 16 static
6 | usbd_conf.c:178:6:HAL_PCD_SOFCallback 16 static
7 | usbd_conf.c:192:6:HAL_PCD_ResetCallback 24 static
8 | usbd_conf.c:225:6:HAL_PCD_SuspendCallback 16 static
9 | usbd_conf.c:250:6:HAL_PCD_ResumeCallback 16 static
10 | usbd_conf.c:268:6:HAL_PCD_ISOOUTIncompleteCallback 16 static
11 | usbd_conf.c:283:6:HAL_PCD_ISOINIncompleteCallback 16 static
12 | usbd_conf.c:297:6:HAL_PCD_ConnectCallback 16 static
13 | usbd_conf.c:311:6:HAL_PCD_DisconnectCallback 16 static
14 | usbd_conf.c:326:20:USBD_LL_Init 16 static
15 | usbd_conf.c:376:20:USBD_LL_DeInit 24 static
16 | usbd_conf.c:393:20:USBD_LL_Start 24 static
17 | usbd_conf.c:410:20:USBD_LL_Stop 24 static
18 | usbd_conf.c:430:20:USBD_LL_OpenEP 24 static
19 | usbd_conf.c:448:20:USBD_LL_CloseEP 24 static
20 | usbd_conf.c:466:20:USBD_LL_FlushEP 24 static
21 | usbd_conf.c:484:20:USBD_LL_StallEP 24 static
22 | usbd_conf.c:502:20:USBD_LL_ClearStallEP 24 static
23 | usbd_conf.c:520:9:USBD_LL_IsStallEP 24 static
24 | usbd_conf.c:540:20:USBD_LL_SetUSBAddress 24 static
25 | usbd_conf.c:560:20:USBD_LL_Transmit 32 static
26 | usbd_conf.c:580:20:USBD_LL_PrepareReceive 32 static
27 | usbd_conf.c:598:10:USBD_LL_GetRxDataSize 16 static
28 | usbd_conf.c:608:6:USBD_LL_Delay 16 static
29 | usbd_conf.c:618:20:USBD_Get_USB_Status 24 static
30 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/objects.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | USER_OBJS :=
6 |
7 | LIBS :=
8 |
9 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Debug/sources.mk:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # Automatically-generated file. Do not edit!
3 | ################################################################################
4 |
5 | ELF_SRCS :=
6 | C_UPPER_SRCS :=
7 | CXX_SRCS :=
8 | C++_SRCS :=
9 | OBJ_SRCS :=
10 | S_SRCS :=
11 | CC_SRCS :=
12 | C_SRCS :=
13 | CPP_SRCS :=
14 | S_UPPER_SRCS :=
15 | O_SRCS :=
16 | OBJDUMP_LIST :=
17 | C_UPPER_DEPS :=
18 | S_DEPS :=
19 | C_DEPS :=
20 | OBJCOPY_BIN :=
21 | CC_DEPS :=
22 | SIZE_OUTPUT :=
23 | C++_DEPS :=
24 | EXECUTABLES :=
25 | OBJS :=
26 | CXX_DEPS :=
27 | S_UPPER_DEPS :=
28 | CPP_DEPS :=
29 |
30 | # Every subdirectory with source files must be described here
31 | SUBDIRS := \
32 | Core/Src \
33 | Core/Startup \
34 | Drivers/STM32F4xx_HAL_Driver/Src \
35 | LIBJPEG/App \
36 | Middlewares/ST/STM32_USB_Device_Library/Class/DFU/Src \
37 | Middlewares/ST/STM32_USB_Device_Library/Core/Src \
38 | Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 \
39 | Middlewares/Third_Party/FreeRTOS/Source \
40 | Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F \
41 | Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang \
42 | Middlewares/Third_Party/LibJPEG/source \
43 | USB_DEVICE/App \
44 | USB_DEVICE/Target \
45 |
46 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Drivers/CMSIS/Include/cmsis_version.h:
--------------------------------------------------------------------------------
1 | /**************************************************************************//**
2 | * @file cmsis_version.h
3 | * @brief CMSIS Core(M) Version definitions
4 | * @version V5.0.2
5 | * @date 19. April 2017
6 | ******************************************************************************/
7 | /*
8 | * Copyright (c) 2009-2017 ARM Limited. All rights reserved.
9 | *
10 | * SPDX-License-Identifier: Apache-2.0
11 | *
12 | * Licensed under the Apache License, Version 2.0 (the License); you may
13 | * not use this file except in compliance with the License.
14 | * You may obtain a copy of the License at
15 | *
16 | * www.apache.org/licenses/LICENSE-2.0
17 | *
18 | * Unless required by applicable law or agreed to in writing, software
19 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT
20 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 | * See the License for the specific language governing permissions and
22 | * limitations under the License.
23 | */
24 |
25 | #if defined ( __ICCARM__ )
26 | #pragma system_include /* treat file as system include file for MISRA check */
27 | #elif defined (__clang__)
28 | #pragma clang system_header /* treat file as system include file */
29 | #endif
30 |
31 | #ifndef __CMSIS_VERSION_H
32 | #define __CMSIS_VERSION_H
33 |
34 | /* CMSIS Version definitions */
35 | #define __CM_CMSIS_VERSION_MAIN ( 5U) /*!< [31:16] CMSIS Core(M) main version */
36 | #define __CM_CMSIS_VERSION_SUB ( 1U) /*!< [15:0] CMSIS Core(M) sub version */
37 | #define __CM_CMSIS_VERSION ((__CM_CMSIS_VERSION_MAIN << 16U) | \
38 | __CM_CMSIS_VERSION_SUB ) /*!< CMSIS Core(M) version number */
39 | #endif
40 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/LIBJPEG/App/libjpeg.c:
--------------------------------------------------------------------------------
1 | /* USER CODE BEGIN Header */
2 | /**
3 | ******************************************************************************
4 | * File Name : libjpeg.c
5 | * Description : This file provides code for the configuration
6 | * of the libjpeg instances.
7 | ******************************************************************************
8 | * @attention
9 | *
10 | * © Copyright (c) 2020 STMicroelectronics.
11 | * All rights reserved.
12 | *
13 | * This software component is licensed by ST under Ultimate Liberty license
14 | * SLA0044, the "License"; You may not use this file except in compliance with
15 | * the License. You may obtain a copy of the License at:
16 | * www.st.com/SLA0044
17 | *
18 | ******************************************************************************
19 | */
20 | /* USER CODE END Header */
21 |
22 | /* Includes ------------------------------------------------------------------*/
23 | #include "libjpeg.h"
24 |
25 | /* USER CODE BEGIN 0 */
26 | /* USER CODE END 0 */
27 |
28 | /* USER CODE BEGIN 1 */
29 | /* USER CODE END 1 */
30 |
31 | /* Global variables ---------------------------------------------------------*/
32 |
33 | /* USER CODE BEGIN 2 */
34 | /* USER CODE END 2 */
35 |
36 | /* LIBJPEG init function */
37 | void MX_LIBJPEG_Init(void)
38 | {
39 | /***************************************/
40 | /**
41 | */
42 |
43 | /* USER CODE BEGIN 3 */
44 | /* USER CODE END 3 */
45 |
46 | }
47 |
48 | /* USER CODE BEGIN 4 */
49 | /* USER CODE END 4 */
50 |
51 | /**
52 | * @}
53 | */
54 |
55 | /**
56 | * @}
57 | */
58 |
59 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
60 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/LIBJPEG/App/libjpeg.h:
--------------------------------------------------------------------------------
1 | /* USER CODE BEGIN Header */
2 | /**
3 | ******************************************************************************
4 | * File Name : libjpeg.h
5 | * Description : This file provides code for the configuration
6 | * of the libjpeg instances.
7 | ******************************************************************************
8 | * @attention
9 | *
10 | * © Copyright (c) 2020 STMicroelectronics.
11 | * All rights reserved.
12 | *
13 | * This software component is licensed by ST under Ultimate Liberty license
14 | * SLA0044, the "License"; You may not use this file except in compliance with
15 | * the License. You may obtain a copy of the License at:
16 | * www.st.com/SLA0044
17 | *
18 | ******************************************************************************
19 | */
20 | /* USER CODE END Header */
21 | /* Define to prevent recursive inclusion -------------------------------------*/
22 | #ifndef __libjpeg_H
23 | #define __libjpeg_H
24 | #ifdef __cplusplus
25 | extern "C" {
26 | #endif
27 |
28 | /* Includes ------------------------------------------------------------------*/
29 | #include "jpeglib.h"
30 |
31 | /* USER CODE BEGIN 0 */
32 | /* USER CODE END 0 */
33 |
34 | /* Global variables ---------------------------------------------------------*/
35 |
36 | /* USER CODE BEGIN 1 */
37 | /* USER CODE END 1 */
38 |
39 | /* LIBJPEG init function */
40 | void MX_LIBJPEG_Init(void);
41 |
42 | /* USER CODE BEGIN 2 */
43 | /* USER CODE END 2 */
44 |
45 | #ifdef __cplusplus
46 | }
47 | #endif
48 | #endif /*__libjpeg_H */
49 |
50 | /**
51 | * @}
52 | */
53 |
54 | /**
55 | * @}
56 | */
57 |
58 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
59 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/LIBJPEG/Target/jdata_conf.h:
--------------------------------------------------------------------------------
1 | /**
2 | ******************************************************************************
3 | * File Name : jdata_conf.h
4 | * Description : This file provides header to "jdata_conf.h" module.
5 | * It implements also file based read/write functions.
6 | *
7 | ******************************************************************************
8 | *
9 | * Copyright (c) 2019 STMicroelectronics. All rights reserved.
10 | *
11 | * This software component is licensed by ST under BSD 3-Clause license,
12 | * the "License"; You may not use this file except in compliance with the
13 | * License. You may obtain a copy of the License at:
14 | * opensource.org/licenses/BSD-3-Clause
15 | *
16 | ******************************************************************************
17 | **/
18 |
19 | /* Includes ------------------------------------------------------------------*/
20 |
21 | /*Stdio is chosen for File storage*/
22 | #include
23 |
24 | /*FreeRtos Api*/
25 | #include "cmsis_os.h"
26 |
27 | /* Private typedef -----------------------------------------------------------*/
28 | /* Private define ------------------------------------------------------------*/
29 | /* Private macro -------------------------------------------------------------*/
30 | /* Private variables ---------------------------------------------------------*/
31 | /* Private function prototypes -----------------------------------------------*/
32 | /* Private functions ---------------------------------------------------------*/
33 |
34 | /*This defines the memory allocation methods.*/
35 | #define JMALLOC pvPortMalloc
36 | #define JFREE vPortFree
37 |
38 | /*This defines the File data manager type.*/
39 | #define JFILE FILE
40 |
41 | #define JFREAD(file,buf,sizeofbuf) \
42 | ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
43 |
44 | #define JFWRITE(file,buf,sizeofbuf) \
45 | ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
46 |
47 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
48 |
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Software/ARSG_MkIII/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.c
--------------------------------------------------------------------------------
/Software/ARSG_MkIII/Middlewares/Third_Party/LibJPEG/include/jversion.h:
--------------------------------------------------------------------------------
1 | /*
2 | * jversion.h
3 | *
4 | * Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding.
5 | * This file is part of the Independent JPEG Group's software.
6 | * For conditions of distribution and use, see the accompanying README file.
7 | *
8 | * This file contains software version identification.
9 | */
10 |
11 |
12 | #define JVERSION "8d 15-Jan-2012"
13 |
14 | #define JCOPYRIGHT "Copyright (C) 2012, Thomas G. Lane, Guido Vollbeding"
15 |
--------------------------------------------------------------------------------
/Spacers for Mounting Screws.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SaabFAN/ORFSG---OpenSourceRFSignalGenerator/28af2faf10033b7179cd0b4476db29ccfbb8cb79/Spacers for Mounting Screws.stl
--------------------------------------------------------------------------------