1 /**
2   ******************************************************************************
3   * @file    nv_counters_device.h
4   * @author  MCD Application Team
5   * @brief   Tick device definition
6    ******************************************************************************
7   * @attention
8   *
9   * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
10   * All rights reserved.</center></h2>
11   *
12   * This software component is licensed by ST under BSD 3-Clause license,
13   * the "License"; You may not use this file except in compliance with the
14   * License. You may obtain a copy of the License at:
15   *                        opensource.org/licenses/BSD-3-Clause
16   *
17   ******************************************************************************
18   */
19 /* Define to prevent recursive inclusion -------------------------------------*/
20 
21 #ifndef NV_COUNTERS_DEVICE_H
22 #define NV_COUNTERS_DEVICE_H
23 #include "flash_layout.h"
24 
25 #define DEVICE_NV_COUNTERS_AREA_SIZE FLASH_NV_COUNTERS_AREA_SIZE
26 
27 #define  DEVICE_NV_COUNTERS_AREA_OFFSET TFM_NV_COUNTERS_AREA_ADDR
28 
29 #define DEVICE_NV_COUNTERS_SECTOR_SIZE TFM_NV_COUNTERS_SECTOR_SIZE
30 
31 #define DEVICE_NV_COUNTERS_FLASH_NAME TFM_NV_COUNTERS_FLASH_DEV
32 
33 #endif /* NV_COUNTERS_DEVICE_H*/
34