2017-09-12 15:25:20 -03:00
|
|
|
/*
|
|
|
|
* This file is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define FORCE_VERSION_H_INCLUDE
|
|
|
|
#include "version.h"
|
|
|
|
#undef FORCE_VERSION_H_INCLUDE
|
|
|
|
|
|
|
|
#include <AP_Common/AP_FWVersion.h>
|
|
|
|
|
2018-06-13 08:12:16 -03:00
|
|
|
const AP_FWVersion AP_FWVersion::fwver{
|
2017-09-12 15:25:20 -03:00
|
|
|
.major = FW_MAJOR,
|
|
|
|
.minor = FW_MINOR,
|
|
|
|
.patch = FW_PATCH,
|
2017-11-26 21:25:04 -04:00
|
|
|
.fw_type = FW_TYPE,
|
2017-09-12 15:25:20 -03:00
|
|
|
#ifndef GIT_VERSION
|
|
|
|
.fw_string = THISFIRMWARE,
|
2017-11-26 21:25:04 -04:00
|
|
|
.fw_hash_str = "",
|
2017-09-12 15:25:20 -03:00
|
|
|
#else
|
|
|
|
.fw_string = THISFIRMWARE " (" GIT_VERSION ")",
|
|
|
|
.fw_hash_str = GIT_VERSION,
|
|
|
|
#endif
|
2018-06-13 08:12:16 -03:00
|
|
|
.middleware_name = nullptr,
|
|
|
|
.middleware_hash_str = nullptr,
|
2017-11-26 21:25:04 -04:00
|
|
|
#ifdef CHIBIOS_GIT_VERSION
|
2018-06-13 08:12:16 -03:00
|
|
|
.os_name = "ChibiOS",
|
|
|
|
.os_hash_str = CHIBIOS_GIT_VERSION,
|
2017-11-26 21:25:04 -04:00
|
|
|
#else
|
|
|
|
.os_name = nullptr,
|
|
|
|
.os_hash_str = nullptr,
|
|
|
|
#endif
|
|
|
|
#ifdef BUILD_DATE_YEAR
|
|
|
|
// encode build date in os_sw_version
|
|
|
|
.os_sw_version = (BUILD_DATE_YEAR*100*100) + (BUILD_DATE_MONTH*100) + BUILD_DATE_DAY,
|
|
|
|
#else
|
|
|
|
.os_sw_version = 0,
|
2017-09-12 15:25:20 -03:00
|
|
|
#endif
|
|
|
|
};
|