Morse Micro IoT SDK  2.11.2
mmversion.h
1/*
2 * Copyright 2026 Morse Micro
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
17#pragma once
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23
24#include <stdint.h>
25
26
32#define MM_VERSION_BUILDID "2.11.2"
33
35#define MM_VERSION_MAJOR (2)
37#define MM_VERSION_MINOR (11)
39#define MM_VERSION_PATCH (2)
40
49#define MM_VERSION_NUMBER(_major, _minor, _patch) (((_major) << 24) | ((_minor) << 16) | (_patch))
50
63#define MM_VERSION MM_VERSION_NUMBER(MM_VERSION_MAJOR, MM_VERSION_MINOR, MM_VERSION_PATCH)
64
65
66#ifdef __cplusplus
67}
68#endif
69