├── MAX31855 ├── Breakout board - Gerber │ └── MAX31855.rar ├── Library │ ├── MAX31855.c │ └── MAX31855.h ├── MicroPython Library │ └── max31855.py └── STM32CubeIDE Example │ ├── .cproject │ ├── .mxproject │ ├── .project │ ├── .settings │ ├── language.settings.xml │ └── stm32cubeide.project.prefs │ ├── Core │ ├── Inc │ │ ├── MAX31855.h │ │ ├── lcd.h │ │ ├── main.h │ │ ├── stm32f0xx_hal_conf.h │ │ └── stm32f0xx_it.h │ ├── Src │ │ ├── MAX31855.c │ │ ├── lcd.c │ │ ├── main.c │ │ ├── stm32f0xx_hal_msp.c │ │ ├── stm32f0xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f0xx.c │ └── Startup │ │ └── startup_stm32f030f4px.s │ ├── Debug │ ├── Core │ │ ├── Src │ │ │ ├── MAX31855.d │ │ │ ├── MAX31855.o │ │ │ ├── MAX31855.su │ │ │ ├── lcd.d │ │ │ ├── lcd.o │ │ │ ├── lcd.su │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── main.su │ │ │ ├── stm32f0xx_hal_msp.d │ │ │ ├── stm32f0xx_hal_msp.o │ │ │ ├── stm32f0xx_hal_msp.su │ │ │ ├── stm32f0xx_it.d │ │ │ ├── stm32f0xx_it.o │ │ │ ├── stm32f0xx_it.su │ │ │ ├── subdir.mk │ │ │ ├── syscalls.d │ │ │ ├── syscalls.o │ │ │ ├── syscalls.su │ │ │ ├── sysmem.d │ │ │ ├── sysmem.o │ │ │ ├── sysmem.su │ │ │ ├── system_stm32f0xx.d │ │ │ ├── system_stm32f0xx.o │ │ │ └── system_stm32f0xx.su │ │ └── Startup │ │ │ ├── startup_stm32f030f4px.d │ │ │ ├── startup_stm32f030f4px.o │ │ │ └── subdir.mk │ ├── Drivers │ │ └── STM32F0xx_HAL_Driver │ │ │ └── Src │ │ │ ├── stm32f0xx_hal.d │ │ │ ├── stm32f0xx_hal.o │ │ │ ├── stm32f0xx_hal.su │ │ │ ├── stm32f0xx_hal_cortex.d │ │ │ ├── stm32f0xx_hal_cortex.o │ │ │ ├── stm32f0xx_hal_cortex.su │ │ │ ├── stm32f0xx_hal_dma.d │ │ │ ├── stm32f0xx_hal_dma.o │ │ │ ├── stm32f0xx_hal_dma.su │ │ │ ├── stm32f0xx_hal_exti.d │ │ │ ├── stm32f0xx_hal_exti.o │ │ │ ├── stm32f0xx_hal_exti.su │ │ │ ├── stm32f0xx_hal_flash.d │ │ │ ├── stm32f0xx_hal_flash.o │ │ │ ├── stm32f0xx_hal_flash.su │ │ │ ├── stm32f0xx_hal_flash_ex.d │ │ │ ├── stm32f0xx_hal_flash_ex.o │ │ │ ├── stm32f0xx_hal_flash_ex.su │ │ │ ├── stm32f0xx_hal_gpio.d │ │ │ ├── stm32f0xx_hal_gpio.o │ │ │ ├── stm32f0xx_hal_gpio.su │ │ │ ├── stm32f0xx_hal_i2c.d │ │ │ ├── stm32f0xx_hal_i2c.o │ │ │ ├── stm32f0xx_hal_i2c.su │ │ │ ├── stm32f0xx_hal_i2c_ex.d │ │ │ ├── stm32f0xx_hal_i2c_ex.o │ │ │ ├── stm32f0xx_hal_i2c_ex.su │ │ │ ├── stm32f0xx_hal_pwr.d │ │ │ ├── stm32f0xx_hal_pwr.o │ │ │ ├── stm32f0xx_hal_pwr.su │ │ │ ├── stm32f0xx_hal_pwr_ex.d │ │ │ ├── stm32f0xx_hal_pwr_ex.o │ │ │ ├── stm32f0xx_hal_pwr_ex.su │ │ │ ├── stm32f0xx_hal_rcc.d │ │ │ ├── stm32f0xx_hal_rcc.o │ │ │ ├── stm32f0xx_hal_rcc.su │ │ │ ├── stm32f0xx_hal_rcc_ex.d │ │ │ ├── stm32f0xx_hal_rcc_ex.o │ │ │ ├── stm32f0xx_hal_rcc_ex.su │ │ │ ├── stm32f0xx_hal_spi.d │ │ │ ├── stm32f0xx_hal_spi.o │ │ │ ├── stm32f0xx_hal_spi.su │ │ │ ├── stm32f0xx_hal_spi_ex.d │ │ │ ├── stm32f0xx_hal_spi_ex.o │ │ │ ├── stm32f0xx_hal_spi_ex.su │ │ │ ├── stm32f0xx_hal_tim.d │ │ │ ├── stm32f0xx_hal_tim.o │ │ │ ├── stm32f0xx_hal_tim.su │ │ │ ├── stm32f0xx_hal_tim_ex.d │ │ │ ├── stm32f0xx_hal_tim_ex.o │ │ │ ├── stm32f0xx_hal_tim_ex.su │ │ │ └── subdir.mk │ ├── MAX31855.bin │ ├── MAX31855.elf │ ├── MAX31855.list │ ├── MAX31855.map │ ├── makefile │ ├── objects.list │ ├── objects.mk │ └── sources.mk │ ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F0xx │ │ │ │ └── Include │ │ │ │ ├── stm32f030x6.h │ │ │ │ ├── stm32f0xx.h │ │ │ │ └── system_stm32f0xx.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 │ └── STM32F0xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f0xx_hal.h │ │ ├── stm32f0xx_hal_cortex.h │ │ ├── stm32f0xx_hal_def.h │ │ ├── stm32f0xx_hal_dma.h │ │ ├── stm32f0xx_hal_dma_ex.h │ │ ├── stm32f0xx_hal_exti.h │ │ ├── stm32f0xx_hal_flash.h │ │ ├── stm32f0xx_hal_flash_ex.h │ │ ├── stm32f0xx_hal_gpio.h │ │ ├── stm32f0xx_hal_gpio_ex.h │ │ ├── stm32f0xx_hal_i2c.h │ │ ├── stm32f0xx_hal_i2c_ex.h │ │ ├── stm32f0xx_hal_pwr.h │ │ ├── stm32f0xx_hal_pwr_ex.h │ │ ├── stm32f0xx_hal_rcc.h │ │ ├── stm32f0xx_hal_rcc_ex.h │ │ ├── stm32f0xx_hal_spi.h │ │ ├── stm32f0xx_hal_spi_ex.h │ │ ├── stm32f0xx_hal_tim.h │ │ └── stm32f0xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f0xx_hal.c │ │ ├── stm32f0xx_hal_cortex.c │ │ ├── stm32f0xx_hal_dma.c │ │ ├── stm32f0xx_hal_exti.c │ │ ├── stm32f0xx_hal_flash.c │ │ ├── stm32f0xx_hal_flash_ex.c │ │ ├── stm32f0xx_hal_gpio.c │ │ ├── stm32f0xx_hal_i2c.c │ │ ├── stm32f0xx_hal_i2c_ex.c │ │ ├── stm32f0xx_hal_pwr.c │ │ ├── stm32f0xx_hal_pwr_ex.c │ │ ├── stm32f0xx_hal_rcc.c │ │ ├── stm32f0xx_hal_rcc_ex.c │ │ ├── stm32f0xx_hal_spi.c │ │ ├── stm32f0xx_hal_spi_ex.c │ │ ├── stm32f0xx_hal_tim.c │ │ └── stm32f0xx_hal_tim_ex.c │ ├── MAX31855 Debug.launch │ ├── MAX31855.ioc │ └── STM32F030F4PX_FLASH.ld ├── MAX6675 ├── Library │ ├── MAX6675.c │ └── MAX6675.h └── STM32CubeIDE Example-MAX6675 │ ├── .cproject │ ├── .mxproject │ ├── .project │ ├── .settings │ └── language.settings.xml │ ├── Core │ ├── Inc │ │ ├── MAX6675.h │ │ ├── main.h │ │ ├── stm32f0xx_hal_conf.h │ │ └── stm32f0xx_it.h │ ├── Src │ │ ├── MAX6675.c │ │ ├── main.c │ │ ├── stm32f0xx_hal_msp.c │ │ ├── stm32f0xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32f0xx.c │ └── Startup │ │ └── startup_stm32f030f4px.s │ ├── Debug │ ├── Core │ │ ├── Src │ │ │ ├── MAX6675.d │ │ │ ├── MAX6675.o │ │ │ ├── MAX6675.su │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── main.su │ │ │ ├── stm32f0xx_hal_msp.d │ │ │ ├── stm32f0xx_hal_msp.o │ │ │ ├── stm32f0xx_hal_msp.su │ │ │ ├── stm32f0xx_it.d │ │ │ ├── stm32f0xx_it.o │ │ │ ├── stm32f0xx_it.su │ │ │ ├── subdir.mk │ │ │ ├── syscalls.d │ │ │ ├── syscalls.o │ │ │ ├── syscalls.su │ │ │ ├── sysmem.d │ │ │ ├── sysmem.o │ │ │ ├── sysmem.su │ │ │ ├── system_stm32f0xx.d │ │ │ ├── system_stm32f0xx.o │ │ │ └── system_stm32f0xx.su │ │ └── Startup │ │ │ ├── startup_stm32f030f4px.o │ │ │ └── subdir.mk │ ├── Drivers │ │ └── STM32F0xx_HAL_Driver │ │ │ └── Src │ │ │ ├── stm32f0xx_hal.d │ │ │ ├── stm32f0xx_hal.o │ │ │ ├── stm32f0xx_hal.su │ │ │ ├── stm32f0xx_hal_cortex.d │ │ │ ├── stm32f0xx_hal_cortex.o │ │ │ ├── stm32f0xx_hal_cortex.su │ │ │ ├── stm32f0xx_hal_dma.d │ │ │ ├── stm32f0xx_hal_dma.o │ │ │ ├── stm32f0xx_hal_dma.su │ │ │ ├── stm32f0xx_hal_exti.d │ │ │ ├── stm32f0xx_hal_exti.o │ │ │ ├── stm32f0xx_hal_exti.su │ │ │ ├── stm32f0xx_hal_flash.d │ │ │ ├── stm32f0xx_hal_flash.o │ │ │ ├── stm32f0xx_hal_flash.su │ │ │ ├── stm32f0xx_hal_flash_ex.d │ │ │ ├── stm32f0xx_hal_flash_ex.o │ │ │ ├── stm32f0xx_hal_flash_ex.su │ │ │ ├── stm32f0xx_hal_gpio.d │ │ │ ├── stm32f0xx_hal_gpio.o │ │ │ ├── stm32f0xx_hal_gpio.su │ │ │ ├── stm32f0xx_hal_i2c.d │ │ │ ├── stm32f0xx_hal_i2c.o │ │ │ ├── stm32f0xx_hal_i2c.su │ │ │ ├── stm32f0xx_hal_i2c_ex.d │ │ │ ├── stm32f0xx_hal_i2c_ex.o │ │ │ ├── stm32f0xx_hal_i2c_ex.su │ │ │ ├── stm32f0xx_hal_pwr.d │ │ │ ├── stm32f0xx_hal_pwr.o │ │ │ ├── stm32f0xx_hal_pwr.su │ │ │ ├── stm32f0xx_hal_pwr_ex.d │ │ │ ├── stm32f0xx_hal_pwr_ex.o │ │ │ ├── stm32f0xx_hal_pwr_ex.su │ │ │ ├── stm32f0xx_hal_rcc.d │ │ │ ├── stm32f0xx_hal_rcc.o │ │ │ ├── stm32f0xx_hal_rcc.su │ │ │ ├── stm32f0xx_hal_rcc_ex.d │ │ │ ├── stm32f0xx_hal_rcc_ex.o │ │ │ ├── stm32f0xx_hal_rcc_ex.su │ │ │ ├── stm32f0xx_hal_spi.d │ │ │ ├── stm32f0xx_hal_spi.o │ │ │ ├── stm32f0xx_hal_spi.su │ │ │ ├── stm32f0xx_hal_spi_ex.d │ │ │ ├── stm32f0xx_hal_spi_ex.o │ │ │ ├── stm32f0xx_hal_spi_ex.su │ │ │ ├── stm32f0xx_hal_tim.d │ │ │ ├── stm32f0xx_hal_tim.o │ │ │ ├── stm32f0xx_hal_tim.su │ │ │ ├── stm32f0xx_hal_tim_ex.d │ │ │ ├── stm32f0xx_hal_tim_ex.o │ │ │ ├── stm32f0xx_hal_tim_ex.su │ │ │ └── subdir.mk │ ├── MAX6675.bin │ ├── MAX6675.elf │ ├── MAX6675.list │ ├── MAX6675.map │ ├── makefile │ ├── objects.list │ ├── objects.mk │ └── sources.mk │ ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F0xx │ │ │ │ └── Include │ │ │ │ ├── stm32f030x6.h │ │ │ │ ├── stm32f0xx.h │ │ │ │ └── system_stm32f0xx.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 │ └── STM32F0xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32f0xx_hal.h │ │ ├── stm32f0xx_hal_cortex.h │ │ ├── stm32f0xx_hal_def.h │ │ ├── stm32f0xx_hal_dma.h │ │ ├── stm32f0xx_hal_dma_ex.h │ │ ├── stm32f0xx_hal_exti.h │ │ ├── stm32f0xx_hal_flash.h │ │ ├── stm32f0xx_hal_flash_ex.h │ │ ├── stm32f0xx_hal_gpio.h │ │ ├── stm32f0xx_hal_gpio_ex.h │ │ ├── stm32f0xx_hal_i2c.h │ │ ├── stm32f0xx_hal_i2c_ex.h │ │ ├── stm32f0xx_hal_pwr.h │ │ ├── stm32f0xx_hal_pwr_ex.h │ │ ├── stm32f0xx_hal_rcc.h │ │ ├── stm32f0xx_hal_rcc_ex.h │ │ ├── stm32f0xx_hal_spi.h │ │ ├── stm32f0xx_hal_spi_ex.h │ │ ├── stm32f0xx_hal_tim.h │ │ └── stm32f0xx_hal_tim_ex.h │ │ └── Src │ │ ├── stm32f0xx_hal.c │ │ ├── stm32f0xx_hal_cortex.c │ │ ├── stm32f0xx_hal_dma.c │ │ ├── stm32f0xx_hal_exti.c │ │ ├── stm32f0xx_hal_flash.c │ │ ├── stm32f0xx_hal_flash_ex.c │ │ ├── stm32f0xx_hal_gpio.c │ │ ├── stm32f0xx_hal_i2c.c │ │ ├── stm32f0xx_hal_i2c_ex.c │ │ ├── stm32f0xx_hal_pwr.c │ │ ├── stm32f0xx_hal_pwr_ex.c │ │ ├── stm32f0xx_hal_rcc.c │ │ ├── stm32f0xx_hal_rcc_ex.c │ │ ├── stm32f0xx_hal_spi.c │ │ ├── stm32f0xx_hal_spi_ex.c │ │ ├── stm32f0xx_hal_tim.c │ │ └── stm32f0xx_hal_tim_ex.c │ ├── MAX6675 Debug.launch │ ├── MAX6675.ioc │ └── STM32F030F4PX_FLASH.ld └── README.md /MAX31855/Breakout board - Gerber/MAX31855.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/Breakout board - Gerber/MAX31855.rar -------------------------------------------------------------------------------- /MAX31855/Library/MAX31855.c: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX31855 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #include"MAX31855.h" 8 | SPI_HandleTypeDef hspi1; 9 | 10 | // ------------------- Variables ---------------- 11 | 12 | uint8_t Error=0; // Thermocouple Connection acknowledge Flag 13 | uint32_t sign=0; // Sign bit 14 | uint8_t DATARX[4]; // Raw Data from MAX6675 15 | // ------------------- Functions ---------------- 16 | float Max31855_Read_Temp(void){ 17 | int Temp=0; // Temperature Variable 18 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_RESET); // Low State for SPI Communication 19 | HAL_SPI_Receive(&hspi1,DATARX,4,1000); // DATA Transfer 20 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_SET); // High State for SPI Communication 21 | Error=DATARX[3]&0x07; // Error Detection 22 | sign=(DATARX[0]&(0x80))>>7; // Sign Bit calculation 23 | 24 | if(DATARX[3] & 0x07) // Returns Error Number 25 | return(-1*(DATARX[3] & 0x07)); 26 | 27 | else if(sign==1){ // Negative Temperature 28 | Temp = (DATARX[0] << 6) | (DATARX[1] >> 2); 29 | Temp&=0b01111111111111; 30 | Temp^=0b01111111111111; 31 | return((double)-Temp/4); 32 | } 33 | 34 | else // Positive Temperature 35 | { 36 | Temp = (DATARX[0] << 6) | (DATARX[1] >> 2); 37 | return((double)Temp / 4); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /MAX31855/Library/MAX31855.h: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX31855 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #ifndef MAX31855_H_ 8 | #define MAX31855_H_ 9 | #include "main.h" 10 | // ------------------------- Defines ------------------------- 11 | extern uint8_t Error; // Error Detection - 1-> No Connection / 2-> Short to GND / 4-> Short to VCC 12 | #define SSPORT GPIOA // GPIO Port of Chip Select(Slave Select) 13 | #define SSPIN GPIO_PIN_4 // GPIO PIN of Chip Select(Slave Select) 14 | // ------------------------- Functions ---------------------- 15 | float Max31855_Read_Temp(void); 16 | #endif 17 | -------------------------------------------------------------------------------- /MAX31855/MicroPython Library/max31855.py: -------------------------------------------------------------------------------- 1 | ###################################################################################### 2 | #Title : MAXIM Integrated MAX31855 Library for Raspberry pi Pico 3 | #Author : Bardia Alikhan Afshar 4 | #Language: Python 5 | #Hardware: Raspberry pi pico 6 | ##################################################################################### 7 | import ustruct 8 | from machine import Pin, SPI 9 | 10 | 11 | class MAX31855: 12 | def __init__(self,SPInum=0,CS=1,MISO=4,SCK=6): 13 | self.spi = SPI(SPInum, 100_000, polarity=0, phase=0,miso=Pin(MISO),sck=Pin(SCK)) 14 | self.cs = Pin(CS, Pin.OUT) #Chip Select Pin 15 | self.data = bytearray(4) 16 | 17 | def ReadTemp(self): 18 | self.cs.value(0) # ChipSelect -> Low to Start SPI 19 | self.spi.readinto(self.data) # Data Read 20 | self.cs.value(1) # ChipSelect -> High to Stop SPI 21 | error=self.data[3]&0x07 #Thermocouple Error Detection 22 | if(error): # Returns error number and Temp=0 23 | Temp=0 24 | return error, Temp 25 | sign=(self.data[0]&(0x80))>>7 # Detecting positive or negative temperature 26 | if sign==1: #Calculation for negative temperature 27 | Temp = (self.data[0] << 6) | (self.data[1] >> 2) 28 | Temp&=0b01111111111111 29 | Temp^=0b01111111111111 30 | Temp=-Temp*0.25 31 | else: #Calculation for positive temperature 32 | Temp = (self.data[0] << 6) | (self.data[1] >> 2) 33 | Temp=Temp *0.25 34 | return error, Temp 35 | 36 | 37 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MAX31855 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 | com.st.stm32cube.ide.mcu.MCUCubeIdeServicesRevAev2ProjectNature 26 | com.st.stm32cube.ide.mcu.MCUAdvancedStructureProjectNature 27 | com.st.stm32cube.ide.mcu.MCUEndUserDisabledTrustZoneProjectNature 28 | com.st.stm32cube.ide.mcu.MCUSingleCpuProjectNature 29 | com.st.stm32cube.ide.mcu.MCURootProjectNature 30 | org.eclipse.cdt.managedbuilder.core.managedBuildNature 31 | org.eclipse.cdt.managedbuilder.core.ScannerConfigNature 32 | 33 | 34 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/.settings/language.settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/.settings/stm32cubeide.project.prefs: -------------------------------------------------------------------------------- 1 | 8DF89ED150041C4CBC7CB9A9CAA90856=49107D41B9D8B3F70076AA98DDE0F17D 2 | DC22A860405A8BF2F2C095E5B6529F12=49107D41B9D8B3F70076AA98DDE0F17D 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Core/Inc/MAX31855.h: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX31855 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #ifndef MAX31855_H_ 8 | #define MAX31855_H_ 9 | #include "main.h" 10 | // ------------------------- Defines ------------------------- 11 | extern uint8_t Error; // Error Detection - 1-> No Connection / 2-> Short to GND / 4-> Short to VCC 12 | #define SSPORT GPIOA // GPIO Port of Chip Select(Slave Select) 13 | #define SSPIN GPIO_PIN_4 // GPIO PIN of Chip Select(Slave Select) 14 | // ------------------------- Functions ---------------------- 15 | float Max31855_Read_Temp(void); 16 | #endif 17 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Core/Inc/lcd.h: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : HD44780 LCD Library(4Bit) for STM32 Using HAL Libraries 3 | Author: Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #ifndef _LCD_H 8 | #define _LCD_H 9 | #include "main.h" 10 | // ---------------------- LCD Configuration & PIN Definition ------------------------- 11 | #define LCD_ROWS 4 // Number of LCD ROWS 12 | #define LCD_COLS 20 // Number of LCD Columns 13 | 14 | #define LCD_RS_PORT GPIOB //------------------------------------------------------------------------------ 15 | #define LCD_RS_PIN GPIO_PIN_1 //' ' 16 | //' --------------------------------------------------------- ' 17 | #define LCD_RW_PORT GPIOA //' ' Alphanumeric LCD ' ' 18 | #define LCD_RW_PIN GPIO_PIN_9 //' ' ' ' 19 | //' ' HD44780 Driver ' ' 20 | #define LCD_E_PORT GPIOA //' ' ' ' 21 | #define LCD_E_PIN GPIO_PIN_10 //' ---------------------------------------------------------- ' 22 | //' ' 23 | #define LCD_DATA4_PORT GPIOA //' ' 24 | #define LCD_DATA4_PIN GPIO_PIN_0 //------------------------------------------------------------------------------ 25 | //|| || || || || || || || || || || || || || || || 26 | #define LCD_DATA5_PORT GPIOA //GND VCC VEE RS RW EN D0 D1 D2 D3 D4 D5 D6 D7 B+ B- 27 | #define LCD_DATA5_PIN GPIO_PIN_1 28 | 29 | #define LCD_DATA6_PORT GPIOA 30 | #define LCD_DATA6_PIN GPIO_PIN_2 31 | 32 | #define LCD_DATA7_PORT GPIOA 33 | #define LCD_DATA7_PIN GPIO_PIN_3 34 | // ---------------------- Function Prototypes ------------------------- 35 | void lcd_Init(void); // 4Bit Mode - Display On - Cursor & Blink Off - Position 0,0 36 | void lcd_DspOn(void); // Turns Display On 37 | void lcd_DspOff(void); // Turns Display Off 38 | void lcd_CursorOn(void); // Turns Cursor On 39 | void lcd_CursorOff(void); // Turns Cursor Off 40 | void lcd_BlinkOn(void); // Cursor Blink On 41 | void lcd_BlinkOff(void); // Cursor Blink Off 42 | void lcd_gotoxy(uint8_t x,uint8_t y); // Moves Position to X,Y 43 | void lcd_clrscr(void); // Clears Screen 44 | void lcd_pos_puts(uint8_t x, uint8_t y, char* str); // Writes on Position X,Y 45 | void lcd_puts(char * str); // Write on Current X,Y 46 | void lcd_Put(uint8_t Data); // Sends Data Directly to LCD 47 | #endif 48 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Core/Inc/main.h: -------------------------------------------------------------------------------- 1 | /* USER CODE BEGIN Header */ 2 | /** 3 | ****************************************************************************** 4 | * @file : main.h 5 | * @brief : Header for main.c file. 6 | * This file contains the common defines of the application. 7 | ****************************************************************************** 8 | * @attention 9 | * 10 | *

© Copyright (c) 2021 STMicroelectronics. 11 | * All rights reserved.

12 | * 13 | * This software component is licensed by ST under BSD 3-Clause license, 14 | * the "License"; You may not use this file except in compliance with the 15 | * License. You may obtain a copy of the License at: 16 | * opensource.org/licenses/BSD-3-Clause 17 | * 18 | ****************************************************************************** 19 | */ 20 | /* USER CODE END Header */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __MAIN_H 24 | #define __MAIN_H 25 | 26 | #ifdef __cplusplus 27 | extern "C" { 28 | #endif 29 | 30 | /* Includes ------------------------------------------------------------------*/ 31 | #include "stm32f0xx_hal.h" 32 | 33 | /* Private includes ----------------------------------------------------------*/ 34 | /* USER CODE BEGIN Includes */ 35 | 36 | /* USER CODE END Includes */ 37 | 38 | /* Exported types ------------------------------------------------------------*/ 39 | /* USER CODE BEGIN ET */ 40 | 41 | /* USER CODE END ET */ 42 | 43 | /* Exported constants --------------------------------------------------------*/ 44 | /* USER CODE BEGIN EC */ 45 | 46 | /* USER CODE END EC */ 47 | 48 | /* Exported macro ------------------------------------------------------------*/ 49 | /* USER CODE BEGIN EM */ 50 | 51 | /* USER CODE END EM */ 52 | 53 | /* Exported functions prototypes ---------------------------------------------*/ 54 | void Error_Handler(void); 55 | 56 | /* USER CODE BEGIN EFP */ 57 | 58 | /* USER CODE END EFP */ 59 | 60 | /* Private defines -----------------------------------------------------------*/ 61 | /* USER CODE BEGIN Private defines */ 62 | 63 | /* USER CODE END Private defines */ 64 | 65 | #ifdef __cplusplus 66 | } 67 | #endif 68 | 69 | #endif /* __MAIN_H */ 70 | 71 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 72 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Core/Inc/stm32f0xx_it.h: -------------------------------------------------------------------------------- 1 | /* USER CODE BEGIN Header */ 2 | /** 3 | ****************************************************************************** 4 | * @file stm32f0xx_it.h 5 | * @brief This file contains the headers of the interrupt handlers. 6 | ****************************************************************************** 7 | * @attention 8 | * 9 | *

© Copyright (c) 2021 STMicroelectronics. 10 | * All rights reserved.

11 | * 12 | * This software component is licensed by ST under BSD 3-Clause license, 13 | * the "License"; You may not use this file except in compliance with the 14 | * License. You may obtain a copy of the License at: 15 | * opensource.org/licenses/BSD-3-Clause 16 | * 17 | ****************************************************************************** 18 | */ 19 | /* USER CODE END Header */ 20 | 21 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F0xx_IT_H 23 | #define __STM32F0xx_IT_H 24 | 25 | #ifdef __cplusplus 26 | extern "C" { 27 | #endif 28 | 29 | /* Private includes ----------------------------------------------------------*/ 30 | /* USER CODE BEGIN Includes */ 31 | 32 | /* USER CODE END Includes */ 33 | 34 | /* Exported types ------------------------------------------------------------*/ 35 | /* USER CODE BEGIN ET */ 36 | 37 | /* USER CODE END ET */ 38 | 39 | /* Exported constants --------------------------------------------------------*/ 40 | /* USER CODE BEGIN EC */ 41 | 42 | /* USER CODE END EC */ 43 | 44 | /* Exported macro ------------------------------------------------------------*/ 45 | /* USER CODE BEGIN EM */ 46 | 47 | /* USER CODE END EM */ 48 | 49 | /* Exported functions prototypes ---------------------------------------------*/ 50 | void NMI_Handler(void); 51 | void HardFault_Handler(void); 52 | void SVC_Handler(void); 53 | void PendSV_Handler(void); 54 | void SysTick_Handler(void); 55 | /* USER CODE BEGIN EFP */ 56 | 57 | /* USER CODE END EFP */ 58 | 59 | #ifdef __cplusplus 60 | } 61 | #endif 62 | 63 | #endif /* __STM32F0xx_IT_H */ 64 | 65 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 66 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Core/Src/MAX31855.c: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX31855 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #include"MAX31855.h" 8 | SPI_HandleTypeDef hspi1; 9 | 10 | // ------------------- Variables ---------------- 11 | 12 | uint8_t Error=0; // Thermocouple Connection acknowledge Flag 13 | uint32_t sign=0; // Sign bit 14 | uint8_t DATARX[4]; // Raw Data from MAX6675 15 | // ------------------- Functions ---------------- 16 | float Max31855_Read_Temp(void){ 17 | int Temp=0; // Temperature Variable 18 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_RESET); // Low State for SPI Communication 19 | HAL_SPI_Receive(&hspi1,DATARX,4,1000); // DATA Transfer 20 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_SET); // High State for SPI Communication 21 | Error=DATARX[3]&0x07; // Error Detection 22 | sign=(DATARX[0]&(0x80))>>7; // Sign Bit calculation 23 | 24 | if(DATARX[3] & 0x07) // Returns Error Number 25 | return(-1*(DATARX[3] & 0x07)); 26 | 27 | else if(sign==1){ // Negative Temperature 28 | Temp = (DATARX[0] << 6) | (DATARX[1] >> 2); 29 | Temp&=0b01111111111111; 30 | Temp^=0b01111111111111; 31 | return((double)-Temp/4); 32 | } 33 | 34 | else // Positive Temperature 35 | { 36 | Temp = (DATARX[0] << 6) | (DATARX[1] >> 2); 37 | return((double)Temp / 4); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Core/Src/sysmem.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file sysmem.c 4 | * @author Generated by STM32CubeIDE 5 | * @brief STM32CubeIDE System Memory calls file 6 | * 7 | * For more information about which C functions 8 | * need which of these lowlevel functions 9 | * please consult the newlib libc manual 10 | ****************************************************************************** 11 | * @attention 12 | * 13 | *

© Copyright (c) 2020 STMicroelectronics. 14 | * All rights reserved.

15 | * 16 | * This software component is licensed by ST under BSD 3-Clause license, 17 | * the "License"; You may not use this file except in compliance with the 18 | * License. You may obtain a copy of the License at: 19 | * opensource.org/licenses/BSD-3-Clause 20 | * 21 | ****************************************************************************** 22 | */ 23 | 24 | /* Includes */ 25 | #include 26 | #include 27 | 28 | /** 29 | * Pointer to the current high watermark of the heap usage 30 | */ 31 | static uint8_t *__sbrk_heap_end = NULL; 32 | 33 | /** 34 | * @brief _sbrk() allocates memory to the newlib heap and is used by malloc 35 | * and others from the C library 36 | * 37 | * @verbatim 38 | * ############################################################################ 39 | * # .data # .bss # newlib heap # MSP stack # 40 | * # # # # Reserved by _Min_Stack_Size # 41 | * ############################################################################ 42 | * ^-- RAM start ^-- _end _estack, RAM end --^ 43 | * @endverbatim 44 | * 45 | * This implementation starts allocating at the '_end' linker symbol 46 | * The '_Min_Stack_Size' linker symbol reserves a memory for the MSP stack 47 | * The implementation considers '_estack' linker symbol to be RAM end 48 | * NOTE: If the MSP stack, at any point during execution, grows larger than the 49 | * reserved size, please increase the '_Min_Stack_Size'. 50 | * 51 | * @param incr Memory size 52 | * @return Pointer to allocated memory 53 | */ 54 | void *_sbrk(ptrdiff_t incr) 55 | { 56 | extern uint8_t _end; /* Symbol defined in the linker script */ 57 | extern uint8_t _estack; /* Symbol defined in the linker script */ 58 | extern uint32_t _Min_Stack_Size; /* Symbol defined in the linker script */ 59 | const uint32_t stack_limit = (uint32_t)&_estack - (uint32_t)&_Min_Stack_Size; 60 | const uint8_t *max_heap = (uint8_t *)stack_limit; 61 | uint8_t *prev_heap_end; 62 | 63 | /* Initialize heap end at first call */ 64 | if (NULL == __sbrk_heap_end) 65 | { 66 | __sbrk_heap_end = &_end; 67 | } 68 | 69 | /* Protect heap from growing into the reserved MSP stack */ 70 | if (__sbrk_heap_end + incr > max_heap) 71 | { 72 | errno = ENOMEM; 73 | return (void *)-1; 74 | } 75 | 76 | prev_heap_end = __sbrk_heap_end; 77 | __sbrk_heap_end += incr; 78 | 79 | return (void *)prev_heap_end; 80 | } 81 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/MAX31855.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/MAX31855.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/MAX31855.su: -------------------------------------------------------------------------------- 1 | MAX31855.c:16:7:Max31855_Read_Temp 24 static 2 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/lcd.d: -------------------------------------------------------------------------------- 1 | Core/Src/lcd.o: ../Core/Src/lcd.c ../Core/Inc/LCD.h ../Core/Inc/main.h \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 3 | ../Core/Inc/stm32f0xx_hal_conf.h \ 4 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 6 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 8 | ../Drivers/CMSIS/Include/core_cm0.h \ 9 | ../Drivers/CMSIS/Include/cmsis_version.h \ 10 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 11 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 12 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Core/Inc/LCD.h: 31 | 32 | ../Core/Inc/main.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 35 | 36 | ../Core/Inc/stm32f0xx_hal_conf.h: 37 | 38 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 39 | 40 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 41 | 42 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 43 | 44 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 45 | 46 | ../Drivers/CMSIS/Include/core_cm0.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_version.h: 49 | 50 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 51 | 52 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 53 | 54 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 81 | 82 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 83 | 84 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 85 | 86 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 87 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/lcd.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/lcd.su: -------------------------------------------------------------------------------- 1 | lcd.c:15:6:Delay_us 24 static,ignoring_inline_asm 2 | lcd.c:39:6:lcd_Init 16 static 3 | lcd.c:61:6:lcd_clrscr 8 static 4 | lcd.c:67:6:lcd_puts 16 static 5 | lcd.c:94:6:lcd_pos_puts 16 static 6 | lcd.c:100:6:lcd_DspOn 8 static 7 | lcd.c:105:6:lcd_DspOff 8 static 8 | lcd.c:110:6:lcd_BlinkOn 8 static 9 | lcd.c:115:6:lcd_BlinkOff 8 static 10 | lcd.c:120:6:lcd_CursorOn 8 static 11 | lcd.c:125:6:lcd_CursorOff 8 static 12 | lcd.c:130:13:Command 16 static 13 | lcd.c:137:13:lcd_write_data 16 static 14 | lcd.c:144:13:Command4Bit 16 static 15 | lcd.c:153:6:lcd_gotoxy 24 static 16 | lcd.c:163:6:lcd_Put 16 static 17 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/main.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/main.su: -------------------------------------------------------------------------------- 1 | main.c:70:5:main 8 static 2 | main.c:139:6:SystemClock_Config 80 static 3 | main.c:174:13:MX_SPI1_Init 8 static 4 | main.c:214:13:MX_GPIO_Init 48 static 5 | main.c:262:6:Error_Handler 8 static,ignoring_inline_asm 6 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/stm32f0xx_hal_msp.d: -------------------------------------------------------------------------------- 1 | Core/Src/stm32f0xx_hal_msp.o: ../Core/Src/stm32f0xx_hal_msp.c \ 2 | ../Core/Inc/main.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 3 | ../Core/Inc/stm32f0xx_hal_conf.h \ 4 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 6 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 8 | ../Drivers/CMSIS/Include/core_cm0.h \ 9 | ../Drivers/CMSIS/Include/cmsis_version.h \ 10 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 11 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 12 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Core/Inc/main.h: 31 | 32 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 33 | 34 | ../Core/Inc/stm32f0xx_hal_conf.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 37 | 38 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 41 | 42 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 43 | 44 | ../Drivers/CMSIS/Include/core_cm0.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_version.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 49 | 50 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 51 | 52 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 81 | 82 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 83 | 84 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 85 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/stm32f0xx_hal_msp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/stm32f0xx_hal_msp.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/stm32f0xx_hal_msp.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_msp.c:64:6:HAL_MspInit 16 static 2 | stm32f0xx_hal_msp.c:86:6:HAL_SPI_MspInit 48 static 3 | stm32f0xx_hal_msp.c:123:6:HAL_SPI_MspDeInit 16 static 4 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/stm32f0xx_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/stm32f0xx_it.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/stm32f0xx_it.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_it.c:70:6:NMI_Handler 8 static 2 | stm32f0xx_it.c:85:6:HardFault_Handler 8 static 3 | stm32f0xx_it.c:100:6:SVC_Handler 8 static 4 | stm32f0xx_it.c:113:6:PendSV_Handler 8 static 5 | stm32f0xx_it.c:126:6:SysTick_Handler 8 static 6 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/syscalls.d: -------------------------------------------------------------------------------- 1 | Core/Src/syscalls.o: ../Core/Src/syscalls.c 2 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/syscalls.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/syscalls.su: -------------------------------------------------------------------------------- 1 | syscalls.c:48:6:initialise_monitor_handles 8 static 2 | syscalls.c:52:5:_getpid 8 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 20 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 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/sysmem.d: -------------------------------------------------------------------------------- 1 | Core/Src/sysmem.o: ../Core/Src/sysmem.c 2 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/sysmem.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:54:7:_sbrk 32 static 2 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/system_stm32f0xx.d: -------------------------------------------------------------------------------- 1 | Core/Src/system_stm32f0xx.o: ../Core/Src/system_stm32f0xx.c \ 2 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 3 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 4 | ../Drivers/CMSIS/Include/core_cm0.h \ 5 | ../Drivers/CMSIS/Include/cmsis_version.h \ 6 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 7 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 9 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 10 | ../Core/Inc/stm32f0xx_hal_conf.h \ 11 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 12 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 31 | 32 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 33 | 34 | ../Drivers/CMSIS/Include/core_cm0.h: 35 | 36 | ../Drivers/CMSIS/Include/cmsis_version.h: 37 | 38 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 39 | 40 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 41 | 42 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 43 | 44 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 45 | 46 | ../Core/Inc/stm32f0xx_hal_conf.h: 47 | 48 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 49 | 50 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 81 | 82 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 83 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/system_stm32f0xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Src/system_stm32f0xx.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Src/system_stm32f0xx.su: -------------------------------------------------------------------------------- 1 | system_stm32f0xx.c:128:6:SystemInit 8 static 2 | system_stm32f0xx.c:174:6:SystemCoreClockUpdate 24 static 3 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Startup/startup_stm32f030f4px.d: -------------------------------------------------------------------------------- 1 | Core/Startup/startup_stm32f030f4px.o: \ 2 | ../Core/Startup/startup_stm32f030f4px.s 3 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Core/Startup/startup_stm32f030f4px.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Core/Startup/startup_stm32f030f4px.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/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_stm32f030f4px.s 8 | 9 | OBJS += \ 10 | ./Core/Startup/startup_stm32f030f4px.o 11 | 12 | S_DEPS += \ 13 | ./Core/Startup/startup_stm32f030f4px.d 14 | 15 | 16 | # Each subdirectory must supply rules for building sources it contributes 17 | Core/Startup/startup_stm32f030f4px.o: ../Core/Startup/startup_stm32f030f4px.s 18 | arm-none-eabi-gcc -mcpu=cortex-m0 -g3 -c -x assembler-with-cpp -MMD -MP -MF"Core/Startup/startup_stm32f030f4px.d" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" "$<" 19 | 20 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 29 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 30 | 31 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 32 | 33 | ../Core/Inc/stm32f0xx_hal_conf.h: 34 | 35 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 36 | 37 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 38 | 39 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 40 | 41 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 42 | 43 | ../Drivers/CMSIS/Include/core_cm0.h: 44 | 45 | ../Drivers/CMSIS/Include/cmsis_version.h: 46 | 47 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 48 | 49 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 50 | 51 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 52 | 53 | ../Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: 54 | 55 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 56 | 57 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 58 | 59 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 60 | 61 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 62 | 63 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 64 | 65 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 66 | 67 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 68 | 69 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 70 | 71 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 72 | 73 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 74 | 75 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 76 | 77 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 78 | 79 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 80 | 81 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 82 | 83 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 84 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal.c:141:19:HAL_Init 8 static 2 | stm32f0xx_hal.c:165:19:HAL_DeInit 8 static 3 | stm32f0xx_hal.c:188:13:HAL_MspInit 8 static 4 | stm32f0xx_hal.c:199:13:HAL_MspDeInit 8 static 5 | stm32f0xx_hal.c:222:26:HAL_InitTick 24 static 6 | stm32f0xx_hal.c:281:13:HAL_IncTick 8 static 7 | stm32f0xx_hal.c:292:17:HAL_GetTick 8 static 8 | stm32f0xx_hal.c:301:10:HAL_GetTickPrio 8 static 9 | stm32f0xx_hal.c:310:19:HAL_SetTickFreq 32 static 10 | stm32f0xx_hal.c:342:21:HAL_GetTickFreq 8 static 11 | stm32f0xx_hal.c:358:13:HAL_Delay 24 static 12 | stm32f0xx_hal.c:384:13:HAL_SuspendTick 8 static 13 | stm32f0xx_hal.c:401:13:HAL_ResumeTick 8 static 14 | stm32f0xx_hal.c:411:10:HAL_GetHalVersion 8 static 15 | stm32f0xx_hal.c:420:10:HAL_GetREVID 8 static 16 | stm32f0xx_hal.c:429:10:HAL_GetDEVID 8 static 17 | stm32f0xx_hal.c:438:10:HAL_GetUIDw0 8 static 18 | stm32f0xx_hal.c:447:10:HAL_GetUIDw1 8 static 19 | stm32f0xx_hal.c:456:10:HAL_GetUIDw2 8 static 20 | stm32f0xx_hal.c:465:6:HAL_DBGMCU_EnableDBGStopMode 8 static 21 | stm32f0xx_hal.c:474:6:HAL_DBGMCU_DisableDBGStopMode 8 static 22 | stm32f0xx_hal.c:483:6:HAL_DBGMCU_EnableDBGStandbyMode 8 static 23 | stm32f0xx_hal.c:492:6:HAL_DBGMCU_DisableDBGStandbyMode 8 static 24 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.su: -------------------------------------------------------------------------------- 1 | core_cm0.h:623:22:__NVIC_EnableIRQ 16 static 2 | core_cm0.h:659:22:__NVIC_DisableIRQ 16 static,ignoring_inline_asm 3 | core_cm0.h:678:26:__NVIC_GetPendingIRQ 16 static 4 | core_cm0.h:697:22:__NVIC_SetPendingIRQ 16 static 5 | core_cm0.h:712:22:__NVIC_ClearPendingIRQ 16 static 6 | core_cm0.h:730:22:__NVIC_SetPriority 24 static 7 | core_cm0.h:754:26:__NVIC_GetPriority 16 static 8 | core_cm0.h:856:34:__NVIC_SystemReset 8 static,ignoring_inline_asm 9 | core_cm0.h:920:26:SysTick_Config 16 static 10 | stm32f0xx_hal_cortex.c:136:6:HAL_NVIC_SetPriority 24 static 11 | stm32f0xx_hal_cortex.c:152:6:HAL_NVIC_EnableIRQ 16 static 12 | stm32f0xx_hal_cortex.c:168:6:HAL_NVIC_DisableIRQ 16 static 13 | stm32f0xx_hal_cortex.c:181:6:HAL_NVIC_SystemReset 8 static 14 | stm32f0xx_hal_cortex.c:194:10:HAL_SYSTICK_Config 16 static 15 | stm32f0xx_hal_cortex.c:226:10:HAL_NVIC_GetPriority 16 static 16 | stm32f0xx_hal_cortex.c:239:6:HAL_NVIC_SetPendingIRQ 16 static 17 | stm32f0xx_hal_cortex.c:257:10:HAL_NVIC_GetPendingIRQ 16 static 18 | stm32f0xx_hal_cortex.c:273:6:HAL_NVIC_ClearPendingIRQ 16 static 19 | stm32f0xx_hal_cortex.c:290:6:HAL_SYSTICK_CLKSourceConfig 16 static 20 | stm32f0xx_hal_cortex.c:308:6:HAL_SYSTICK_IRQHandler 8 static 21 | stm32f0xx_hal_cortex.c:317:13:HAL_SYSTICK_Callback 8 static 22 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_dma.c:138:19:HAL_DMA_Init 24 static 2 | stm32f0xx_hal_dma.c:200:19:HAL_DMA_DeInit 16 static 3 | stm32f0xx_hal_dma.c:282:19:HAL_DMA_Start 32 static 4 | stm32f0xx_hal_dma.c:329:19:HAL_DMA_Start_IT 32 static 5 | stm32f0xx_hal_dma.c:385:19:HAL_DMA_Abort 16 static 6 | stm32f0xx_hal_dma.c:423:19:HAL_DMA_Abort_IT 24 static 7 | stm32f0xx_hal_dma.c:469:19:HAL_DMA_PollForTransfer 32 static 8 | stm32f0xx_hal_dma.c:570:6:HAL_DMA_IRQHandler 24 static 9 | stm32f0xx_hal_dma.c:662:19:HAL_DMA_RegisterCallback 32 static 10 | stm32f0xx_hal_dma.c:713:19:HAL_DMA_UnRegisterCallback 24 static 11 | stm32f0xx_hal_dma.c:789:22:HAL_DMA_GetState 16 static 12 | stm32f0xx_hal_dma.c:800:10:HAL_DMA_GetError 16 static 13 | stm32f0xx_hal_dma.c:826:13:DMA_SetConfig 24 static 14 | stm32f0xx_hal_dma.c:860:13:DMA_CalcBaseAndBitshift 16 static 15 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_exti.c:143:19:HAL_EXTI_SetConfigLine 32 static 2 | stm32f0xx_hal_exti.c:238:19:HAL_EXTI_GetConfigLine 32 static 3 | stm32f0xx_hal_exti.c:327:19:HAL_EXTI_ClearConfigLine 32 static 4 | stm32f0xx_hal_exti.c:380:19:HAL_EXTI_RegisterCallback 32 static 5 | stm32f0xx_hal_exti.c:405:19:HAL_EXTI_GetHandle 16 static 6 | stm32f0xx_hal_exti.c:445:6:HAL_EXTI_IRQHandler 24 static 7 | stm32f0xx_hal_exti.c:477:10:HAL_EXTI_GetPending 32 static 8 | stm32f0xx_hal_exti.c:506:6:HAL_EXTI_ClearPending 24 static 9 | stm32f0xx_hal_exti.c:527:6:HAL_EXTI_GenerateSWI 24 static 10 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_flash.c:167:19:HAL_FLASH_Program 48 static 2 | stm32f0xx_hal_flash.c:239:19:HAL_FLASH_Program_IT 40 static 3 | stm32f0xx_hal_flash.c:285:6:HAL_FLASH_IRQHandler 24 static 4 | stm32f0xx_hal_flash.c:428:13:HAL_FLASH_EndOfOperationCallback 16 static 5 | stm32f0xx_hal_flash.c:446:13:HAL_FLASH_OperationErrorCallback 16 static 6 | stm32f0xx_hal_flash.c:479:19:HAL_FLASH_Unlock 16 static 7 | stm32f0xx_hal_flash.c:503:19:HAL_FLASH_Lock 8 static 8 | stm32f0xx_hal_flash.c:515:19:HAL_FLASH_OB_Unlock 8 static 9 | stm32f0xx_hal_flash.c:535:19:HAL_FLASH_OB_Lock 8 static 10 | stm32f0xx_hal_flash.c:548:19:HAL_FLASH_OB_Launch 8 static 11 | stm32f0xx_hal_flash.c:580:10:HAL_FLASH_GetError 8 static 12 | stm32f0xx_hal_flash.c:603:13:FLASH_Program_HalfWord 16 static 13 | stm32f0xx_hal_flash.c:620:19:FLASH_WaitForLastOperation 24 static 14 | stm32f0xx_hal_flash.c:663:13:FLASH_SetErrorCode 16 static 15 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_flash_ex.c:159:19:HAL_FLASHEx_Erase 32 static 2 | stm32f0xx_hal_flash_ex.c:240:19:HAL_FLASHEx_Erase_IT 24 static 3 | stm32f0xx_hal_flash_ex.c:313:19:HAL_FLASHEx_OBErase 24 static 4 | stm32f0xx_hal_flash_ex.c:362:19:HAL_FLASHEx_OBProgram 32 static 5 | stm32f0xx_hal_flash_ex.c:443:6:HAL_FLASHEx_OBGetConfig 16 static 6 | stm32f0xx_hal_flash_ex.c:465:10:HAL_FLASHEx_OBGetUserData 24 static 7 | stm32f0xx_hal_flash_ex.c:500:13:FLASH_MassErase 8 static 8 | stm32f0xx_hal_flash_ex.c:521:26:FLASH_OB_EnableWRP 32 static 9 | stm32f0xx_hal_flash_ex.c:637:26:FLASH_OB_DisableWRP 32 static 10 | stm32f0xx_hal_flash_ex.c:751:26:FLASH_OB_RDP_LevelConfig 32 static 11 | stm32f0xx_hal_flash_ex.c:802:26:FLASH_OB_UserConfig 32 static 12 | stm32f0xx_hal_flash_ex.c:857:26:FLASH_OB_ProgramData 32 static 13 | stm32f0xx_hal_flash_ex.c:890:17:FLASH_OB_GetWRP 8 static 14 | stm32f0xx_hal_flash_ex.c:904:17:FLASH_OB_GetRDP 16 static 15 | stm32f0xx_hal_flash_ex.c:931:16:FLASH_OB_GetUser 8 static 16 | stm32f0xx_hal_flash_ex.c:960:6:FLASH_PageErase 16 static 17 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_gpio.c:177:6:HAL_GPIO_Init 32 static 2 | stm32f0xx_hal_gpio.c:302:6:HAL_GPIO_DeInit 32 static 3 | stm32f0xx_hal_gpio.c:385:15:HAL_GPIO_ReadPin 24 static 4 | stm32f0xx_hal_gpio.c:418:6:HAL_GPIO_WritePin 16 static 5 | stm32f0xx_hal_gpio.c:440:6:HAL_GPIO_TogglePin 24 static 6 | stm32f0xx_hal_gpio.c:465:19:HAL_GPIO_LockPin 24 static 7 | stm32f0xx_hal_gpio.c:500:6:HAL_GPIO_EXTI_IRQHandler 16 static 8 | stm32f0xx_hal_gpio.c:515:13:HAL_GPIO_EXTI_Callback 16 static 9 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_i2c_ex.c:97:19:HAL_I2CEx_ConfigAnalogFilter 16 static 2 | stm32f0xx_hal_i2c_ex.c:141:19:HAL_I2CEx_ConfigDigitalFilter 24 static 3 | stm32f0xx_hal_i2c_ex.c:279:6:HAL_I2CEx_EnableFastModePlus 24 static 4 | stm32f0xx_hal_i2c_ex.c:304:6:HAL_I2CEx_DisableFastModePlus 24 static 5 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_pwr.c:75:6:HAL_PWR_DeInit 8 static 2 | stm32f0xx_hal_pwr.c:88:6:HAL_PWR_EnableBkUpAccess 8 static 3 | stm32f0xx_hal_pwr.c:100:6:HAL_PWR_DisableBkUpAccess 8 static 4 | stm32f0xx_hal_pwr.c:231:6:HAL_PWR_EnableWakeUpPin 16 static 5 | stm32f0xx_hal_pwr.c:246:6:HAL_PWR_DisableWakeUpPin 16 static 6 | stm32f0xx_hal_pwr.c:269:6:HAL_PWR_EnterSLEEPMode 16 static,ignoring_inline_asm 7 | stm32f0xx_hal_pwr.c:312:6:HAL_PWR_EnterSTOPMode 24 static,ignoring_inline_asm 8 | stm32f0xx_hal_pwr.c:367:6:HAL_PWR_EnterSTANDBYMode 8 static,ignoring_inline_asm 9 | stm32f0xx_hal_pwr.c:391:6:HAL_PWR_EnableSleepOnExit 8 static 10 | stm32f0xx_hal_pwr.c:404:6:HAL_PWR_DisableSleepOnExit 8 static 11 | stm32f0xx_hal_pwr.c:418:6:HAL_PWR_EnableSEVOnPend 8 static 12 | stm32f0xx_hal_pwr.c:431:6:HAL_PWR_DisableSEVOnPend 8 static 13 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.su -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_rcc.c:210:19:HAL_RCC_DeInit 16 static 2 | stm32f0xx_hal_rcc.c:300:19:HAL_RCC_OscConfig 40 static 3 | stm32f0xx_hal_rcc.c:779:19:HAL_RCC_ClockConfig 24 static 4 | stm32f0xx_hal_rcc.c:1018:6:HAL_RCC_MCOConfig 48 static 5 | stm32f0xx_hal_rcc.c:1052:6:HAL_RCC_EnableCSS 8 static 6 | stm32f0xx_hal_rcc.c:1061:6:HAL_RCC_DisableCSS 8 static 7 | stm32f0xx_hal_rcc.c:1097:10:HAL_RCC_GetSysClockFreq 72 static 8 | stm32f0xx_hal_rcc.c:1172:10:HAL_RCC_GetHCLKFreq 8 static 9 | stm32f0xx_hal_rcc.c:1183:10:HAL_RCC_GetPCLK1Freq 8 static 10 | stm32f0xx_hal_rcc.c:1196:6:HAL_RCC_GetOscConfig 16 static 11 | stm32f0xx_hal_rcc.c:1298:6:HAL_RCC_GetClockConfig 16 static 12 | stm32f0xx_hal_rcc.c:1324:6:HAL_RCC_NMI_IRQHandler 8 static 13 | stm32f0xx_hal_rcc.c:1341:13:HAL_RCC_CSSCallback 8 static 14 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_rcc_ex.c:104:19:HAL_RCCEx_PeriphCLKConfig 32 static 2 | stm32f0xx_hal_rcc_ex.c:270:6:HAL_RCCEx_GetPeriphCLKConfig 16 static 3 | stm32f0xx_hal_rcc_ex.c:370:10:HAL_RCCEx_GetPeriphCLKFreq 24 static 4 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_spi.c:316:19:HAL_SPI_Init 24 static 2 | stm32f0xx_hal_spi.c:491:19:HAL_SPI_DeInit 16 static 3 | stm32f0xx_hal_spi.c:535:13:HAL_SPI_MspInit 16 static 4 | stm32f0xx_hal_spi.c:551:13:HAL_SPI_MspDeInit 16 static 5 | stm32f0xx_hal_spi.c:823:19:HAL_SPI_Transmit 40 static 6 | stm32f0xx_hal_spi.c:988:19:HAL_SPI_Receive 48 static 7 | stm32f0xx_hal_spi.c:1215:19:HAL_SPI_TransmitReceive 48 static 8 | stm32f0xx_hal_spi.c:1479:19:HAL_SPI_Transmit_IT 32 static 9 | stm32f0xx_hal_spi.c:1564:19:HAL_SPI_Receive_IT 32 static 10 | stm32f0xx_hal_spi.c:1671:19:HAL_SPI_TransmitReceive_IT 32 static 11 | stm32f0xx_hal_spi.c:1780:19:HAL_SPI_Transmit_DMA 32 static 12 | stm32f0xx_hal_spi.c:1905:19:HAL_SPI_Receive_DMA 40 static 13 | stm32f0xx_hal_spi.c:2059:19:HAL_SPI_TransmitReceive_DMA 40 static 14 | stm32f0xx_hal_spi.c:2261:19:HAL_SPI_Abort 48 static 15 | stm32f0xx_hal_spi.c:2421:19:HAL_SPI_Abort_IT 40 static 16 | stm32f0xx_hal_spi.c:2582:19:HAL_SPI_DMAPause 16 static 17 | stm32f0xx_hal_spi.c:2602:19:HAL_SPI_DMAResume 16 static 18 | stm32f0xx_hal_spi.c:2622:19:HAL_SPI_DMAStop 24 static 19 | stm32f0xx_hal_spi.c:2662:6:HAL_SPI_IRQHandler 40 static 20 | stm32f0xx_hal_spi.c:2769:13:HAL_SPI_TxCpltCallback 16 static 21 | stm32f0xx_hal_spi.c:2785:13:HAL_SPI_RxCpltCallback 16 static 22 | stm32f0xx_hal_spi.c:2801:13:HAL_SPI_TxRxCpltCallback 16 static 23 | stm32f0xx_hal_spi.c:2817:13:HAL_SPI_TxHalfCpltCallback 16 static 24 | stm32f0xx_hal_spi.c:2833:13:HAL_SPI_RxHalfCpltCallback 16 static 25 | stm32f0xx_hal_spi.c:2849:13:HAL_SPI_TxRxHalfCpltCallback 16 static 26 | stm32f0xx_hal_spi.c:2865:13:HAL_SPI_ErrorCallback 16 static 27 | stm32f0xx_hal_spi.c:2883:13:HAL_SPI_AbortCpltCallback 16 static 28 | stm32f0xx_hal_spi.c:2918:22:HAL_SPI_GetState 16 static 29 | stm32f0xx_hal_spi.c:2930:10:HAL_SPI_GetError 16 static 30 | stm32f0xx_hal_spi.c:2955:13:SPI_DMATransmitCplt 32 static 31 | stm32f0xx_hal_spi.c:3012:13:SPI_DMAReceiveCplt 24 static 32 | stm32f0xx_hal_spi.c:3116:13:SPI_DMATransmitReceiveCplt 24 static 33 | stm32f0xx_hal_spi.c:3205:13:SPI_DMAHalfTransmitCplt 24 static 34 | stm32f0xx_hal_spi.c:3223:13:SPI_DMAHalfReceiveCplt 24 static 35 | stm32f0xx_hal_spi.c:3241:13:SPI_DMAHalfTransmitReceiveCplt 24 static 36 | stm32f0xx_hal_spi.c:3259:13:SPI_DMAError 24 static 37 | stm32f0xx_hal_spi.c:3282:13:SPI_DMAAbortOnError 24 static 38 | stm32f0xx_hal_spi.c:3304:13:SPI_DMATxAbortCallback 40 static 39 | stm32f0xx_hal_spi.c:3370:13:SPI_DMARxAbortCallback 40 static 40 | stm32f0xx_hal_spi.c:3435:13:SPI_2linesRxISR_8BIT 16 static 41 | stm32f0xx_hal_spi.c:3513:13:SPI_2linesTxISR_8BIT 16 static 42 | stm32f0xx_hal_spi.c:3560:13:SPI_2linesRxISR_16BIT 16 static 43 | stm32f0xx_hal_spi.c:3612:13:SPI_2linesTxISR_16BIT 16 static 44 | stm32f0xx_hal_spi.c:3670:13:SPI_RxISR_8BIT 16 static 45 | stm32f0xx_hal_spi.c:3722:13:SPI_RxISR_16BIT 16 static 46 | stm32f0xx_hal_spi.c:3755:13:SPI_TxISR_8BIT 16 static 47 | stm32f0xx_hal_spi.c:3780:13:SPI_TxISR_16BIT 16 static 48 | stm32f0xx_hal_spi.c:3810:26:SPI_WaitFlagStateUntilTimeout 40 static 49 | stm32f0xx_hal_spi.c:3879:26:SPI_WaitFifoStateUntilTimeout 40 static 50 | stm32f0xx_hal_spi.c:3952:26:SPI_EndRxTransaction 32 static 51 | stm32f0xx_hal_spi.c:3988:26:SPI_EndRxTxTransaction 32 static 52 | stm32f0xx_hal_spi.c:4020:13:SPI_CloseRxTx_ISR 24 static 53 | stm32f0xx_hal_spi.c:4097:13:SPI_CloseRx_ISR 16 static 54 | stm32f0xx_hal_spi.c:4154:13:SPI_CloseTx_ISR 24 static 55 | stm32f0xx_hal_spi.c:4203:13:SPI_AbortRx_ISR 32 static 56 | stm32f0xx_hal_spi.c:4247:13:SPI_AbortTx_ISR 32 static 57 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_spi_ex.c:80:19:HAL_SPIEx_FlushRxFifo 24 static 2 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.su -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.o -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.su -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/MAX31855.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/MAX31855.bin -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/MAX31855.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Debug/MAX31855.elf -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/makefile: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | -include ../makefile.init 6 | 7 | RM := rm -rf 8 | 9 | # All of the sources participating in the build are defined here 10 | -include sources.mk 11 | -include Drivers/STM32F0xx_HAL_Driver/Src/subdir.mk 12 | -include Core/Startup/subdir.mk 13 | -include Core/Src/subdir.mk 14 | -include subdir.mk 15 | -include objects.mk 16 | 17 | ifneq ($(MAKECMDGOALS),clean) 18 | ifneq ($(strip $(S_DEPS)),) 19 | -include $(S_DEPS) 20 | endif 21 | ifneq ($(strip $(S_UPPER_DEPS)),) 22 | -include $(S_UPPER_DEPS) 23 | endif 24 | ifneq ($(strip $(C_DEPS)),) 25 | -include $(C_DEPS) 26 | endif 27 | endif 28 | 29 | -include ../makefile.defs 30 | 31 | BUILD_ARTIFACT_NAME := MAX31855 32 | BUILD_ARTIFACT_EXTENSION := elf 33 | BUILD_ARTIFACT_PREFIX := 34 | BUILD_ARTIFACT := $(BUILD_ARTIFACT_PREFIX)$(BUILD_ARTIFACT_NAME).$(BUILD_ARTIFACT_EXTENSION) 35 | 36 | # Add inputs and outputs from these tool invocations to the build variables 37 | EXECUTABLES += \ 38 | MAX31855.elf \ 39 | 40 | SIZE_OUTPUT += \ 41 | default.size.stdout \ 42 | 43 | OBJDUMP_LIST += \ 44 | MAX31855.list \ 45 | 46 | OBJCOPY_BIN += \ 47 | MAX31855.bin \ 48 | 49 | 50 | # All Target 51 | all: main-build 52 | 53 | # Main-build Target 54 | main-build: MAX31855.elf secondary-outputs 55 | 56 | # Tool invocations 57 | MAX31855.elf: $(OBJS) $(USER_OBJS) C:\Users\BaRdIa\Desktop\MAX31855\Code\STM32F030F4PX_FLASH.ld 58 | arm-none-eabi-gcc -o "MAX31855.elf" @"objects.list" $(USER_OBJS) $(LIBS) -mcpu=cortex-m0 -T"C:\Users\BaRdIa\Desktop\MAX31855\Code\STM32F030F4PX_FLASH.ld" --specs=nosys.specs -Wl,-Map="MAX31855.map" -Wl,--gc-sections -static --specs=nano.specs -mfloat-abi=soft -mthumb -Wl,--start-group -lc -lm -Wl,--end-group 59 | @echo 'Finished building target: $@' 60 | @echo ' ' 61 | 62 | default.size.stdout: $(EXECUTABLES) 63 | arm-none-eabi-size $(EXECUTABLES) 64 | @echo 'Finished building: $@' 65 | @echo ' ' 66 | 67 | MAX31855.list: $(EXECUTABLES) 68 | arm-none-eabi-objdump -h -S $(EXECUTABLES) > "MAX31855.list" 69 | @echo 'Finished building: $@' 70 | @echo ' ' 71 | 72 | MAX31855.bin: $(EXECUTABLES) 73 | arm-none-eabi-objcopy -O binary $(EXECUTABLES) "MAX31855.bin" 74 | @echo 'Finished building: $@' 75 | @echo ' ' 76 | 77 | # Other Targets 78 | clean: 79 | -$(RM) * 80 | -@echo ' ' 81 | 82 | secondary-outputs: $(SIZE_OUTPUT) $(OBJDUMP_LIST) $(OBJCOPY_BIN) 83 | 84 | fail-specified-linker-script-missing: 85 | @echo 'Error: Cannot find the specified linker script. Check the linker settings in the build configuration.' 86 | @exit 2 87 | 88 | warn-no-linker-script-specified: 89 | @echo 'Warning: No linker script specified. Check the linker settings in the build configuration.' 90 | 91 | .PHONY: all clean dependents fail-specified-linker-script-missing warn-no-linker-script-specified 92 | .SECONDARY: 93 | 94 | -include ../makefile.targets 95 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/objects.list: -------------------------------------------------------------------------------- 1 | "Core/Src/MAX31855.o" 2 | "Core/Src/lcd.o" 3 | "Core/Src/main.o" 4 | "Core/Src/stm32f0xx_hal_msp.o" 5 | "Core/Src/stm32f0xx_it.o" 6 | "Core/Src/syscalls.o" 7 | "Core/Src/sysmem.o" 8 | "Core/Src/system_stm32f0xx.o" 9 | "Core/Startup/startup_stm32f030f4px.o" 10 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o" 11 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.o" 12 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.o" 13 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.o" 14 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.o" 15 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.o" 16 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.o" 17 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.o" 18 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.o" 19 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.o" 20 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.o" 21 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.o" 22 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.o" 23 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.o" 24 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.o" 25 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.o" 26 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.o" 27 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/objects.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | USER_OBJS := 6 | 7 | LIBS := 8 | 9 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Debug/sources.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | ELF_SRCS := 6 | OBJ_SRCS := 7 | S_SRCS := 8 | C_SRCS := 9 | S_UPPER_SRCS := 10 | O_SRCS := 11 | SIZE_OUTPUT := 12 | OBJDUMP_LIST := 13 | EXECUTABLES := 14 | OBJS := 15 | S_DEPS := 16 | S_UPPER_DEPS := 17 | C_DEPS := 18 | OBJCOPY_BIN := 19 | 20 | # Every subdirectory with source files must be described here 21 | SUBDIRS := \ 22 | Core/Src \ 23 | Core/Startup \ 24 | Drivers/STM32F0xx_HAL_Driver/Src \ 25 | 26 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX31855/STM32CubeIDE Example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file system_stm32f0xx.h 4 | * @author MCD Application Team 5 | * @brief CMSIS Cortex-M0 Device System Source File for STM32F0xx devices. 6 | ****************************************************************************** 7 | * @attention 8 | * 9 | *

© Copyright (c) 2016 STMicroelectronics. 10 | * All rights reserved.

11 | * 12 | * This software component is licensed by ST under BSD 3-Clause license, 13 | * the "License"; You may not use this file except in compliance with the 14 | * License. You may obtain a copy of the License at: 15 | * opensource.org/licenses/BSD-3-Clause 16 | * 17 | ****************************************************************************** 18 | */ 19 | 20 | /** @addtogroup CMSIS 21 | * @{ 22 | */ 23 | 24 | /** @addtogroup stm32f0xx_system 25 | * @{ 26 | */ 27 | 28 | /** 29 | * @brief Define to prevent recursive inclusion 30 | */ 31 | #ifndef __SYSTEM_STM32F0XX_H 32 | #define __SYSTEM_STM32F0XX_H 33 | 34 | #ifdef __cplusplus 35 | extern "C" { 36 | #endif 37 | 38 | /** @addtogroup STM32F0xx_System_Includes 39 | * @{ 40 | */ 41 | 42 | /** 43 | * @} 44 | */ 45 | 46 | 47 | /** @addtogroup STM32F0xx_System_Exported_types 48 | * @{ 49 | */ 50 | /* This variable is updated in three ways: 51 | 1) by calling CMSIS function SystemCoreClockUpdate() 52 | 3) by calling HAL API function HAL_RCC_GetHCLKFreq() 53 | 3) by calling HAL API function HAL_RCC_ClockConfig() 54 | Note: If you use this function to configure the system clock; then there 55 | is no need to call the 2 first functions listed above, since SystemCoreClock 56 | variable is updated automatically. 57 | */ 58 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ 59 | extern const uint8_t AHBPrescTable[16]; /*!< AHB prescalers table values */ 60 | extern const uint8_t APBPrescTable[8]; /*!< APB prescalers table values */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @addtogroup STM32F0xx_System_Exported_Constants 67 | * @{ 68 | */ 69 | 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @addtogroup STM32F0xx_System_Exported_Macros 75 | * @{ 76 | */ 77 | 78 | /** 79 | * @} 80 | */ 81 | 82 | /** @addtogroup STM32F0xx_System_Exported_Functions 83 | * @{ 84 | */ 85 | 86 | extern void SystemInit(void); 87 | extern void SystemCoreClockUpdate(void); 88 | /** 89 | * @} 90 | */ 91 | 92 | #ifdef __cplusplus 93 | } 94 | #endif 95 | 96 | #endif /*__SYSTEM_STM32F0XX_H */ 97 | 98 | /** 99 | * @} 100 | */ 101 | 102 | /** 103 | * @} 104 | */ 105 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 106 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/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 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * @file tz_context.h 3 | * @brief Context Management for Armv8-M TrustZone 4 | * @version V1.0.1 5 | * @date 10. January 2018 6 | ******************************************************************************/ 7 | /* 8 | * Copyright (c) 2017-2018 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 TZ_CONTEXT_H 32 | #define TZ_CONTEXT_H 33 | 34 | #include 35 | 36 | #ifndef TZ_MODULEID_T 37 | #define TZ_MODULEID_T 38 | /// \details Data type that identifies secure software modules called by a process. 39 | typedef uint32_t TZ_ModuleId_t; 40 | #endif 41 | 42 | /// \details TZ Memory ID identifies an allocated memory slot. 43 | typedef uint32_t TZ_MemoryId_t; 44 | 45 | /// Initialize secure context memory system 46 | /// \return execution status (1: success, 0: error) 47 | uint32_t TZ_InitContextSystem_S (void); 48 | 49 | /// Allocate context memory for calling secure software modules in TrustZone 50 | /// \param[in] module identifies software modules called from non-secure mode 51 | /// \return value != 0 id TrustZone memory slot identifier 52 | /// \return value 0 no memory available or internal error 53 | TZ_MemoryId_t TZ_AllocModuleContext_S (TZ_ModuleId_t module); 54 | 55 | /// Free context memory that was previously allocated with \ref TZ_AllocModuleContext_S 56 | /// \param[in] id TrustZone memory slot identifier 57 | /// \return execution status (1: success, 0: error) 58 | uint32_t TZ_FreeModuleContext_S (TZ_MemoryId_t id); 59 | 60 | /// Load secure context (called on RTOS thread context switch) 61 | /// \param[in] id TrustZone memory slot identifier 62 | /// \return execution status (1: success, 0: error) 63 | uint32_t TZ_LoadContext_S (TZ_MemoryId_t id); 64 | 65 | /// Store secure context (called on RTOS thread context switch) 66 | /// \param[in] id TrustZone memory slot identifier 67 | /// \return execution status (1: success, 0: error) 68 | uint32_t TZ_StoreContext_S (TZ_MemoryId_t id); 69 | 70 | #endif // TZ_CONTEXT_H 71 | -------------------------------------------------------------------------------- /MAX31855/STM32CubeIDE Example/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f0xx_hal_spi_ex.h 4 | * @author MCD Application Team 5 | * @brief Header file of SPI HAL Extended module. 6 | ****************************************************************************** 7 | * @attention 8 | * 9 | *

© Copyright (c) 2016 STMicroelectronics. 10 | * All rights reserved.

11 | * 12 | * This software component is licensed by ST under BSD 3-Clause license, 13 | * the "License"; You may not use this file except in compliance with the 14 | * License. You may obtain a copy of the License at: 15 | * opensource.org/licenses/BSD-3-Clause 16 | * 17 | ****************************************************************************** 18 | */ 19 | 20 | /* Define to prevent recursive inclusion -------------------------------------*/ 21 | #ifndef STM32F0xx_HAL_SPI_EX_H 22 | #define STM32F0xx_HAL_SPI_EX_H 23 | 24 | #ifdef __cplusplus 25 | extern "C" { 26 | #endif 27 | 28 | /* Includes ------------------------------------------------------------------*/ 29 | #include "stm32f0xx_hal_def.h" 30 | 31 | /** @addtogroup STM32F0xx_HAL_Driver 32 | * @{ 33 | */ 34 | 35 | /** @addtogroup SPIEx 36 | * @{ 37 | */ 38 | 39 | /* Exported types ------------------------------------------------------------*/ 40 | /* Exported constants --------------------------------------------------------*/ 41 | /* Exported macros -----------------------------------------------------------*/ 42 | /* Exported functions --------------------------------------------------------*/ 43 | /** @addtogroup SPIEx_Exported_Functions 44 | * @{ 45 | */ 46 | 47 | /* Initialization and de-initialization functions ****************************/ 48 | /* IO operation functions *****************************************************/ 49 | /** @addtogroup SPIEx_Exported_Functions_Group1 50 | * @{ 51 | */ 52 | HAL_StatusTypeDef HAL_SPIEx_FlushRxFifo(SPI_HandleTypeDef *hspi); 53 | /** 54 | * @} 55 | */ 56 | 57 | /** 58 | * @} 59 | */ 60 | 61 | /** 62 | * @} 63 | */ 64 | 65 | /** 66 | * @} 67 | */ 68 | 69 | #ifdef __cplusplus 70 | } 71 | #endif 72 | 73 | #endif /* STM32F0xx_HAL_SPI_EX_H */ 74 | 75 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 76 | -------------------------------------------------------------------------------- /MAX6675/Library/MAX6675.c: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX6675 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #include"MAX6675.h" 8 | SPI_HandleTypeDef hspi1; 9 | 10 | // ------------------- Variables ---------------- 11 | _Bool TCF=0; // Thermocouple Connection acknowledge Flag 12 | uint8_t DATARX[2]; // Raw Data from MAX6675 13 | 14 | // ------------------- Functions ---------------- 15 | float Max6675_Read_Temp(void){ 16 | float Temp=0; // Temperature Variable 17 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_RESET); // Low State for SPI Communication 18 | HAL_SPI_Receive(&hspi1,DATARX,1,50); // DATA Transfer 19 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_SET); // High State for SPI Communication 20 | TCF=(((DATARX[0]|(DATARX[1]<<8))>>2)& 0x0001); // State of Connecting 21 | Temp=((((DATARX[0]|DATARX[1]<<8)))>>3); // Temperature Data Extraction 22 | Temp*=0.25; // Data to Centigrade Conversation 23 | HAL_Delay(250); // Waits for Chip Ready(according to Datasheet, the max time for conversion is 220ms) 24 | return Temp; 25 | } 26 | -------------------------------------------------------------------------------- /MAX6675/Library/MAX6675.h: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX6675 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #ifndef INC_MAX6675_H_ 8 | #define INC_MAX6675_H_ 9 | #include "main.h" 10 | 11 | // ------------------------- Defines ------------------------- 12 | #define SSPORT GPIOB // GPIO Port of Chip Select(Slave Select) 13 | #define SSPIN GPIO_PIN_1 // GPIO PIN of Chip Select(Slave Select) 14 | // ------------------------- Functions ---------------------- 15 | float Max6675_Read_Temp(void); 16 | #endif 17 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MAX6675 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 | com.st.stm32cube.ide.mcu.MCUCubeIdeServicesRevAProjectNature 26 | com.st.stm32cube.ide.mcu.MCUAdvancedStructureProjectNature 27 | com.st.stm32cube.ide.mcu.MCUEndUserDisabledTrustZoneProjectNature 28 | com.st.stm32cube.ide.mcu.MCUSingleCpuProjectNature 29 | com.st.stm32cube.ide.mcu.MCURootProjectNature 30 | org.eclipse.cdt.managedbuilder.core.managedBuildNature 31 | org.eclipse.cdt.managedbuilder.core.ScannerConfigNature 32 | 33 | 34 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/.settings/language.settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Core/Inc/MAX6675.h: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX6675 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #ifndef INC_MAX6675_H_ 8 | #define INC_MAX6675_H_ 9 | #include "main.h" 10 | 11 | // ------------------------- Defines ------------------------- 12 | #define SSPORT GPIOB // GPIO Port of Chip Select(Slave Select) 13 | #define SSPIN GPIO_PIN_1 // GPIO PIN of Chip Select(Slave Select) 14 | // ------------------------- Functions ---------------------- 15 | float Max6675_Read_Temp(void); 16 | #endif 17 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Core/Inc/main.h: -------------------------------------------------------------------------------- 1 | /* USER CODE BEGIN Header */ 2 | /** 3 | ****************************************************************************** 4 | * @file : main.h 5 | * @brief : Header for main.c file. 6 | * This file contains the common defines of the application. 7 | ****************************************************************************** 8 | * @attention 9 | * 10 | *

© Copyright (c) 2020 STMicroelectronics. 11 | * All rights reserved.

12 | * 13 | * This software component is licensed by ST under BSD 3-Clause license, 14 | * the "License"; You may not use this file except in compliance with the 15 | * License. You may obtain a copy of the License at: 16 | * opensource.org/licenses/BSD-3-Clause 17 | * 18 | ****************************************************************************** 19 | */ 20 | /* USER CODE END Header */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __MAIN_H 24 | #define __MAIN_H 25 | 26 | #ifdef __cplusplus 27 | extern "C" { 28 | #endif 29 | 30 | /* Includes ------------------------------------------------------------------*/ 31 | #include "stm32f0xx_hal.h" 32 | 33 | /* Private includes ----------------------------------------------------------*/ 34 | /* USER CODE BEGIN Includes */ 35 | 36 | /* USER CODE END Includes */ 37 | 38 | /* Exported types ------------------------------------------------------------*/ 39 | /* USER CODE BEGIN ET */ 40 | 41 | /* USER CODE END ET */ 42 | 43 | /* Exported constants --------------------------------------------------------*/ 44 | /* USER CODE BEGIN EC */ 45 | 46 | /* USER CODE END EC */ 47 | 48 | /* Exported macro ------------------------------------------------------------*/ 49 | /* USER CODE BEGIN EM */ 50 | 51 | /* USER CODE END EM */ 52 | 53 | /* Exported functions prototypes ---------------------------------------------*/ 54 | void Error_Handler(void); 55 | 56 | /* USER CODE BEGIN EFP */ 57 | 58 | /* USER CODE END EFP */ 59 | 60 | /* Private defines -----------------------------------------------------------*/ 61 | /* USER CODE BEGIN Private defines */ 62 | 63 | /* USER CODE END Private defines */ 64 | 65 | #ifdef __cplusplus 66 | } 67 | #endif 68 | 69 | #endif /* __MAIN_H */ 70 | 71 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 72 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Core/Inc/stm32f0xx_it.h: -------------------------------------------------------------------------------- 1 | /* USER CODE BEGIN Header */ 2 | /** 3 | ****************************************************************************** 4 | * @file stm32f0xx_it.h 5 | * @brief This file contains the headers of the interrupt handlers. 6 | ****************************************************************************** 7 | * @attention 8 | * 9 | *

© Copyright (c) 2020 STMicroelectronics. 10 | * All rights reserved.

11 | * 12 | * This software component is licensed by ST under BSD 3-Clause license, 13 | * the "License"; You may not use this file except in compliance with the 14 | * License. You may obtain a copy of the License at: 15 | * opensource.org/licenses/BSD-3-Clause 16 | * 17 | ****************************************************************************** 18 | */ 19 | /* USER CODE END Header */ 20 | 21 | /* Define to prevent recursive inclusion -------------------------------------*/ 22 | #ifndef __STM32F0xx_IT_H 23 | #define __STM32F0xx_IT_H 24 | 25 | #ifdef __cplusplus 26 | extern "C" { 27 | #endif 28 | 29 | /* Private includes ----------------------------------------------------------*/ 30 | /* USER CODE BEGIN Includes */ 31 | 32 | /* USER CODE END Includes */ 33 | 34 | /* Exported types ------------------------------------------------------------*/ 35 | /* USER CODE BEGIN ET */ 36 | 37 | /* USER CODE END ET */ 38 | 39 | /* Exported constants --------------------------------------------------------*/ 40 | /* USER CODE BEGIN EC */ 41 | 42 | /* USER CODE END EC */ 43 | 44 | /* Exported macro ------------------------------------------------------------*/ 45 | /* USER CODE BEGIN EM */ 46 | 47 | /* USER CODE END EM */ 48 | 49 | /* Exported functions prototypes ---------------------------------------------*/ 50 | void NMI_Handler(void); 51 | void HardFault_Handler(void); 52 | void SVC_Handler(void); 53 | void PendSV_Handler(void); 54 | void SysTick_Handler(void); 55 | void SPI1_IRQHandler(void); 56 | /* USER CODE BEGIN EFP */ 57 | 58 | /* USER CODE END EFP */ 59 | 60 | #ifdef __cplusplus 61 | } 62 | #endif 63 | 64 | #endif /* __STM32F0xx_IT_H */ 65 | 66 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 67 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Core/Src/MAX6675.c: -------------------------------------------------------------------------------- 1 | /************************************************************************************* 2 | Title : MAXIM Integrated MAX6675 Library for STM32 Using HAL Libraries 3 | Author : Bardia Alikhan Afshar 4 | Software: STM32CubeIDE 5 | Hardware: Any STM32 device 6 | *************************************************************************************/ 7 | #include"MAX6675.h" 8 | SPI_HandleTypeDef hspi1; 9 | 10 | // ------------------- Variables ---------------- 11 | _Bool TCF=0; // Thermocouple Connection acknowledge Flag 12 | uint8_t DATARX[2]; // Raw Data from MAX6675 13 | 14 | // ------------------- Functions ---------------- 15 | float Max6675_Read_Temp(void){ 16 | float Temp=0; // Temperature Variable 17 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_RESET); // Low State for SPI Communication 18 | HAL_SPI_Receive(&hspi1,DATARX,1,50); // DATA Transfer 19 | HAL_GPIO_WritePin(SSPORT,SSPIN,GPIO_PIN_SET); // High State for SPI Communication 20 | TCF=(((DATARX[0]|(DATARX[1]<<8))>>2)& 0x0001); // State of Connecting 21 | Temp=((((DATARX[0]|DATARX[1]<<8)))>>3); // Temperature Data Extraction 22 | Temp*=0.25; // Data to Centigrade Conversation 23 | HAL_Delay(250); // Waits for Chip Ready(according to Datasheet, the max time for conversion is 220ms) 24 | return Temp; 25 | } 26 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Core/Src/sysmem.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file sysmem.c 4 | * @author Auto-generated by STM32CubeIDE 5 | * @brief STM32CubeIDE Minimal System Memory calls file 6 | * 7 | * For more information about which c-functions 8 | * need which of these lowlevel functions 9 | * please consult the Newlib libc-manual 10 | ****************************************************************************** 11 | * @attention 12 | * 13 | *

© Copyright (c) 2020 STMicroelectronics. 14 | * All rights reserved.

15 | * 16 | * This software component is licensed by ST under BSD 3-Clause license, 17 | * the "License"; You may not use this file except in compliance with the 18 | * License. You may obtain a copy of the License at: 19 | * opensource.org/licenses/BSD-3-Clause 20 | * 21 | ****************************************************************************** 22 | */ 23 | 24 | /* Includes */ 25 | #include 26 | #include 27 | 28 | /* Variables */ 29 | extern int errno; 30 | register char * stack_ptr asm("sp"); 31 | 32 | /* Functions */ 33 | 34 | /** 35 | _sbrk 36 | Increase program data space. Malloc and related functions depend on this 37 | **/ 38 | caddr_t _sbrk(int incr) 39 | { 40 | extern char end asm("end"); 41 | static char *heap_end; 42 | char *prev_heap_end; 43 | 44 | if (heap_end == 0) 45 | heap_end = &end; 46 | 47 | prev_heap_end = heap_end; 48 | if (heap_end + incr > stack_ptr) 49 | { 50 | errno = ENOMEM; 51 | return (caddr_t) -1; 52 | } 53 | 54 | heap_end += incr; 55 | 56 | return (caddr_t) prev_heap_end; 57 | } 58 | 59 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/MAX6675.d: -------------------------------------------------------------------------------- 1 | Core/Src/MAX6675.o: ../Core/Src/MAX6675.c ../Core/Inc/MAX6675.h \ 2 | ../Core/Inc/main.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 3 | ../Core/Inc/stm32f0xx_hal_conf.h \ 4 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 6 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 8 | ../Drivers/CMSIS/Include/core_cm0.h \ 9 | ../Drivers/CMSIS/Include/cmsis_version.h \ 10 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 11 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 12 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 28 | 29 | ../Core/Inc/MAX6675.h: 30 | 31 | ../Core/Inc/main.h: 32 | 33 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 34 | 35 | ../Core/Inc/stm32f0xx_hal_conf.h: 36 | 37 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 38 | 39 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 40 | 41 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 42 | 43 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 44 | 45 | ../Drivers/CMSIS/Include/core_cm0.h: 46 | 47 | ../Drivers/CMSIS/Include/cmsis_version.h: 48 | 49 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 50 | 51 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 52 | 53 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 54 | 55 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 56 | 57 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 58 | 59 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 60 | 61 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 62 | 63 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 64 | 65 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 66 | 67 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 68 | 69 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 70 | 71 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 72 | 73 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 74 | 75 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 76 | 77 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 78 | 79 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 80 | 81 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 82 | 83 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 84 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/MAX6675.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/MAX6675.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/MAX6675.su: -------------------------------------------------------------------------------- 1 | MAX6675.c:15:7:Max6675_Read_Temp 16 static 2 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/main.d: -------------------------------------------------------------------------------- 1 | Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 3 | ../Core/Inc/stm32f0xx_hal_conf.h \ 4 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 6 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 8 | ../Drivers/CMSIS/Include/core_cm0.h \ 9 | ../Drivers/CMSIS/Include/cmsis_version.h \ 10 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 11 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 12 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h \ 28 | ../Core/Inc/MAX6675.h ../Core/Inc/main.h 29 | 30 | ../Core/Inc/main.h: 31 | 32 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 33 | 34 | ../Core/Inc/stm32f0xx_hal_conf.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 37 | 38 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 41 | 42 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 43 | 44 | ../Drivers/CMSIS/Include/core_cm0.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_version.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 49 | 50 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 51 | 52 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 81 | 82 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 83 | 84 | ../Core/Inc/MAX6675.h: 85 | 86 | ../Core/Inc/main.h: 87 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/main.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/main.su: -------------------------------------------------------------------------------- 1 | main.c:19:5:main 8 static 2 | main.c:41:6:SystemClock_Config 80 static 3 | main.c:67:13:MX_SPI1_Init 8 static 4 | main.c:89:13:MX_GPIO_Init 48 static 5 | main.c:110:6:Error_Handler 8 static 6 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_hal_msp.d: -------------------------------------------------------------------------------- 1 | Core/Src/stm32f0xx_hal_msp.o: ../Core/Src/stm32f0xx_hal_msp.c \ 2 | ../Core/Inc/main.h ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 3 | ../Core/Inc/stm32f0xx_hal_conf.h \ 4 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 6 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 8 | ../Drivers/CMSIS/Include/core_cm0.h \ 9 | ../Drivers/CMSIS/Include/cmsis_version.h \ 10 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 11 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 12 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 28 | 29 | ../Core/Inc/main.h: 30 | 31 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 32 | 33 | ../Core/Inc/stm32f0xx_hal_conf.h: 34 | 35 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 36 | 37 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 38 | 39 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 40 | 41 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 42 | 43 | ../Drivers/CMSIS/Include/core_cm0.h: 44 | 45 | ../Drivers/CMSIS/Include/cmsis_version.h: 46 | 47 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 48 | 49 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 50 | 51 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 52 | 53 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 54 | 55 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 56 | 57 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 58 | 59 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 60 | 61 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 62 | 63 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 64 | 65 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 66 | 67 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 68 | 69 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 70 | 71 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 72 | 73 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 74 | 75 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 76 | 77 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 78 | 79 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 80 | 81 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 82 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_hal_msp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_hal_msp.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_hal_msp.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_msp.c:64:6:HAL_MspInit 16 static 2 | stm32f0xx_hal_msp.c:86:6:HAL_SPI_MspInit 48 static 3 | stm32f0xx_hal_msp.c:125:6:HAL_SPI_MspDeInit 16 static 4 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_it.d: -------------------------------------------------------------------------------- 1 | Core/Src/stm32f0xx_it.o: ../Core/Src/stm32f0xx_it.c ../Core/Inc/main.h \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 3 | ../Core/Inc/stm32f0xx_hal_conf.h \ 4 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 6 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 8 | ../Drivers/CMSIS/Include/core_cm0.h \ 9 | ../Drivers/CMSIS/Include/cmsis_version.h \ 10 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 11 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 12 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h \ 28 | ../Core/Inc/stm32f0xx_it.h 29 | 30 | ../Core/Inc/main.h: 31 | 32 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 33 | 34 | ../Core/Inc/stm32f0xx_hal_conf.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 37 | 38 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 41 | 42 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 43 | 44 | ../Drivers/CMSIS/Include/core_cm0.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_version.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 49 | 50 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 51 | 52 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 81 | 82 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 83 | 84 | ../Core/Inc/stm32f0xx_it.h: 85 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_it.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/stm32f0xx_it.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_it.c:70:6:NMI_Handler 8 static 2 | stm32f0xx_it.c:83:6:HardFault_Handler 8 static 3 | stm32f0xx_it.c:98:6:SVC_Handler 8 static 4 | stm32f0xx_it.c:111:6:PendSV_Handler 8 static 5 | stm32f0xx_it.c:124:6:SysTick_Handler 8 static 6 | stm32f0xx_it.c:145:6:SPI1_IRQHandler 8 static 7 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/syscalls.d: -------------------------------------------------------------------------------- 1 | Core/Src/syscalls.o: ../Core/Src/syscalls.c 2 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/syscalls.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/syscalls.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/syscalls.su: -------------------------------------------------------------------------------- 1 | syscalls.c:48:6:initialise_monitor_handles 8 static 2 | syscalls.c:52:5:_getpid 8 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 20 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 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/sysmem.d: -------------------------------------------------------------------------------- 1 | Core/Src/sysmem.o: ../Core/Src/sysmem.c 2 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/sysmem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/sysmem.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/sysmem.su: -------------------------------------------------------------------------------- 1 | sysmem.c:38:9:_sbrk 24 static 2 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/system_stm32f0xx.d: -------------------------------------------------------------------------------- 1 | Core/Src/system_stm32f0xx.o: ../Core/Src/system_stm32f0xx.c \ 2 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 3 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 4 | ../Drivers/CMSIS/Include/core_cm0.h \ 5 | ../Drivers/CMSIS/Include/cmsis_version.h \ 6 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 7 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 9 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 10 | ../Core/Inc/stm32f0xx_hal_conf.h \ 11 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 12 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 13 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 28 | 29 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 30 | 31 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 32 | 33 | ../Drivers/CMSIS/Include/core_cm0.h: 34 | 35 | ../Drivers/CMSIS/Include/cmsis_version.h: 36 | 37 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 38 | 39 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 40 | 41 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 42 | 43 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 44 | 45 | ../Core/Inc/stm32f0xx_hal_conf.h: 46 | 47 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 48 | 49 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 50 | 51 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 52 | 53 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 54 | 55 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 56 | 57 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 58 | 59 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 60 | 61 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 62 | 63 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 64 | 65 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 66 | 67 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 68 | 69 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 70 | 71 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 72 | 73 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 74 | 75 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 76 | 77 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 78 | 79 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 80 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/system_stm32f0xx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/system_stm32f0xx.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Src/system_stm32f0xx.su: -------------------------------------------------------------------------------- 1 | system_stm32f0xx.c:146:6:SystemInit 8 static 2 | system_stm32f0xx.c:192:6:SystemCoreClockUpdate 24 static 3 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Startup/startup_stm32f030f4px.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Core/Startup/startup_stm32f030f4px.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/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_stm32f030f4px.s 8 | 9 | OBJS += \ 10 | ./Core/Startup/startup_stm32f030f4px.o 11 | 12 | 13 | # Each subdirectory must supply rules for building sources it contributes 14 | Core/Startup/%.o: ../Core/Startup/%.s 15 | arm-none-eabi-gcc -mcpu=cortex-m0 -g3 -c -x assembler-with-cpp --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" "$<" 16 | 17 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal.c:141:19:HAL_Init 8 static 2 | stm32f0xx_hal.c:165:19:HAL_DeInit 8 static 3 | stm32f0xx_hal.c:188:13:HAL_MspInit 8 static 4 | stm32f0xx_hal.c:199:13:HAL_MspDeInit 8 static 5 | stm32f0xx_hal.c:222:26:HAL_InitTick 24 static 6 | stm32f0xx_hal.c:281:13:HAL_IncTick 8 static 7 | stm32f0xx_hal.c:292:17:HAL_GetTick 8 static 8 | stm32f0xx_hal.c:301:10:HAL_GetTickPrio 8 static 9 | stm32f0xx_hal.c:310:19:HAL_SetTickFreq 32 static 10 | stm32f0xx_hal.c:342:21:HAL_GetTickFreq 8 static 11 | stm32f0xx_hal.c:358:13:HAL_Delay 24 static 12 | stm32f0xx_hal.c:384:13:HAL_SuspendTick 8 static 13 | stm32f0xx_hal.c:401:13:HAL_ResumeTick 8 static 14 | stm32f0xx_hal.c:411:10:HAL_GetHalVersion 8 static 15 | stm32f0xx_hal.c:420:10:HAL_GetREVID 8 static 16 | stm32f0xx_hal.c:429:10:HAL_GetDEVID 8 static 17 | stm32f0xx_hal.c:438:10:HAL_GetUIDw0 8 static 18 | stm32f0xx_hal.c:447:10:HAL_GetUIDw1 8 static 19 | stm32f0xx_hal.c:456:10:HAL_GetUIDw2 8 static 20 | stm32f0xx_hal.c:465:6:HAL_DBGMCU_EnableDBGStopMode 8 static 21 | stm32f0xx_hal.c:474:6:HAL_DBGMCU_DisableDBGStopMode 8 static 22 | stm32f0xx_hal.c:483:6:HAL_DBGMCU_EnableDBGStandbyMode 8 static 23 | stm32f0xx_hal.c:492:6:HAL_DBGMCU_DisableDBGStandbyMode 8 static 24 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.su: -------------------------------------------------------------------------------- 1 | core_cm0.h:623:22:__NVIC_EnableIRQ 16 static 2 | core_cm0.h:659:22:__NVIC_DisableIRQ 16 static,ignoring_inline_asm 3 | core_cm0.h:678:26:__NVIC_GetPendingIRQ 16 static 4 | core_cm0.h:697:22:__NVIC_SetPendingIRQ 16 static 5 | core_cm0.h:712:22:__NVIC_ClearPendingIRQ 16 static 6 | core_cm0.h:730:22:__NVIC_SetPriority 24 static 7 | core_cm0.h:754:26:__NVIC_GetPriority 16 static 8 | core_cm0.h:856:34:__NVIC_SystemReset 8 static,ignoring_inline_asm 9 | core_cm0.h:920:26:SysTick_Config 16 static 10 | stm32f0xx_hal_cortex.c:136:6:HAL_NVIC_SetPriority 24 static 11 | stm32f0xx_hal_cortex.c:152:6:HAL_NVIC_EnableIRQ 16 static 12 | stm32f0xx_hal_cortex.c:168:6:HAL_NVIC_DisableIRQ 16 static 13 | stm32f0xx_hal_cortex.c:181:6:HAL_NVIC_SystemReset 8 static 14 | stm32f0xx_hal_cortex.c:194:10:HAL_SYSTICK_Config 16 static 15 | stm32f0xx_hal_cortex.c:226:10:HAL_NVIC_GetPriority 16 static 16 | stm32f0xx_hal_cortex.c:239:6:HAL_NVIC_SetPendingIRQ 16 static 17 | stm32f0xx_hal_cortex.c:257:10:HAL_NVIC_GetPendingIRQ 16 static 18 | stm32f0xx_hal_cortex.c:273:6:HAL_NVIC_ClearPendingIRQ 16 static 19 | stm32f0xx_hal_cortex.c:290:6:HAL_SYSTICK_CLKSourceConfig 16 static 20 | stm32f0xx_hal_cortex.c:308:6:HAL_SYSTICK_IRQHandler 8 static 21 | stm32f0xx_hal_cortex.c:317:13:HAL_SYSTICK_Callback 8 static 22 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_dma.c:138:19:HAL_DMA_Init 24 static 2 | stm32f0xx_hal_dma.c:200:19:HAL_DMA_DeInit 16 static 3 | stm32f0xx_hal_dma.c:282:19:HAL_DMA_Start 32 static 4 | stm32f0xx_hal_dma.c:329:19:HAL_DMA_Start_IT 32 static 5 | stm32f0xx_hal_dma.c:385:19:HAL_DMA_Abort 16 static 6 | stm32f0xx_hal_dma.c:423:19:HAL_DMA_Abort_IT 24 static 7 | stm32f0xx_hal_dma.c:469:19:HAL_DMA_PollForTransfer 32 static 8 | stm32f0xx_hal_dma.c:570:6:HAL_DMA_IRQHandler 24 static 9 | stm32f0xx_hal_dma.c:662:19:HAL_DMA_RegisterCallback 32 static 10 | stm32f0xx_hal_dma.c:713:19:HAL_DMA_UnRegisterCallback 24 static 11 | stm32f0xx_hal_dma.c:789:22:HAL_DMA_GetState 16 static 12 | stm32f0xx_hal_dma.c:800:10:HAL_DMA_GetError 16 static 13 | stm32f0xx_hal_dma.c:826:13:DMA_SetConfig 24 static 14 | stm32f0xx_hal_dma.c:860:13:DMA_CalcBaseAndBitshift 16 static 15 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_exti.c:143:19:HAL_EXTI_SetConfigLine 32 static 2 | stm32f0xx_hal_exti.c:238:19:HAL_EXTI_GetConfigLine 32 static 3 | stm32f0xx_hal_exti.c:327:19:HAL_EXTI_ClearConfigLine 32 static 4 | stm32f0xx_hal_exti.c:380:19:HAL_EXTI_RegisterCallback 32 static 5 | stm32f0xx_hal_exti.c:405:19:HAL_EXTI_GetHandle 16 static 6 | stm32f0xx_hal_exti.c:445:6:HAL_EXTI_IRQHandler 24 static 7 | stm32f0xx_hal_exti.c:477:10:HAL_EXTI_GetPending 32 static 8 | stm32f0xx_hal_exti.c:506:6:HAL_EXTI_ClearPending 24 static 9 | stm32f0xx_hal_exti.c:527:6:HAL_EXTI_GenerateSWI 24 static 10 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_flash.c:167:19:HAL_FLASH_Program 48 static 2 | stm32f0xx_hal_flash.c:239:19:HAL_FLASH_Program_IT 40 static 3 | stm32f0xx_hal_flash.c:285:6:HAL_FLASH_IRQHandler 24 static 4 | stm32f0xx_hal_flash.c:428:13:HAL_FLASH_EndOfOperationCallback 16 static 5 | stm32f0xx_hal_flash.c:446:13:HAL_FLASH_OperationErrorCallback 16 static 6 | stm32f0xx_hal_flash.c:479:19:HAL_FLASH_Unlock 16 static 7 | stm32f0xx_hal_flash.c:503:19:HAL_FLASH_Lock 8 static 8 | stm32f0xx_hal_flash.c:515:19:HAL_FLASH_OB_Unlock 8 static 9 | stm32f0xx_hal_flash.c:535:19:HAL_FLASH_OB_Lock 8 static 10 | stm32f0xx_hal_flash.c:548:19:HAL_FLASH_OB_Launch 8 static 11 | stm32f0xx_hal_flash.c:580:10:HAL_FLASH_GetError 8 static 12 | stm32f0xx_hal_flash.c:603:13:FLASH_Program_HalfWord 16 static 13 | stm32f0xx_hal_flash.c:620:19:FLASH_WaitForLastOperation 24 static 14 | stm32f0xx_hal_flash.c:663:13:FLASH_SetErrorCode 16 static 15 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_flash_ex.c:159:19:HAL_FLASHEx_Erase 32 static 2 | stm32f0xx_hal_flash_ex.c:240:19:HAL_FLASHEx_Erase_IT 24 static 3 | stm32f0xx_hal_flash_ex.c:313:19:HAL_FLASHEx_OBErase 24 static 4 | stm32f0xx_hal_flash_ex.c:362:19:HAL_FLASHEx_OBProgram 32 static 5 | stm32f0xx_hal_flash_ex.c:443:6:HAL_FLASHEx_OBGetConfig 16 static 6 | stm32f0xx_hal_flash_ex.c:465:10:HAL_FLASHEx_OBGetUserData 24 static 7 | stm32f0xx_hal_flash_ex.c:500:13:FLASH_MassErase 8 static 8 | stm32f0xx_hal_flash_ex.c:521:26:FLASH_OB_EnableWRP 32 static 9 | stm32f0xx_hal_flash_ex.c:637:26:FLASH_OB_DisableWRP 32 static 10 | stm32f0xx_hal_flash_ex.c:751:26:FLASH_OB_RDP_LevelConfig 32 static 11 | stm32f0xx_hal_flash_ex.c:802:26:FLASH_OB_UserConfig 32 static 12 | stm32f0xx_hal_flash_ex.c:857:26:FLASH_OB_ProgramData 32 static 13 | stm32f0xx_hal_flash_ex.c:890:17:FLASH_OB_GetWRP 8 static 14 | stm32f0xx_hal_flash_ex.c:904:17:FLASH_OB_GetRDP 16 static 15 | stm32f0xx_hal_flash_ex.c:931:16:FLASH_OB_GetUser 8 static 16 | stm32f0xx_hal_flash_ex.c:960:6:FLASH_PageErase 16 static 17 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_gpio.c:177:6:HAL_GPIO_Init 32 static 2 | stm32f0xx_hal_gpio.c:302:6:HAL_GPIO_DeInit 32 static 3 | stm32f0xx_hal_gpio.c:384:15:HAL_GPIO_ReadPin 24 static 4 | stm32f0xx_hal_gpio.c:417:6:HAL_GPIO_WritePin 16 static 5 | stm32f0xx_hal_gpio.c:439:6:HAL_GPIO_TogglePin 16 static 6 | stm32f0xx_hal_gpio.c:465:19:HAL_GPIO_LockPin 24 static 7 | stm32f0xx_hal_gpio.c:500:6:HAL_GPIO_EXTI_IRQHandler 16 static 8 | stm32f0xx_hal_gpio.c:515:13:HAL_GPIO_EXTI_Callback 16 static 9 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_i2c_ex.c:97:19:HAL_I2CEx_ConfigAnalogFilter 16 static 2 | stm32f0xx_hal_i2c_ex.c:141:19:HAL_I2CEx_ConfigDigitalFilter 24 static 3 | stm32f0xx_hal_i2c_ex.c:279:6:HAL_I2CEx_EnableFastModePlus 24 static 4 | stm32f0xx_hal_i2c_ex.c:304:6:HAL_I2CEx_DisableFastModePlus 24 static 5 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_pwr.c:75:6:HAL_PWR_DeInit 8 static 2 | stm32f0xx_hal_pwr.c:88:6:HAL_PWR_EnableBkUpAccess 8 static 3 | stm32f0xx_hal_pwr.c:100:6:HAL_PWR_DisableBkUpAccess 8 static 4 | stm32f0xx_hal_pwr.c:231:6:HAL_PWR_EnableWakeUpPin 16 static 5 | stm32f0xx_hal_pwr.c:246:6:HAL_PWR_DisableWakeUpPin 16 static 6 | stm32f0xx_hal_pwr.c:269:6:HAL_PWR_EnterSLEEPMode 16 static,ignoring_inline_asm 7 | stm32f0xx_hal_pwr.c:312:6:HAL_PWR_EnterSTOPMode 24 static,ignoring_inline_asm 8 | stm32f0xx_hal_pwr.c:367:6:HAL_PWR_EnterSTANDBYMode 8 static,ignoring_inline_asm 9 | stm32f0xx_hal_pwr.c:391:6:HAL_PWR_EnableSleepOnExit 8 static 10 | stm32f0xx_hal_pwr.c:404:6:HAL_PWR_DisableSleepOnExit 8 static 11 | stm32f0xx_hal_pwr.c:418:6:HAL_PWR_EnableSEVOnPend 8 static 12 | stm32f0xx_hal_pwr.c:431:6:HAL_PWR_DisableSEVOnPend 8 static 13 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.su -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_rcc.c:210:19:HAL_RCC_DeInit 16 static 2 | stm32f0xx_hal_rcc.c:300:19:HAL_RCC_OscConfig 40 static 3 | stm32f0xx_hal_rcc.c:779:19:HAL_RCC_ClockConfig 24 static 4 | stm32f0xx_hal_rcc.c:1018:6:HAL_RCC_MCOConfig 48 static 5 | stm32f0xx_hal_rcc.c:1052:6:HAL_RCC_EnableCSS 8 static 6 | stm32f0xx_hal_rcc.c:1061:6:HAL_RCC_DisableCSS 8 static 7 | stm32f0xx_hal_rcc.c:1097:10:HAL_RCC_GetSysClockFreq 72 static 8 | stm32f0xx_hal_rcc.c:1172:10:HAL_RCC_GetHCLKFreq 8 static 9 | stm32f0xx_hal_rcc.c:1183:10:HAL_RCC_GetPCLK1Freq 8 static 10 | stm32f0xx_hal_rcc.c:1196:6:HAL_RCC_GetOscConfig 16 static 11 | stm32f0xx_hal_rcc.c:1298:6:HAL_RCC_GetClockConfig 16 static 12 | stm32f0xx_hal_rcc.c:1324:6:HAL_RCC_NMI_IRQHandler 8 static 13 | stm32f0xx_hal_rcc.c:1341:13:HAL_RCC_CSSCallback 8 static 14 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_rcc_ex.c:104:19:HAL_RCCEx_PeriphCLKConfig 32 static 2 | stm32f0xx_hal_rcc_ex.c:270:6:HAL_RCCEx_GetPeriphCLKConfig 16 static 3 | stm32f0xx_hal_rcc_ex.c:370:10:HAL_RCCEx_GetPeriphCLKFreq 24 static 4 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_spi.c:325:19:HAL_SPI_Init 24 static 2 | stm32f0xx_hal_spi.c:470:19:HAL_SPI_DeInit 16 static 3 | stm32f0xx_hal_spi.c:514:13:HAL_SPI_MspInit 16 static 4 | stm32f0xx_hal_spi.c:530:13:HAL_SPI_MspDeInit 16 static 5 | stm32f0xx_hal_spi.c:802:19:HAL_SPI_Transmit 40 static 6 | stm32f0xx_hal_spi.c:992:19:HAL_SPI_Receive 48 static 7 | stm32f0xx_hal_spi.c:1224:19:HAL_SPI_TransmitReceive 48 static 8 | stm32f0xx_hal_spi.c:1530:19:HAL_SPI_Transmit_IT 32 static 9 | stm32f0xx_hal_spi.c:1620:19:HAL_SPI_Receive_IT 32 static 10 | stm32f0xx_hal_spi.c:1732:19:HAL_SPI_TransmitReceive_IT 32 static 11 | stm32f0xx_hal_spi.c:1849:19:HAL_SPI_Transmit_DMA 32 static 12 | stm32f0xx_hal_spi.c:1972:19:HAL_SPI_Receive_DMA 40 static 13 | stm32f0xx_hal_spi.c:2124:19:HAL_SPI_TransmitReceive_DMA 40 static 14 | stm32f0xx_hal_spi.c:2326:19:HAL_SPI_Abort 48 static 15 | stm32f0xx_hal_spi.c:2486:19:HAL_SPI_Abort_IT 40 static 16 | stm32f0xx_hal_spi.c:2647:19:HAL_SPI_DMAPause 16 static 17 | stm32f0xx_hal_spi.c:2667:19:HAL_SPI_DMAResume 16 static 18 | stm32f0xx_hal_spi.c:2687:19:HAL_SPI_DMAStop 24 static 19 | stm32f0xx_hal_spi.c:2727:6:HAL_SPI_IRQHandler 40 static 20 | stm32f0xx_hal_spi.c:2834:13:HAL_SPI_TxCpltCallback 16 static 21 | stm32f0xx_hal_spi.c:2850:13:HAL_SPI_RxCpltCallback 16 static 22 | stm32f0xx_hal_spi.c:2866:13:HAL_SPI_TxRxCpltCallback 16 static 23 | stm32f0xx_hal_spi.c:2882:13:HAL_SPI_TxHalfCpltCallback 16 static 24 | stm32f0xx_hal_spi.c:2898:13:HAL_SPI_RxHalfCpltCallback 16 static 25 | stm32f0xx_hal_spi.c:2914:13:HAL_SPI_TxRxHalfCpltCallback 16 static 26 | stm32f0xx_hal_spi.c:2930:13:HAL_SPI_ErrorCallback 16 static 27 | stm32f0xx_hal_spi.c:2948:13:HAL_SPI_AbortCpltCallback 16 static 28 | stm32f0xx_hal_spi.c:2983:22:HAL_SPI_GetState 16 static 29 | stm32f0xx_hal_spi.c:2995:10:HAL_SPI_GetError 16 static 30 | stm32f0xx_hal_spi.c:3020:13:SPI_DMATransmitCplt 32 static 31 | stm32f0xx_hal_spi.c:3077:13:SPI_DMAReceiveCplt 24 static 32 | stm32f0xx_hal_spi.c:3172:13:SPI_DMATransmitReceiveCplt 24 static 33 | stm32f0xx_hal_spi.c:3261:13:SPI_DMAHalfTransmitCplt 24 static 34 | stm32f0xx_hal_spi.c:3279:13:SPI_DMAHalfReceiveCplt 24 static 35 | stm32f0xx_hal_spi.c:3297:13:SPI_DMAHalfTransmitReceiveCplt 24 static 36 | stm32f0xx_hal_spi.c:3315:13:SPI_DMAError 24 static 37 | stm32f0xx_hal_spi.c:3338:13:SPI_DMAAbortOnError 24 static 38 | stm32f0xx_hal_spi.c:3360:13:SPI_DMATxAbortCallback 40 static 39 | stm32f0xx_hal_spi.c:3426:13:SPI_DMARxAbortCallback 40 static 40 | stm32f0xx_hal_spi.c:3491:13:SPI_2linesRxISR_8BIT 16 static 41 | stm32f0xx_hal_spi.c:3569:13:SPI_2linesTxISR_8BIT 16 static 42 | stm32f0xx_hal_spi.c:3616:13:SPI_2linesRxISR_16BIT 16 static 43 | stm32f0xx_hal_spi.c:3668:13:SPI_2linesTxISR_16BIT 16 static 44 | stm32f0xx_hal_spi.c:3726:13:SPI_RxISR_8BIT 16 static 45 | stm32f0xx_hal_spi.c:3778:13:SPI_RxISR_16BIT 16 static 46 | stm32f0xx_hal_spi.c:3811:13:SPI_TxISR_8BIT 16 static 47 | stm32f0xx_hal_spi.c:3836:13:SPI_TxISR_16BIT 16 static 48 | stm32f0xx_hal_spi.c:3866:26:SPI_WaitFlagStateUntilTimeout 24 static 49 | stm32f0xx_hal_spi.c:3918:26:SPI_WaitFifoStateUntilTimeout 24 static 50 | stm32f0xx_hal_spi.c:3974:26:SPI_EndRxTransaction 32 static 51 | stm32f0xx_hal_spi.c:4010:26:SPI_EndRxTxTransaction 32 static 52 | stm32f0xx_hal_spi.c:4042:13:SPI_CloseRxTx_ISR 24 static 53 | stm32f0xx_hal_spi.c:4119:13:SPI_CloseRx_ISR 16 static 54 | stm32f0xx_hal_spi.c:4176:13:SPI_CloseTx_ISR 24 static 55 | stm32f0xx_hal_spi.c:4225:13:SPI_AbortRx_ISR 32 static 56 | stm32f0xx_hal_spi.c:4269:13:SPI_AbortTx_ISR 32 static 57 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.su: -------------------------------------------------------------------------------- 1 | stm32f0xx_hal_spi_ex.c:80:19:HAL_SPIEx_FlushRxFifo 24 static 2 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.su -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.d: -------------------------------------------------------------------------------- 1 | Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.o: \ 2 | ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.c \ 3 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \ 4 | ../Core/Inc/stm32f0xx_hal_conf.h \ 5 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \ 6 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \ 7 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \ 8 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h \ 9 | ../Drivers/CMSIS/Include/core_cm0.h \ 10 | ../Drivers/CMSIS/Include/cmsis_version.h \ 11 | ../Drivers/CMSIS/Include/cmsis_compiler.h \ 12 | ../Drivers/CMSIS/Include/cmsis_gcc.h \ 13 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \ 14 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \ 15 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \ 16 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \ 17 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \ 18 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \ 19 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \ 20 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \ 21 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \ 22 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \ 23 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \ 24 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \ 25 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \ 26 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \ 27 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h \ 28 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h 29 | 30 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h: 31 | 32 | ../Core/Inc/stm32f0xx_hal_conf.h: 33 | 34 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h: 35 | 36 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h: 37 | 38 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: 39 | 40 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: 41 | 42 | ../Drivers/CMSIS/Include/core_cm0.h: 43 | 44 | ../Drivers/CMSIS/Include/cmsis_version.h: 45 | 46 | ../Drivers/CMSIS/Include/cmsis_compiler.h: 47 | 48 | ../Drivers/CMSIS/Include/cmsis_gcc.h: 49 | 50 | ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: 51 | 52 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h: 53 | 54 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h: 55 | 56 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h: 57 | 58 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h: 59 | 60 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h: 61 | 62 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h: 63 | 64 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h: 65 | 66 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h: 67 | 68 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h: 69 | 70 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h: 71 | 72 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h: 73 | 74 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h: 75 | 76 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h: 77 | 78 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi.h: 79 | 80 | ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: 81 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.o -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.su -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/MAX6675.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/MAX6675.bin -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/MAX6675.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Debug/MAX6675.elf -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/makefile: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | -include ../makefile.init 6 | 7 | RM := rm -rf 8 | 9 | # All of the sources participating in the build are defined here 10 | -include sources.mk 11 | -include Drivers/STM32F0xx_HAL_Driver/Src/subdir.mk 12 | -include Core/Startup/subdir.mk 13 | -include Core/Src/subdir.mk 14 | -include subdir.mk 15 | -include objects.mk 16 | 17 | ifneq ($(MAKECMDGOALS),clean) 18 | ifneq ($(strip $(C_DEPS)),) 19 | -include $(C_DEPS) 20 | endif 21 | endif 22 | 23 | -include ../makefile.defs 24 | 25 | # Add inputs and outputs from these tool invocations to the build variables 26 | EXECUTABLES += \ 27 | MAX6675.elf \ 28 | 29 | SIZE_OUTPUT += \ 30 | default.size.stdout \ 31 | 32 | OBJDUMP_LIST += \ 33 | MAX6675.list \ 34 | 35 | OBJCOPY_BIN += \ 36 | MAX6675.bin \ 37 | 38 | 39 | # All Target 40 | all: MAX6675.elf secondary-outputs 41 | 42 | # Tool invocations 43 | MAX6675.elf: $(OBJS) $(USER_OBJS) C:\Users\BaRdIa\Desktop\MAX6675\STM32F030F4PX_FLASH.ld 44 | arm-none-eabi-gcc -o "MAX6675.elf" @"objects.list" $(USER_OBJS) $(LIBS) -mcpu=cortex-m0 -T"C:\Users\BaRdIa\Desktop\MAX6675\STM32F030F4PX_FLASH.ld" --specs=nosys.specs -Wl,-Map="MAX6675.map" -Wl,--gc-sections -static --specs=nano.specs -mfloat-abi=soft -mthumb -Wl,--start-group -lc -lm -Wl,--end-group 45 | @echo 'Finished building target: $@' 46 | @echo ' ' 47 | 48 | default.size.stdout: $(EXECUTABLES) 49 | arm-none-eabi-size $(EXECUTABLES) 50 | @echo 'Finished building: $@' 51 | @echo ' ' 52 | 53 | MAX6675.list: $(EXECUTABLES) 54 | arm-none-eabi-objdump -h -S $(EXECUTABLES) > "MAX6675.list" 55 | @echo 'Finished building: $@' 56 | @echo ' ' 57 | 58 | MAX6675.bin: $(EXECUTABLES) 59 | arm-none-eabi-objcopy -O binary $(EXECUTABLES) "MAX6675.bin" 60 | @echo 'Finished building: $@' 61 | @echo ' ' 62 | 63 | # Other Targets 64 | clean: 65 | -$(RM) * 66 | -@echo ' ' 67 | 68 | secondary-outputs: $(SIZE_OUTPUT) $(OBJDUMP_LIST) $(OBJCOPY_BIN) 69 | 70 | .PHONY: all clean dependents 71 | .SECONDARY: 72 | 73 | -include ../makefile.targets 74 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/objects.list: -------------------------------------------------------------------------------- 1 | "Core/Src/MAX6675.o" 2 | "Core/Src/main.o" 3 | "Core/Src/stm32f0xx_hal_msp.o" 4 | "Core/Src/stm32f0xx_it.o" 5 | "Core/Src/syscalls.o" 6 | "Core/Src/sysmem.o" 7 | "Core/Src/system_stm32f0xx.o" 8 | "Core/Startup/startup_stm32f030f4px.o" 9 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.o" 10 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.o" 11 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.o" 12 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.o" 13 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.o" 14 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.o" 15 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.o" 16 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.o" 17 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.o" 18 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.o" 19 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.o" 20 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.o" 21 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.o" 22 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi.o" 23 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_spi_ex.o" 24 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.o" 25 | "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.o" 26 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/objects.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | USER_OBJS := 6 | 7 | LIBS := 8 | 9 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Debug/sources.mk: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Automatically-generated file. Do not edit! 3 | ################################################################################ 4 | 5 | ELF_SRCS := 6 | OBJ_SRCS := 7 | S_SRCS := 8 | C_SRCS := 9 | S_UPPER_SRCS := 10 | O_SRCS := 11 | SIZE_OUTPUT := 12 | OBJDUMP_LIST := 13 | EXECUTABLES := 14 | OBJS := 15 | C_DEPS := 16 | OBJCOPY_BIN := 17 | 18 | # Every subdirectory with source files must be described here 19 | SUBDIRS := \ 20 | Core/Src \ 21 | Core/Startup \ 22 | Drivers/STM32F0xx_HAL_Driver/Src \ 23 | 24 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bardia-Afshar/MAX31855-MAX6675-STM32/7c08cfd6010bdc9a43a3da398f9958d12f0d5e17/MAX6675/STM32CubeIDE Example-MAX6675/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file system_stm32f0xx.h 4 | * @author MCD Application Team 5 | * @brief CMSIS Cortex-M0 Device System Source File for STM32F0xx devices. 6 | ****************************************************************************** 7 | * @attention 8 | * 9 | *

© Copyright (c) 2016 STMicroelectronics. 10 | * All rights reserved.

11 | * 12 | * This software component is licensed by ST under BSD 3-Clause license, 13 | * the "License"; You may not use this file except in compliance with the 14 | * License. You may obtain a copy of the License at: 15 | * opensource.org/licenses/BSD-3-Clause 16 | * 17 | ****************************************************************************** 18 | */ 19 | 20 | /** @addtogroup CMSIS 21 | * @{ 22 | */ 23 | 24 | /** @addtogroup stm32f0xx_system 25 | * @{ 26 | */ 27 | 28 | /** 29 | * @brief Define to prevent recursive inclusion 30 | */ 31 | #ifndef __SYSTEM_STM32F0XX_H 32 | #define __SYSTEM_STM32F0XX_H 33 | 34 | #ifdef __cplusplus 35 | extern "C" { 36 | #endif 37 | 38 | /** @addtogroup STM32F0xx_System_Includes 39 | * @{ 40 | */ 41 | 42 | /** 43 | * @} 44 | */ 45 | 46 | 47 | /** @addtogroup STM32F0xx_System_Exported_types 48 | * @{ 49 | */ 50 | /* This variable is updated in three ways: 51 | 1) by calling CMSIS function SystemCoreClockUpdate() 52 | 3) by calling HAL API function HAL_RCC_GetHCLKFreq() 53 | 3) by calling HAL API function HAL_RCC_ClockConfig() 54 | Note: If you use this function to configure the system clock; then there 55 | is no need to call the 2 first functions listed above, since SystemCoreClock 56 | variable is updated automatically. 57 | */ 58 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ 59 | extern const uint8_t AHBPrescTable[16]; /*!< AHB prescalers table values */ 60 | extern const uint8_t APBPrescTable[8]; /*!< APB prescalers table values */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @addtogroup STM32F0xx_System_Exported_Constants 67 | * @{ 68 | */ 69 | 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @addtogroup STM32F0xx_System_Exported_Macros 75 | * @{ 76 | */ 77 | 78 | /** 79 | * @} 80 | */ 81 | 82 | /** @addtogroup STM32F0xx_System_Exported_Functions 83 | * @{ 84 | */ 85 | 86 | extern void SystemInit(void); 87 | extern void SystemCoreClockUpdate(void); 88 | /** 89 | * @} 90 | */ 91 | 92 | #ifdef __cplusplus 93 | } 94 | #endif 95 | 96 | #endif /*__SYSTEM_STM32F0XX_H */ 97 | 98 | /** 99 | * @} 100 | */ 101 | 102 | /** 103 | * @} 104 | */ 105 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 106 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/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 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * @file tz_context.h 3 | * @brief Context Management for Armv8-M TrustZone 4 | * @version V1.0.1 5 | * @date 10. January 2018 6 | ******************************************************************************/ 7 | /* 8 | * Copyright (c) 2017-2018 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 TZ_CONTEXT_H 32 | #define TZ_CONTEXT_H 33 | 34 | #include 35 | 36 | #ifndef TZ_MODULEID_T 37 | #define TZ_MODULEID_T 38 | /// \details Data type that identifies secure software modules called by a process. 39 | typedef uint32_t TZ_ModuleId_t; 40 | #endif 41 | 42 | /// \details TZ Memory ID identifies an allocated memory slot. 43 | typedef uint32_t TZ_MemoryId_t; 44 | 45 | /// Initialize secure context memory system 46 | /// \return execution status (1: success, 0: error) 47 | uint32_t TZ_InitContextSystem_S (void); 48 | 49 | /// Allocate context memory for calling secure software modules in TrustZone 50 | /// \param[in] module identifies software modules called from non-secure mode 51 | /// \return value != 0 id TrustZone memory slot identifier 52 | /// \return value 0 no memory available or internal error 53 | TZ_MemoryId_t TZ_AllocModuleContext_S (TZ_ModuleId_t module); 54 | 55 | /// Free context memory that was previously allocated with \ref TZ_AllocModuleContext_S 56 | /// \param[in] id TrustZone memory slot identifier 57 | /// \return execution status (1: success, 0: error) 58 | uint32_t TZ_FreeModuleContext_S (TZ_MemoryId_t id); 59 | 60 | /// Load secure context (called on RTOS thread context switch) 61 | /// \param[in] id TrustZone memory slot identifier 62 | /// \return execution status (1: success, 0: error) 63 | uint32_t TZ_LoadContext_S (TZ_MemoryId_t id); 64 | 65 | /// Store secure context (called on RTOS thread context switch) 66 | /// \param[in] id TrustZone memory slot identifier 67 | /// \return execution status (1: success, 0: error) 68 | uint32_t TZ_StoreContext_S (TZ_MemoryId_t id); 69 | 70 | #endif // TZ_CONTEXT_H 71 | -------------------------------------------------------------------------------- /MAX6675/STM32CubeIDE Example-MAX6675/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_spi_ex.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f0xx_hal_spi_ex.h 4 | * @author MCD Application Team 5 | * @brief Header file of SPI HAL Extended module. 6 | ****************************************************************************** 7 | * @attention 8 | * 9 | *

© Copyright (c) 2016 STMicroelectronics. 10 | * All rights reserved.

11 | * 12 | * This software component is licensed by ST under BSD 3-Clause license, 13 | * the "License"; You may not use this file except in compliance with the 14 | * License. You may obtain a copy of the License at: 15 | * opensource.org/licenses/BSD-3-Clause 16 | * 17 | ****************************************************************************** 18 | */ 19 | 20 | /* Define to prevent recursive inclusion -------------------------------------*/ 21 | #ifndef STM32F0xx_HAL_SPI_EX_H 22 | #define STM32F0xx_HAL_SPI_EX_H 23 | 24 | #ifdef __cplusplus 25 | extern "C" { 26 | #endif 27 | 28 | /* Includes ------------------------------------------------------------------*/ 29 | #include "stm32f0xx_hal_def.h" 30 | 31 | /** @addtogroup STM32F0xx_HAL_Driver 32 | * @{ 33 | */ 34 | 35 | /** @addtogroup SPIEx 36 | * @{ 37 | */ 38 | 39 | /* Exported types ------------------------------------------------------------*/ 40 | /* Exported constants --------------------------------------------------------*/ 41 | /* Exported macros -----------------------------------------------------------*/ 42 | /* Exported functions --------------------------------------------------------*/ 43 | /** @addtogroup SPIEx_Exported_Functions 44 | * @{ 45 | */ 46 | 47 | /* Initialization and de-initialization functions ****************************/ 48 | /* IO operation functions *****************************************************/ 49 | /** @addtogroup SPIEx_Exported_Functions_Group1 50 | * @{ 51 | */ 52 | HAL_StatusTypeDef HAL_SPIEx_FlushRxFifo(SPI_HandleTypeDef *hspi); 53 | /** 54 | * @} 55 | */ 56 | 57 | /** 58 | * @} 59 | */ 60 | 61 | /** 62 | * @} 63 | */ 64 | 65 | /** 66 | * @} 67 | */ 68 | 69 | #ifdef __cplusplus 70 | } 71 | #endif 72 | 73 | #endif /* STM32F0xx_HAL_SPI_EX_H */ 74 | 75 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 76 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MAX31855-MAX6675-STM32 2 | Library for MAX31855/MAX6675 from Maxim Integrated for STM32 3 | 4 | ## Update 5 | 6 | As I needed to measure higher temperature and especially negative ones, I decided to use MAX31855 instead of MAX6675 in my new project. I updated the repo and added the library for MAX31855 too. Also, I uploaded a breakout board for MAX31855 and an example code in stm32cubeIDE. 7 | 8 | 9 | ![Untitled-min](https://user-images.githubusercontent.com/54714609/108538799-6eb6ea00-72f4-11eb-8e84-09f3d80db379.jpg) 10 | ![2021-02-19_192348](https://user-images.githubusercontent.com/54714609/108536478-bee07d00-72f1-11eb-817e-41eebad99f35.jpg) 11 | ![2021-02-19_192639](https://user-images.githubusercontent.com/54714609/108536468-bd16b980-72f1-11eb-8dc4-bf7dd1f496da.jpg) 12 | ![2021-02-19_192443](https://user-images.githubusercontent.com/54714609/108536476-be47e680-72f1-11eb-8591-5b23055e78a5.jpg) 13 | 14 | 15 | 16 | ## Introduction 17 | 18 | For sensing a temperature in my hot air gun nozzle, I had to use an amplifier circuit to amplify output signal of a thermocouple. As you probably know, MAX6675 is an all-in-one Integrated circuit that provides a digital output from thermocouple input. As a result, you can save some components and space on your PCB. According to ‘Datasheet’, The MAX6675 performs cold-junction compensation and digitizes the signal from a type-K thermocouple. The data is output in a 12-bit resolution, SPI compatible, read-only format. I wrote a simple library that you can use to get the temperature from MAX6675. I used STM32F030F4P6. However, you can port it to other microcontrollers. I also provided a complete project in STM32CubeIDE that you can use as a reference. You can run code and see data in STMStudio. 19 | 20 | [Download Datasheet Here](https://datasheets.maximintegrated.com/en/ds/MAX6675.pdf) 21 | 22 | ![IC](https://user-images.githubusercontent.com/54714609/83968251-18785700-a8dd-11ea-89c8-dec998a6625f.jpg) 23 | 24 | 25 | ## How to use 26 | 27 | 1- Activate SPI from STM32CubeMX. As I mentioned before, this chip is read-only, so that you can configure your microcontroller as a receive-only master. Also, the length of data is 16bit and MSB First. Use one of the GPIO’s as a Slave Select(SS). I used first pin from GPIOB (GPIOB_PIN_1). 28 | 29 | ![uC](https://user-images.githubusercontent.com/54714609/83968282-46f63200-a8dd-11ea-911a-a031615f12c3.jpg) 30 | ![SPI-Config](https://user-images.githubusercontent.com/54714609/83968280-452c6e80-a8dd-11ea-8e9e-3bd5b2b64908.jpg) 31 | 32 | 2-Add my library to your compiler and in MAX6675.h set the SS port and pin that you activated in STM32cubeMX. The output of Max6675_Read_Temp is the temperature in centigrade 33 | 34 | ```c 35 | #define SSPORT GPIOB // GPIO Port of Chip Select(Slave Select) 36 | #define SSPIN GPIO_PIN_1 // GPIO PIN of Chip Select(Slave Select) 37 | ``` 38 | 39 | ## Results 40 | 41 | You can see the test results of this chip. I put thermocouple in the ice to plot the temperature change. TS is connection flag. If you disconnect thermocouple from the chip, it goes high. 42 | 43 | ![MAX6675](https://user-images.githubusercontent.com/54714609/83968334-b3713100-a8dd-11ea-9030-8786ef1221f8.gif) 44 | --------------------------------------------------------------------------------