1 /*
2  * Percepio DFM v2.1.0
3  * Copyright 2023 Percepio AB
4  * www.percepio.com
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 /**
10  * @file
11  *
12  * @brief DFM FLASH storage port config
13  */
14 
15 #ifndef DFM_STORAGE_PORT_CONFIG_H
16 #define DFM_STORAGE_PORT_CONFIG_H
17 
18 /* How much space is needed to store the alert to flash.
19  * This should be a multiple of the flash page size (= 2048 on STM32L475). */
20 #define DFM_CFG_FLASHSTORAGE_SIZE (3 * 2048)
21 
22 #endif //UNITTEST_DFMCLOUDPORTCONFIG_H
23