19 lines
316 B
C
19 lines
316 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef ESP_ZB_VER_MAJOR
|
|
#define ESP_ZB_VER_MAJOR 1
|
|
#endif
|
|
|
|
#ifndef ESP_ZB_VER_MINOR
|
|
#define ESP_ZB_VER_MINOR 6
|
|
#endif
|
|
|
|
#ifndef ESP_ZB_VER_PATCH
|
|
#define ESP_ZB_VER_PATCH 7
|
|
#endif
|