/** ******************************************************************************************************** * @file sflash.h * @author NV_LJX * @version V1.0.0 * @date 2016.11.28 * @brief c header file ******************************************************************************************************** * @attention * * Any copying, transferring or any other usage is prohibited. * * All copyrights reserved by Xi'an New-Vision Automotive Electronics Co., Ltd. ******************************************************************************************************** */ //******************************************************************************************************** // @Define to prevent recursive inclusion //******************************************************************************************************** #ifndef _SFLASH_H_ #define _SFLASH_H_ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ //******************************************************************************************************** // @Project Includes //******************************************************************************************************** //******************************************************************************************************** // @Macros //******************************************************************************************************** //******************************************************************************************************** // @Defines //******************************************************************************************************** #define SFMA0CLK_PORT (uint8_t)(21) #define SFMA0CLK_PIN (uint8_t)(0) #define SFMA0SSL_PORT (uint8_t)(21) #define SFMA0SSL_PIN (uint8_t)(1) #define SFMA0IO00_PORT (uint8_t)(21) #define SFMA0IO00_PIN (uint8_t)(2) #define SFMA0IO10_PORT (uint8_t)(21) #define SFMA0IO10_PIN (uint8_t)(3) #define SFMA0IO20_PORT (uint8_t)(21) #define SFMA0IO20_PIN (uint8_t)(4) #define SFMA0IO30_PORT (uint8_t)(21) #define SFMA0IO30_PIN (uint8_t)(5) //******************************************************************************************************** // @Global Functions //******************************************************************************************************** /********************************************************************************************************* ** Function name : InitSeriFlashExternReadMode ** Function Description : InitSeriFlashExternReadMode ** Parameters: None ** Return: None ** Note: None *********************************************************************************************************/ extern void InitSeriFlashExternReadMode(void); #ifdef __cplusplus } #endif /* __cplusplus */ #endif