1 /** 2 ****************************************************************************** 3 * @file stsafea_service_stub.h 4 * @author MCD Application Team 5 * @version V1.0.0 6 * @brief Implementation file of psa_drv_se interface. 7 ****************************************************************************** 8 * @attention 9 * 10 * <h2><center>© Copyright (c) 2021 STMicroelectronics. 11 * All rights reserved.</center></h2> 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 21 22 #ifndef STSAFEA_SERVICE_STUB_H_ 23 #define STSAFEA_SERVICE_STUB_H_ 24 25 #include "stm32u5xx.h" 26 27 int32_t HW_IO_Init(void); 28 void BSP_TimeDelay(uint32_t msDelay); 29 int32_t BSP_I2C_Init(void); 30 int32_t BSP_I2C_DeInit(void); 31 int32_t BSP_I2C_Send(uint16_t DevAddr, uint8_t *pData, uint16_t Length); 32 int32_t BSP_I2C_Recv(uint16_t DevAddr, uint8_t *pData, uint16_t Length); 33 #endif 34