1# Flash Circular Buffer module
2
3# Copyright (c) 2017-2023 Nordic Semiconductor ASA
4# SPDX-License-Identifier: Apache-2.0
5
6#
7# Flash Circular Buffer
8#
9
10config FCB
11	bool "Flash Circular Buffer support"
12	depends on FLASH_MAP
13	select CRC
14	select FLASH_PAGE_LAYOUT
15	help
16	  Enable support of Flash Circular Buffer.
17
18if FCB
19
20config FCB_ALLOW_FIXED_ENDMARKER
21	bool "Allow FCB instances to have a fixed endmarker"
22	help
23	  This allows the FCB instances to disable CRC checks in
24	  favor of increased write throughput.
25
26endif
27