mirror of https://github.com/rusefi/openblt.git
Refs #1152. Final changes before the next stable release.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@824 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
6249db7170
commit
b483c7f349
|
@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Host Library - Reference Manual"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# 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
|
# 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
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Bootloader - Reference Manual"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# 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
|
# 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
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
@ -896,7 +896,9 @@ EXCLUDE_PATTERNS = */lib/* \
|
||||||
*/Drivers/* \
|
*/Drivers/* \
|
||||||
*/Core/* \
|
*/Core/* \
|
||||||
*/Startup/* \
|
*/Startup/* \
|
||||||
*/Boot/usb*
|
*/startup/* \
|
||||||
|
*/Boot/usb* \
|
||||||
|
*/Boot/USB_DEVICE/*
|
||||||
|
|
||||||
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
|
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
|
||||||
# (namespaces, classes, functions, etc.) that should be excluded from the
|
# (namespaces, classes, functions, etc.) that should be excluded from the
|
||||||
|
|
|
@ -40,7 +40,7 @@ from setuptools import setup
|
||||||
# ***************************************************************************************
|
# ***************************************************************************************
|
||||||
setup ( \
|
setup ( \
|
||||||
name = 'openblt',
|
name = 'openblt',
|
||||||
version = '1.3.4',
|
version = '1.3.5',
|
||||||
description = 'Python wrapper for the OpenBLT host library (LibOpenBLT).',
|
description = 'Python wrapper for the OpenBLT host library (LibOpenBLT).',
|
||||||
long_description = open('README.rst', 'r').read(),
|
long_description = open('README.rst', 'r').read(),
|
||||||
author = 'Frank Voorburg',
|
author = 'Frank Voorburg',
|
||||||
|
|
|
@ -51,10 +51,10 @@
|
||||||
* for major-, minor-, and patch-version. Version 1.05.12 would for example be
|
* for major-, minor-, and patch-version. Version 1.05.12 would for example be
|
||||||
* 10512.
|
* 10512.
|
||||||
*/
|
*/
|
||||||
#define BLT_VERSION_NUMBER (10304u)
|
#define BLT_VERSION_NUMBER (10305u)
|
||||||
|
|
||||||
/** \brief The version number of the library as a null-terminated string. */
|
/** \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"
|
||||||
|
|
||||||
|
|
||||||
/****************************************************************************************
|
/****************************************************************************************
|
||||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
/**
|
/**
|
||||||
\defgroup Boot_ARMCM3_STM32F1_Olimexino_STM32_TrueStudio Bootloader
|
\defgroup Boot_ARMCM3_STM32F1_Olimexino_STM32_CubeIDE Bootloader
|
||||||
\brief Bootloader.
|
\brief Bootloader.
|
||||||
\ingroup ARMCM3_STM32F1_Olimexino_STM32_TrueStudio
|
\ingroup ARMCM3_STM32F1_Olimexino_STM32_CubeIDE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
\defgroup Prog_ARMCM3_STM32F1_Olimexino_STM32_TrueStudio User Program
|
\defgroup Prog_ARMCM3_STM32F1_Olimexino_STM32_CubeIDE User Program
|
||||||
\ingroup ARMCM3_STM32F1_Olimexino_STM32_TrueStudio
|
\ingroup ARMCM3_STM32F1_Olimexino_STM32_CubeIDE
|
||||||
\brief User Program.
|
\brief User Program.
|
||||||
\details The intention of the demo user program is two-fold. (1) To test the
|
\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
|
bootloader, you need some sort of firmware to see if you can perform a
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
/** \brief Main version number of the bootloader core. */
|
/** \brief Main version number of the bootloader core. */
|
||||||
#define BOOT_VERSION_CORE_MAIN (1u)
|
#define BOOT_VERSION_CORE_MAIN (1u)
|
||||||
/** \brief Minor version number of the bootloader core. */
|
/** \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. */
|
/** \brief Patch number of the bootloader core. */
|
||||||
#define BOOT_VERSION_CORE_PATCH (0u)
|
#define BOOT_VERSION_CORE_PATCH (0u)
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ https://www.feaser.com/openblt/doku.php?id=manual:design.
|
||||||
----------------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------------
|
||||||
C O P Y R I G H T
|
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
|
L I C E N S E
|
||||||
|
|
Loading…
Reference in New Issue