aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios-contrib/ext/mcux-sdk/components/flash/mflash/lpc55xxx/mflash_drv.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/components/flash/mflash/lpc55xxx/mflash_drv.h')
-rw-r--r--lib/chibios-contrib/ext/mcux-sdk/components/flash/mflash/lpc55xxx/mflash_drv.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/components/flash/mflash/lpc55xxx/mflash_drv.h b/lib/chibios-contrib/ext/mcux-sdk/components/flash/mflash/lpc55xxx/mflash_drv.h
new file mode 100644
index 000000000..5c22a5f90
--- /dev/null
+++ b/lib/chibios-contrib/ext/mcux-sdk/components/flash/mflash/lpc55xxx/mflash_drv.h
@@ -0,0 +1,30 @@
1/*
2 * Copyright 2017-2020 NXP
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef __MFLASH_DRV_H__
8#define __MFLASH_DRV_H__
9
10#include "mflash_common.h"
11
12/* Flash constants */
13
14/*
15 * The value is not sector size as reported by FLASH_GetProperty() in mflash_drv_init().
16 * this platform can erase/program the flash memory by smaller block (actually page size).
17 */
18#ifndef MFLASH_SECTOR_SIZE
19#define MFLASH_SECTOR_SIZE (256)
20#endif
21
22#ifndef MFLASH_PAGE_SIZE
23#define MFLASH_PAGE_SIZE (256)
24#endif
25
26#define MFLASH_PAGE_INTEGRITY_CHECKS (1)
27
28int32_t mflash_drv_is_readable(uint32_t addr);
29
30#endif