Refs #379. Updated version number in preparation for new release.

git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@356 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
Frank Voorburg 2017-08-25 09:06:15 +00:00
parent 55d38167ee
commit 0f86589794
5 changed files with 4 additions and 5 deletions

View File

@ -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

Binary file not shown.

View File

@ -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.
*/

Binary file not shown.

View File

@ -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)
/****************************************************************************************