/** @file ql_nand_block_device.h @brief This file is used to define log interface for different Quectel Project. */ /*================================================================ Copyright (c) 2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved. Quectel Wireless Solution Proprietary and Confidential. =================================================================*/ /*================================================================= EDIT HISTORY FOR MODULE This section contains comments describing changes made to the module. Notice that changes are listed in reverse chronological order. WHEN WHO WHAT, WHERE, WHY ------------ ------- ------------------------------------------------------------------------------- =================================================================*/ #ifndef QL_NAND_BLOCK_DEVICE_H #define QL_NAND_BLOCK_DEVICE_H #ifdef __cplusplus extern "C" { #endif #include "block_device.h" /*======================================================================== * Variable Definition *========================================================================*/ #define CONFIG_FS_NAND_FLASH_MOUNT_POINT "/exnand" /*======================================================================== * function Definition *========================================================================*/ void ql_fs_umount_nand_flash(); bool ql_fs_mount_nand_flash(); blockDevice_t *ql_nand_block_create(uint32_t name); #ifdef __cplusplus } /*"C" */ #endif #endif /* QL_NAND_BLOCK_DEVICE_H */