1 /* 2 * Copyright 2024 Microchip Technology Inc. and its subsidiaries. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef MEC5_VERSION_H_ 7 #define MEC5_VERSION_H_ 8 9 #include <stdint.h> 10 #include <stddef.h> 11 12 #define MEC5_VER_MAJOR 0 13 #define MEC5_VER_MINOR 3 14 #define MEC5_VER_REVISION 0 15 16 size_t mec5_hal_version_size(void); 17 char const *mec5_hal_version_string(void); 18 19 #endif /* MEC5_VERSION_H_ */ 20