Add v1.3.1 to supported hardware revisions

This commit is contained in:
2021-10-24 21:58:52 +02:00
parent 22bb227bc7
commit 6b9b7d78a0
3 changed files with 8 additions and 0 deletions

View File

@@ -57,6 +57,7 @@ enum hw_revision {
HW_REV_ERROR = 1, /**< @brief The hardware revision could not be detected due to an internal error */
HW_REV_V1_2 = 120, /**< @brief Hardware Revision v1.2 */
HW_REV_V1_3 = 130, /**< @brief Hardware Revision v1.3 */
HW_REV_V1_3_1 = 131, /**< @brief Hardware revision v1.3.1 */
};
/**
@@ -70,6 +71,7 @@ enum hw_revision {
* The function returns the HW revision as an enum hw_revision.
* For v1.2 the return value is 120 (HW_REV_V1_2).
* For v1.3 the return value is 130 (HW_REV_V1_3).
* For v1.3.1 the return value is 131 (HW_REV_V1_3_1).
*
* Other return values are not defined yet.
*