123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /** @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 */
|