You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
835 B
41 lines
835 B
/*
|
|
* Copyright 2013-2016 Freescale Semiconductor, Inc.
|
|
* Copyright 2016-2020 NXP
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef FSL_FLASH_H
|
|
#define FSL_FLASH_H
|
|
|
|
#include "fsl_ftfx_cache.h"
|
|
#include "fsl_ftfx_flash.h"
|
|
#if FSL_FEATURE_FLASH_HAS_FLEX_NVM
|
|
#include "fsl_ftfx_flexnvm.h"
|
|
#endif
|
|
|
|
/*!
|
|
* @addtogroup flash_driver
|
|
* @{
|
|
*/
|
|
/*******************************************************************************
|
|
* Definitions
|
|
******************************************************************************/
|
|
|
|
/*******************************************************************************
|
|
* API
|
|
******************************************************************************/
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
/*! @}*/
|
|
|
|
#endif /* FSL_FLASH_H */
|
|
|