• 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

修訂9ee2b8cb79a539c3adf301822b090d20ca51d8aa (tree)
時間2018-03-03 18:37:54
作者takemasa <suikan@user...>
Commitertakemasa

Log Message

Update comment

Change Summary

差異

--- a/stm32_development/murasaki/murasaki/murasaki_config.hpp
+++ b/stm32_development/murasaki/murasaki/murasaki_config.hpp
@@ -88,7 +88,7 @@
8888 * To override the definition here, define same macro inside @ref platform_config.hpp.
8989 */
9090 #ifndef PLATFORM_CONFIG_DEBUG_TASK_PRIORITY
91-#define PLATFORM_CONFIG_DEBUG_TASK_PRIORITY (( configMAX_PRIORITIES-1 > 0 ) ? configMAX_PRIORITIES-2 : 0)
91+#define PLATFORM_CONFIG_DEBUG_TASK_PRIORITY (( configMAX_PRIORITIES-1 > 0 ) ? configMAX_PRIORITIES-1 : 0)
9292 #endif
9393
9494 // For assertion ******************************************************
--- a/stm32_development/murasaki/murasaki/murasaki_ug.hpp
+++ b/stm32_development/murasaki/murasaki/murasaki_ug.hpp
@@ -229,31 +229,31 @@
229229 * In addition to this, task stack of debugger realted tasks ( murasaki::DebuggerTxTask and murasaki::DebuggerAutoRePrintTask )
230230 * is defined by @ref PLATFORM_CONFIG_DEBUG_TASK_STACK_SIZE.
231231 *
232- * To avoid the heap allocation problem, it is better to have 8kB heap. The heap size can be changed by CubeMX :
233- *
232+ * To avoid the heap allocation problem, it is better to have more than 8kB heap. The heap size can be changed by CubeMX :
233+ * @code
234234 * Menu Bar => Project => Settings => Project
235- *
235+ * @endcode
236236 * \section sec_cm_2 Stack Size
237237 * In this section, Stack means the interrupt stack.
238238 *
239239 * The interrupt stack is used only when the interrupt is accepted. Then, it is basically small. In the other hand,
240240 * murasaki uses its assertion oftenly. Once assertion fails, a message is created by snprintf() function and
241- * tranmitted through FIFO. These operaiton consumes stack. And assertion can be happen also in the ISR context.
242- *
243- * The debugging in the ISR is not easy without assertion and printf. To make them possible, it is better to set
244- * the interrupt stack size bigger than 256Bytes. The heap size can be changed by CubeMX :
241+ * tranmitted through FIFO. These operaitons consume stack. And assertion can be happen also in the ISR context.
245242 *
243+ * The debugging in the ISR is not easy without assertion and printf. To make them always possible, it is better to set
244+ * the interrupt stack size bigger than 256 Bytes. The heap size can be changed by CubeMX :
245+ * @code
246246 * Menu Bar => Project => Settings => Project
247- *
247+ * @endcode
248248 * \section sec_cm_3 Task stack size of the default task
249249 * The daault task has very small stack ( 128 Bytes )
250250 *
251251 * This is not enough to use murasaki and its debugger output functionality. It should be increased at smallest 256 Bytes.
252252 *
253253 * It can be changed by CubeMX:
254- *
254+ * @code
255255 * Tab => Configuration => FreeRTOS => Tasks and Queues
256- *
256+ * @endcode
257257 */
258258 /**
259259 * \page murasaki_ug_usage Usage Introduction