Fix minor typos in error header (#2594) (#2594)

This commit is contained in:
andygpz11 2025-07-25 14:38:06 +01:00 committed by GitHub
parent 59d2b0228b
commit 50b4a22ccd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,9 +42,9 @@ enum pico_error_codes {
PICO_ERROR_UNSUPPORTED_MODIFICATION = -18, ///< Write is impossible based on previous writes; e.g. attempted to clear an OTP bit
PICO_ERROR_LOCK_REQUIRED = -19, ///< A required lock is not owned
PICO_ERROR_VERSION_MISMATCH = -20, ///< A version mismatch occurred (e.g. trying to run PIO version 1 code on RP2040)
PICO_ERROR_RESOURCE_IN_USE = -21 ///< The call could not proceed because requires resourcesw were unavailable
PICO_ERROR_RESOURCE_IN_USE = -21 ///< The call could not proceed because the required resources were unavailable
};
#endif // !__ASSEMBLER__
#endif
#endif