Fixed documentation of U32 (Swapped signed and unsigned int) (#2559)

This commit is contained in:
tsha-256 2024-03-04 22:27:41 -05:00 committed by GitHub
parent ac94099fda
commit c830a41c85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,8 +33,8 @@ typedef uint16_t U16; //!< 16-bit unsigned integer
#endif
#if FW_HAS_32_BIT
typedef uint32_t U32; //!< 32-bit signed integer
typedef int32_t I32; //!< 32-bit unsigned integer
typedef int32_t I32; //!< 32-bit signed integer
typedef uint32_t U32; //!< 32-bit unsigned integer
#endif
#if FW_HAS_64_BIT