You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suggest that this be fixed in backwards compatible way on next minor patch and then the backwards compatibility be removed at next major patch.
Example of suggestion
// in mupgrade.h/** * @brief enumerated list OF MDF event id*/
#defineMDF_EVENT_MUPGRADE_STARTED (MDF_EVENT_MUPGRADE_BASE + 1) /**< The device starts to upgrade */
#defineMDF_EVENT_MUPGRADE_STATUS (MDF_EVENT_MUPGRADE_BASE + 2) /**< Proactively report progress */
#defineMDF_EVENT_MUPGRADE_FINISH (MDF_EVENT_MUPGRADE_BASE + 3) /**< The upgrade is complete and the new firmware will run after the reboot */
#defineMDF_EVENT_MUPGRADE_STOPPED (MDF_EVENT_MUPGRADE_BASE + 4) /**< Stop upgrading *//** Backwards compatible spelling correction. TODO remove at next major version */
#defineMDF_EVENT_MUPGRADE_STOPED MDF_EVENT_MUPGRADE_STOPPED
#defineMDF_EVENT_MUPGRADE_FIRMWARE_DOWNLOAD (MDF_EVENT_MUPGRADE_BASE + 5) /**< Start firmware write flash */
#defineMDF_EVENT_MUPGRADE_SEND_FINISH (MDF_EVENT_MUPGRADE_BASE + 6) /**< Send the firmware to other devices to complete */
The text was updated successfully, but these errors were encountered:
The word
Stopped
is misspelled throughout. Incorrect spelling isStoped
Suggest that this be fixed in backwards compatible way on next minor patch and then the backwards compatibility be removed at next major patch.
Example of suggestion
The text was updated successfully, but these errors were encountered: