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	help
15	  Enable support of Flash Circular Buffer.
16
17if FCB
18
19config FCB_ALLOW_FIXED_ENDMARKER
20	bool "Allow FCB instances to have a fixed endmarker"
21	help
22	  This allows the FCB instances to disable CRC checks in
23	  favor of increased write throughput.
24
25endif
26