1 /* 2 * Copyright (c) 2022 Talkweb Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 17 /* Define to prevent recursive inclusion -------------------------------------*/ 18 #ifndef HAL_SPI_H 19 #define HAL_SPI_H 20 21 #ifdef __cplusplus 22 extern "C" { 23 #endif 24 25 /* Includes ------------------------------------------------------------------*/ 26 #include "stm32f4xx_ll_spi.h" 27 28 #if defined (SPI1) || defined (SPI2) || defined (SPI3) || defined (SPI4) || defined (SPI5) || defined(SPI6) 29 30 #if defined(USE_FULL_LL_DRIVER) 31 32 uint8_t LL_SPI_Transmit(SPI_TypeDef* SPIx ,uint8_t byte); 33 34 #endif /* USE_FULL_LL_DRIVER */ 35 36 #endif /* defined (SPI1) || defined (SPI2) || defined (SPI3) || defined (SPI4) || defined (SPI5) || defined(SPI6) */ 37 38 #ifdef __cplusplus 39 } 40 #endif 41 42 #endif /* HAL_SPI_H_SPI_H */