diff --git a/Doc/doxygen/DoxyfileLibOpenBLT b/Doc/doxygen/DoxyfileLibOpenBLT index a4d6ed31..bf76321c 100644 --- a/Doc/doxygen/DoxyfileLibOpenBLT +++ b/Doc/doxygen/DoxyfileLibOpenBLT @@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Host Library - Reference Manual" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.3.4 +PROJECT_NUMBER = 1.3.5 # 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/Doc/doxygen/DoxyfileOpenBLT b/Doc/doxygen/DoxyfileOpenBLT index f717896b..b6e1d0ba 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.10.0 +PROJECT_NUMBER = 1.11.0 # 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 @@ -896,7 +896,9 @@ EXCLUDE_PATTERNS = */lib/* \ */Drivers/* \ */Core/* \ */Startup/* \ - */Boot/usb* + */startup/* \ + */Boot/usb* \ + */Boot/USB_DEVICE/* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the diff --git a/Host/Source/LibOpenBLT/bindings/python/setup.py b/Host/Source/LibOpenBLT/bindings/python/setup.py index 6123873f..b6bff3c9 100644 --- a/Host/Source/LibOpenBLT/bindings/python/setup.py +++ b/Host/Source/LibOpenBLT/bindings/python/setup.py @@ -40,7 +40,7 @@ from setuptools import setup # *************************************************************************************** setup ( \ name = 'openblt', - version = '1.3.4', + version = '1.3.5', description = 'Python wrapper for the OpenBLT host library (LibOpenBLT).', long_description = open('README.rst', 'r').read(), author = 'Frank Voorburg', diff --git a/Host/Source/LibOpenBLT/openblt.c b/Host/Source/LibOpenBLT/openblt.c index dc6c9ea8..98e8c871 100644 --- a/Host/Source/LibOpenBLT/openblt.c +++ b/Host/Source/LibOpenBLT/openblt.c @@ -51,10 +51,10 @@ * for major-, minor-, and patch-version. Version 1.05.12 would for example be * 10512. */ -#define BLT_VERSION_NUMBER (10304u) +#define BLT_VERSION_NUMBER (10305u) /** \brief The version number of the library as a null-terminated string. */ -#define BLT_VERSION_STRING "1.03.04" +#define BLT_VERSION_STRING "1.03.05" /**************************************************************************************** diff --git a/Host/libopenblt.dll b/Host/libopenblt.dll index fe432303..d50fbd80 100644 Binary files a/Host/libopenblt.dll and b/Host/libopenblt.dll differ diff --git a/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Boot/boot.dox b/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Boot/boot.dox index ed4e35c0..5997b0c7 100644 --- a/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Boot/boot.dox +++ b/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Boot/boot.dox @@ -1,7 +1,7 @@ /** -\defgroup Boot_ARMCM3_STM32F1_Olimexino_STM32_TrueStudio Bootloader +\defgroup Boot_ARMCM3_STM32F1_Olimexino_STM32_CubeIDE Bootloader \brief Bootloader. -\ingroup ARMCM3_STM32F1_Olimexino_STM32_TrueStudio +\ingroup ARMCM3_STM32F1_Olimexino_STM32_CubeIDE */ diff --git a/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Prog/prog.dox b/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Prog/prog.dox index e2c3fe26..9df81641 100644 --- a/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Prog/prog.dox +++ b/Target/Demo/ARMCM3_STM32F1_Olimexino_STM32_CubeIDE/Prog/prog.dox @@ -1,6 +1,6 @@ /** -\defgroup Prog_ARMCM3_STM32F1_Olimexino_STM32_TrueStudio User Program -\ingroup ARMCM3_STM32F1_Olimexino_STM32_TrueStudio +\defgroup Prog_ARMCM3_STM32F1_Olimexino_STM32_CubeIDE User Program +\ingroup ARMCM3_STM32F1_Olimexino_STM32_CubeIDE \brief User Program. \details The intention of the demo user program is two-fold. (1) To test the bootloader, you need some sort of firmware to see if you can perform a diff --git a/Target/Source/boot.h b/Target/Source/boot.h index d954e1a4..0f6411b8 100644 --- a/Target/Source/boot.h +++ b/Target/Source/boot.h @@ -34,7 +34,7 @@ /** \brief Main version number of the bootloader core. */ #define BOOT_VERSION_CORE_MAIN (1u) /** \brief Minor version number of the bootloader core. */ -#define BOOT_VERSION_CORE_MINOR (10u) +#define BOOT_VERSION_CORE_MINOR (11u) /** \brief Patch number of the bootloader core. */ #define BOOT_VERSION_CORE_PATCH (0u) diff --git a/Target/Source/readme.dox b/Target/Source/readme.dox index 00eea70e..1c634f2c 100644 --- a/Target/Source/readme.dox +++ b/Target/Source/readme.dox @@ -28,7 +28,7 @@ https://www.feaser.com/openblt/doku.php?id=manual:design. ---------------------------------------------------------------------------------------- C O P Y R I G H T ---------------------------------------------------------------------------------------- - Copyright (c) by Feaser 2011-2020 http://www.feaser.com All rights reserved + Copyright (c) by Feaser 2011-2021 http://www.feaser.com All rights reserved ---------------------------------------------------------------------------------------- L I C E N S E