boards: update id string from V5X{0-a}{0-a} to V5X{xxxx}{xxxx}

boards: new format for hwtypecmp string
boards: update manifest.c to follow the new hw_ver_rev format
This commit is contained in:
Igor Mišić
2022-06-20 13:13:48 +02:00
committed by Beat Küng
parent 49d63958a8
commit ec1614d156
29 changed files with 159 additions and 150 deletions
@@ -262,7 +262,7 @@
#if defined(BOARD_HAS_HW_VERSIONING)
# define BOARD_HAS_VERSIONING 1
# define HW_VER_REV(v,r) ((uint32_t)((v) & 0xff) << 8) | ((uint32_t)(r) & 0xff)
# define HW_VER_REV(v,r) ((uint32_t)((v) & 0xffff) << 16) | ((uint32_t)(r) & 0xffff)
#endif
/* Default LED logical to color mapping */