HAL_STM32_config.h 322 B

12345678910111213141516171819
  1. /*
  2. * HAL_config.h
  3. *
  4. * Created on: Oct 27, 2025
  5. * Author: juraj
  6. */
  7. #ifndef INC_HAL_STM32_CONFIG_H_
  8. #define INC_HAL_STM32_CONFIG_H_
  9. extern SPI_HandleTypeDef hspi1;
  10. #define CHIP_SELECT_PIN SPI1_CS_Pin
  11. #define CHIP_SELECT_PORT SPI1_CS_GPIO_Port
  12. #define SPI_INSTANCE hspi1
  13. #endif /* INC_HAL_STM32_CONFIG_H_ */