| 12345678910111213141516171819 |
- /*
- * HAL_config.h
- *
- * Created on: Oct 27, 2025
- * Author: juraj
- */
- #ifndef INC_HAL_STM32_CONFIG_H_
- #define INC_HAL_STM32_CONFIG_H_
- extern SPI_HandleTypeDef hspi1;
- #define CHIP_SELECT_PIN SPI1_CS_Pin
- #define CHIP_SELECT_PORT SPI1_CS_GPIO_Port
- #define SPI_INSTANCE hspi1
- #endif /* INC_HAL_STM32_CONFIG_H_ */
|