mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
boards define BOARD_NAME, so board_name() is not necessary. HW_ARCH was just a wrapper around board_name(). This patch simplifies to having only one common method px4_board_name().
310 lines
8.0 KiB
C
310 lines
8.0 KiB
C
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2014 PX4 Development Team. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/**
|
|
* @file ver.c
|
|
*
|
|
* Version command, unifies way of showing versions of HW, SW, Build, GCC
|
|
* In case you want to add new version just extend version_main function
|
|
*
|
|
* @author Vladimir Kulla <ufon@kullaonline.net>
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <version/version.h>
|
|
#include <systemlib/err.h>
|
|
#include <systemlib/mcu_version.h>
|
|
#include <systemlib/git_version.h>
|
|
|
|
/* string constants for version commands */
|
|
static const char sz_ver_hw_str[] = "hw";
|
|
static const char sz_ver_hwcmp_str[] = "hwcmp";
|
|
static const char sz_ver_git_str[] = "git";
|
|
static const char sz_ver_bdate_str[] = "bdate";
|
|
static const char sz_ver_buri_str[] = "uri";
|
|
static const char sz_ver_gcc_str[] = "gcc";
|
|
static const char sz_ver_all_str[] = "all";
|
|
static const char mcu_ver_str[] = "mcu";
|
|
static const char mcu_uid_str[] = "uid";
|
|
|
|
const char *px4_git_version = PX4_GIT_VERSION_STR;
|
|
const uint64_t px4_git_version_binary = PX4_GIT_VERSION_BINARY;
|
|
#if !defined(CONFIG_CDCACM_PRODUCTID)
|
|
# define CONFIG_CDCACM_PRODUCTID 0
|
|
#endif
|
|
const char *px4_git_tag = PX4_GIT_TAG_STR;
|
|
|
|
#if defined(__PX4_NUTTX)
|
|
__EXPORT const char *os_git_tag = "7.18";
|
|
__EXPORT const uint32_t px4_board_version = CONFIG_CDCACM_PRODUCTID;
|
|
#else
|
|
__EXPORT const char *os_git_tag = "";
|
|
__EXPORT const uint32_t px4_board_version = 1;
|
|
#endif
|
|
|
|
// dev >= 0
|
|
// alpha >= 64
|
|
// beta >= 128
|
|
// release candidate >= 192
|
|
// release == 255
|
|
enum FIRMWARE_TYPE {
|
|
FIRMWARE_TYPE_DEV = 0,
|
|
FIRMWARE_TYPE_ALPHA = 64,
|
|
FIRMWARE_TYPE_BETA = 128,
|
|
FIRMWARE_TYPE_RC = 192,
|
|
FIRMWARE_TYPE_RELEASE = 255
|
|
};
|
|
|
|
/**
|
|
* Convert a version tag string to a number
|
|
*/
|
|
uint32_t version_tag_to_number(const char *tag)
|
|
{
|
|
uint32_t ver = 0;
|
|
unsigned len = strlen(tag);
|
|
unsigned mag = 0;
|
|
int32_t type = -1;
|
|
bool dotparsed = false;
|
|
unsigned dashcount = 0;
|
|
|
|
for (int i = len - 1; i >= 0; i--) {
|
|
|
|
if (tag[i] == '-') {
|
|
dashcount++;
|
|
}
|
|
|
|
if (tag[i] >= '0' && tag[i] <= '9') {
|
|
unsigned number = tag[i] - '0';
|
|
|
|
ver += (number << mag);
|
|
mag += 8;
|
|
|
|
} else if (tag[i] == '.') {
|
|
continue;
|
|
|
|
} else if (mag > 2 * 8 && dotparsed) {
|
|
/* this is a full version and we have enough digits */
|
|
return ver;
|
|
|
|
} else if (i > 3 && type == -1) {
|
|
/* scan and look for signature characters for each type */
|
|
const char *curr = &tag[i - 1];
|
|
|
|
// dev: v1.4.0rc3-7-g7e282f57
|
|
// rc: v1.4.0rc4
|
|
// release: v1.4.0
|
|
|
|
while (curr > &tag[0]) {
|
|
if (*curr == 'v') {
|
|
type = FIRMWARE_TYPE_DEV;
|
|
break;
|
|
|
|
} else if (*curr == 'p') {
|
|
type = FIRMWARE_TYPE_ALPHA;
|
|
break;
|
|
|
|
} else if (*curr == 't') {
|
|
type = FIRMWARE_TYPE_BETA;
|
|
break;
|
|
|
|
} else if (*curr == 'r') {
|
|
type = FIRMWARE_TYPE_RC;
|
|
break;
|
|
}
|
|
|
|
curr--;
|
|
}
|
|
|
|
/* looks like a release */
|
|
if (type == -1) {
|
|
type = FIRMWARE_TYPE_RELEASE;
|
|
}
|
|
|
|
} else if (tag[i] != 'v') {
|
|
/* reset, because we don't have a full tag but
|
|
* are seeing non-numeric characters
|
|
*/
|
|
ver = 0;
|
|
mag = 0;
|
|
}
|
|
}
|
|
|
|
/* if git describe contains dashes this is not a real tag */
|
|
if (dashcount > 0) {
|
|
type = FIRMWARE_TYPE_DEV;
|
|
}
|
|
|
|
/* looks like a release */
|
|
if (type == -1) {
|
|
type = FIRMWARE_TYPE_RELEASE;
|
|
}
|
|
|
|
ver = (ver << 8);
|
|
|
|
return ver | type;
|
|
}
|
|
|
|
static void usage(const char *reason)
|
|
{
|
|
if (reason != NULL) {
|
|
printf("%s\n", reason);
|
|
}
|
|
|
|
printf("usage: ver {hw|hwcmp|git|bdate|gcc|all|mcu|uid|uri}\n\n");
|
|
}
|
|
|
|
__EXPORT int ver_main(int argc, char *argv[]);
|
|
|
|
int ver_main(int argc, char *argv[])
|
|
{
|
|
/* defaults to an error */
|
|
int ret = 1;
|
|
|
|
/* first check if there are at least 2 params */
|
|
if (argc >= 2) {
|
|
if (argv[1] != NULL) {
|
|
|
|
if (!strncmp(argv[1], sz_ver_hwcmp_str, sizeof(sz_ver_hwcmp_str))) {
|
|
if (argc >= 3 && argv[2] != NULL) {
|
|
/* compare 3rd parameter with px4_board_name() string, in case of match, return 0 */
|
|
const char *board_name = px4_board_name();
|
|
ret = strncmp(board_name, argv[2], strlen(board_name));
|
|
|
|
if (ret == 0) {
|
|
PX4_INFO("match: %s", board_name);
|
|
}
|
|
|
|
return ret;
|
|
|
|
} else {
|
|
warn("Not enough arguments, try 'ver hwcmp PX4FMU_V2'");
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
/* check if we want to show all */
|
|
bool show_all = !strncmp(argv[1], sz_ver_all_str, sizeof(sz_ver_all_str));
|
|
|
|
if (show_all || !strncmp(argv[1], sz_ver_hw_str, sizeof(sz_ver_hw_str))) {
|
|
printf("HW arch: %s\n", px4_board_name());
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
if (show_all || !strncmp(argv[1], sz_ver_git_str, sizeof(sz_ver_git_str))) {
|
|
printf("FW git-hash: %s\n", px4_git_version);
|
|
unsigned fwver = version_tag_to_number(px4_git_tag);
|
|
unsigned major = (fwver >> (8 * 3)) & 0xFF;
|
|
unsigned minor = (fwver >> (8 * 2)) & 0xFF;
|
|
unsigned patch = (fwver >> (8 * 1)) & 0xFF;
|
|
unsigned type = (fwver >> (8 * 0)) & 0xFF;
|
|
printf("FW version: %s (%u.%u.%u %u), %u\n", px4_git_tag, major, minor, patch,
|
|
type, fwver);
|
|
/* middleware is currently the same thing as firmware, so not printing yet */
|
|
printf("OS version: %s (%u)\n", os_git_tag, version_tag_to_number(os_git_tag));
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
if (show_all || !strncmp(argv[1], sz_ver_bdate_str, sizeof(sz_ver_bdate_str))) {
|
|
printf("Build datetime: %s %s\n", __DATE__, __TIME__);
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
if (show_all || !strncmp(argv[1], sz_ver_buri_str, sizeof(sz_ver_buri_str))) {
|
|
printf("Build uri: %s\n", FW_BUILD_URI);
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
|
|
if (show_all || !strncmp(argv[1], sz_ver_gcc_str, sizeof(sz_ver_gcc_str))) {
|
|
printf("Toolchain: %s\n", __VERSION__);
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
if (show_all || !strncmp(argv[1], mcu_ver_str, sizeof(mcu_ver_str))) {
|
|
|
|
char rev;
|
|
char *revstr;
|
|
|
|
int chip_version = mcu_version(&rev, &revstr);
|
|
|
|
if (chip_version < 0) {
|
|
printf("UNKNOWN MCU\n");
|
|
|
|
} else {
|
|
printf("MCU: %s, rev. %c\n", revstr, rev);
|
|
|
|
if (chip_version < MCU_REV_STM32F4_REV_3) {
|
|
printf("\nWARNING WARNING WARNING!\n"
|
|
"Revision %c has a silicon errata\n"
|
|
"This device can only utilize a maximum of 1MB flash safely!\n"
|
|
"https://pixhawk.org/help/errata\n\n", rev);
|
|
}
|
|
}
|
|
|
|
ret = 0;
|
|
}
|
|
|
|
if (show_all || !strncmp(argv[1], mcu_uid_str, sizeof(mcu_uid_str))) {
|
|
uint32_t uid[3];
|
|
|
|
mcu_unique_id(uid);
|
|
|
|
printf("UID: %X:%X:%X \n", uid[0], uid[1], uid[2]);
|
|
|
|
ret = 0;
|
|
}
|
|
|
|
|
|
if (ret == 1) {
|
|
warn("unknown command.\n");
|
|
return 1;
|
|
}
|
|
|
|
} else {
|
|
usage("Error, input parameter NULL.\n");
|
|
}
|
|
|
|
} else {
|
|
usage("Error, not enough parameters.");
|
|
}
|
|
|
|
return ret;
|
|
}
|