テスト用のあれこれ共用フォルダ
Revision | 2d3400804ecb021e6332a8097b987a4ac4cd25fd (tree) |
---|---|
Time | 2019-01-28 17:39:07 |
Author | takemasa <suikan@user...> |
Commiter | takemasa |
Update doxygen comment : User's guide
@@ -107,6 +107,9 @@ | ||
107 | 107 | * As a result, the wrong context, wrong parameter, etc will be reported to the debugger output. |
108 | 108 | * |
109 | 109 | * \section sec7_5 System Logging |
110 | + * \ref MURASAKI_SYSLOG provides the message output based on the level and filtering. | |
111 | + * This mechanism is intended to help the Murasaki library development. But also application | |
112 | + * can use this mechanism. | |
110 | 113 | * |
111 | 114 | * \section sec8 Configurable |
112 | 115 | * Murasaki is configurable from the two point of view. |
@@ -134,14 +137,17 @@ | ||
134 | 137 | * \details |
135 | 138 | * |
136 | 139 | * \li <a href="http://www.st.com/en/evaluation-tools/nucleo-f746zg.html">Nucleo F746ZG ( STM32F746ZG )</a> |
137 | - * \li <a href="http://www.st.com/content/st_com/en/products/development-tools/software-development-tools/stm32-software-development-tools/stm32-configurators-and-code-generators/stm32cubemx.html">STM32CubeMX 4.22.1</a> | |
138 | - * \li <a href="http://www.st.com/content/st_com/en/products/development-tools/software-development-tools/stm32-software-development-tools/stm32-ides/sw4stm32.html">SW4STM32 1.15.0.201708311556 ( with eclipse 4.6.3 )</a> | |
140 | + * \li <a href="http://www.st.com/content/st_com/en/products/development-tools/software-development-tools/stm32-software-development-tools/stm32-configurators-and-code-generators/stm32cubemx.html">STM32CubeMX 5.0</a> | |
141 | + * \li <a href="http://www.st.com/content/st_com/en/products/development-tools/software-development-tools/stm32-software-development-tools/stm32-ides/sw4stm32.html">SW4STM32 1.16.0.201807130628 ( with eclipse 4.6.3 )</a> | |
139 | 142 | * \li <a href="http://releases.ubuntu.com/16.04/">Ubuntu 16.04.03 (64bit)</a> |
140 | 143 | * |
141 | 144 | * And then, confirmed portability with following boards : |
142 | 145 | * \li <a href="http://www.st.com/en/evaluation-tools/nucleo-f746zg.html">Nucleo F746ZG ( STM32F746ZG : Cortex-M7 )</a> |
146 | + * \li <a href="http://www.st.com/en/evaluation-tools/nucleo-f722ze.html">Nucleo F722ZE ( STM32F722ZE : Cortex-M7 )</a>, | |
143 | 147 | * \li <a href="http://www.st.com/en/evaluation-tools/nucleo-f303k8.html">Nucleo F303K8 ( STM32F303K8 : Cortex-M4 )</a> |
144 | 148 | * \li <a href="http://www.st.com/en/evaluation-tools/nucleo-l152re.html">Nucleo L152RE ( STM32L152RE : Cortex-M3 )</a> |
149 | + * \li <a href="http://www.st.com/en/evaluation-tools/nucleo-f091rc.html">Nucleo F091RC ( STM32F091RC : Cortex-M0 )</a> | |
150 | + * | |
145 | 151 | */ |
146 | 152 | |
147 | 153 |
@@ -30,7 +30,8 @@ | ||
30 | 30 | * |
31 | 31 | * There are some other manuals of murasaki class library : |
32 | 32 | * |
33 | - * \li \ref murasaki_ug | |
33 | + * \li \ref murasaki_ug_preface | |
34 | + * \li \ref murasaki_ug_usage | |
34 | 35 | * \li \ref MURASAKI_GROUP |
35 | 36 | * |
36 | 37 | */ |
@@ -106,11 +107,10 @@ | ||
106 | 107 | * This file has variables / functions which user needs to program at porting time. |
107 | 108 | * @li @ref murasaki::platform variable |
108 | 109 | * @li @ref murasaki::debugger variable |
109 | - * @li \ref InitPlatform() | |
110 | - * \li \ref ExecPlatform() | |
111 | - * \li Interrupt routing functions | |
112 | - * \li HAL assertion function | |
113 | - * \li Custome default exception handler | |
110 | + * @li \ref InitPlatform() to initialize the platfrom variable | |
111 | + * \li \ref ExecPlatform() to execute the platform algorithm | |
112 | + * \li \link murasaki_pg_interrupt Interrupt routing functions \endlink | |
113 | + * \li \link murasaki_pg_error HAL assertion function and Custome default exception handler \endlink | |
114 | 114 | * |
115 | 115 | * @section sec_ds_6 murasaki_platform.hpp |
116 | 116 | * A header file of the @ref murasaki_platform.cpp |