zephyr/tests/bluetooth/mesh/blob_io_flash/prj.conf
Johan Hedberg 1824dcda7c Bluetooth: tests: Convert to new HCI driver API
Convert all Bluetooth tests that define dummy HCI driver instances to use
the new HCI driver API. This requires both a custom DTS binding as well
as an app-specific overlay file.

Signed-off-by: Johan Hedberg <johan.hedberg@gmail.com>
2024-06-11 19:42:49 -04:00

19 lines
674 B
Plaintext

CONFIG_ZTEST=y
CONFIG_FLASH=y
CONFIG_FLASH_MAP=y
CONFIG_FLASH_AREA_CHECK_INTEGRITY=y
CONFIG_FLASH_SIMULATOR=y
# Written chunks have 0xFF padding on start and end to assure word alignment with flash.
# Start padding can overlap data of previous chunk; flash drivers can only pull bits down to 0,
# so overwriting with 0xFF is not possible. This config allows to "write" start padding 0xFF over
# previously witten data, which is considered overwrite although it takes no effect.
CONFIG_FLASH_SIMULATOR_DOUBLE_WRITES=y
CONFIG_BT=y
CONFIG_BT_OBSERVER=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_MESH=y
CONFIG_BT_MESH_BLOB_SRV=y
CONFIG_BT_MESH_BLOB_CLI=y
CONFIG_BT_MESH_BLOB_IO_FLASH=y