1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /**
- ******************************************************************************
- * @file SPI/SPI_MSD/main.h
- * @author MCD Application Team
- * @version V1.0.0
- * @date 18-May-2012
- * @brief Header for main.c module
- ******************************************************************************
- * @attention
- *
- * <h2><center>© COPYRIGHT 2012 STMicroelectronics</center></h2>
- *
- * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
- * You may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.st.com/software_license_agreement_liberty_v2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************
- */
-
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef __MAIN_H
- #define __MAIN_H
- /* Includes ------------------------------------------------------------------*/
- #include <stdint.h>
- #include "stm32f10x_gpio.h"
- #include "stm32f10x_spi.h"
- #include "stm32f10x_rcc.h"
- #include "stm32_eval_spi_sd.h"
- #include "stm32f10x_conf.h"
- #include "stm32f10x_gpio.c"
- #include "stm32f10x_rcc.c"
- #include "stm32f10x_spi.c"
- #include "stm32_eval_spi_sd.c"
- /* Exported types ------------------------------------------------------------*/
- typedef enum {FAILED = 0, PASSED = !FAILED} TestStatus;
- /* Exported constants --------------------------------------------------------*/
- #define BUFFERSIZE 512
- /* Exported macro ------------------------------------------------------------*/
- /* Exported functions ------------------------------------------------------- */
- #endif /* __MAIN_H */
- /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|