diff --git a/Doc/doxygen/DoxyfileOpenBLT b/Doc/doxygen/DoxyfileOpenBLT index 629476e6..7cffbcaa 100644 --- a/Doc/doxygen/DoxyfileOpenBLT +++ b/Doc/doxygen/DoxyfileOpenBLT @@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Bootloader - Reference Manual" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.4.0 +PROJECT_NUMBER = 1.4.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Host/BootCommander.exe b/Host/BootCommander.exe index 61df9303..7e5f131b 100644 Binary files a/Host/BootCommander.exe and b/Host/BootCommander.exe differ diff --git a/Host/Source/BootCommander/main.c b/Host/Source/BootCommander/main.c index a5891c06..2f4c71e9 100644 --- a/Host/Source/BootCommander/main.c +++ b/Host/Source/BootCommander/main.c @@ -712,12 +712,11 @@ static void ExtractProgramSettingsFromCommandLine(int argc, char const * const a assert(argv != NULL); assert(programSettings != NULL); - /* Set default program settings. */ - programSettings->silentMode = false; - /* Only continue if parameters are valid. */ if ( (argv != NULL) && (programSettings != NULL) ) /*lint !e774 */ { + /* Set default program settings. */ + programSettings->silentMode = false; /* Loop through all the command line parameters, just skip the 1st one because * this is the name of the program, which we are not interested in. */ diff --git a/Host/libopenblt.dll b/Host/libopenblt.dll index 8d0796f0..b85a6b51 100644 Binary files a/Host/libopenblt.dll and b/Host/libopenblt.dll differ diff --git a/Target/Source/boot.h b/Target/Source/boot.h index 357f11a3..a9573967 100644 --- a/Target/Source/boot.h +++ b/Target/Source/boot.h @@ -36,7 +36,7 @@ /** \brief Minor version number of the bootloader core. */ #define BOOT_VERSION_CORE_MINOR (4u) /** \brief Patch number of the bootloader core. */ -#define BOOT_VERSION_CORE_BUILD (0u) +#define BOOT_VERSION_CORE_BUILD (1u) /****************************************************************************************