• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

テスト用のあれこれ共用フォルダ


Commit MetaInfo

修訂2c7dc26c5ddca343cdf11a9089275431c5c05113 (tree)
時間2018-02-18 17:13:06
作者takemasa <suikan@user...>
Commitertakemasa

Log Message

Fixed doxygen comment bug. Wrong ref to platfrom_config.hpp

Change Summary

差異

--- a/stm32_development/murasaki/murasaki/murasaki_config.hpp
+++ b/stm32_development/murasaki/murasaki/murasaki_config.hpp
@@ -32,7 +32,7 @@
3232 *
3333 * If the class is instantiated on the stack, the buffer will be reserved in the stack.
3434 *
35- * To override the definition here, define same macro inside @ref platform_config.cpp.
35+ * To override the definition here, define same macro inside @ref platform_config.hpp.
3636 */
3737 #ifndef PLATFORM_CONFIG_DEBUG_LINE_SIZE
3838 #define PLATFORM_CONFIG_DEBUG_LINE_SIZE 256
@@ -44,7 +44,7 @@
4444 * \details
4545 * The circular buffer array length to copy the formatted strings before transmitting through the uart.
4646 *
47- * To override the definition here, define same macro inside @ref platform_config.cpp.
47+ * To override the definition here, define same macro inside @ref platform_config.hpp.
4848 */
4949 #ifndef PLATFORM_CONFIG_DEBUG_BUFFER_SIZE
5050 #define PLATFORM_CONFIG_DEBUG_BUFFER_SIZE 4096
@@ -56,7 +56,7 @@
5656 * \details
5757 * By default, there is no timeout. Wait for eternally.
5858 *
59- * To override the definition here, define same macro inside @ref platform_config.cpp.
59+ * To override the definition here, define same macro inside @ref platform_config.hpp.
6060 */
6161 #ifndef PLATFORM_CONFIG_DEBUG_SERIAL_TIMEOUT
6262 #define PLATFORM_CONFIG_DEBUG_SERIAL_TIMEOUT (murasaki::kwmsIndefinitely)
@@ -69,7 +69,7 @@
6969 * \details
7070 * The murasaki::Debug class has internal task to handle its FIFO buffer.
7171 *
72- * To override the definition here, define same macro inside @ref platform_config.cpp.
72+ * To override the definition here, define same macro inside @ref platform_config.hpp.
7373 */
7474 #ifndef PLATFORM_CONFIG_DEBUG_TASK_STACK_SIZE
7575 #define PLATFORM_CONFIG_DEBUG_TASK_STACK_SIZE 256
@@ -85,7 +85,7 @@
8585 * the debug taks have to have relatively high priority. In other hand, to yield the CPU to the
8686 * critical tasks, it's priority have to be smaller than the max priority.
8787 *
88- * To override the definition here, define same macro inside @ref platform_config.cpp.
88+ * To override the definition here, define same macro inside @ref platform_config.hpp.
8989 */
9090 #ifndef PLATFORM_CONFIG_DEBUG_TASK_PRIORITY
9191 #define PLATFORM_CONFIG_DEBUG_TASK_PRIORITY (( configMAX_PRIORITIES-2 > 0 ) ? configMAX_PRIORITIES-2 : 0)
@@ -100,7 +100,7 @@
100100 *
101101 * To change the default definition, define this macro at \ref platform_config.hpp.
102102 *
103- * To override the definition here, define same macro inside @ref platform_config.cpp.
103+ * To override the definition here, define same macro inside @ref platform_config.hpp.
104104 */
105105 #ifndef MURASAKI_CONFIG_NODEBUG
106106 #define MURASAKI_CONFIG_NODEBUG false