1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
4<meta http-equiv="Content-Style-Type" content="text/css">
5<title>Using the Debugger</title>
6<style type="text/css">
7<!--
8body {
9/*
10    font-size       : 10pt;
11*/
12    font-weight     : normal;
13    color           : #000000;
14    margin          : 8px;
15}
16
17div {
18    width           : 98%;
19    white-space     : nowrap;
20}
21
22div.title {
23    text-align      : left;
24    font-weight     : bold;
25/*
26    font-size       : 16pt;
27*/
28    font-size       : 150%;
29    color           : #202020;
30    border-style    : double;
31    border-width    : 8px;
32    /* タイトルを囲む枠線の色を指定 */
33    border-color    : #CD202C;
34
35    /* RVLプラットフォーム系列 */
36/*
37    border-color    : #34beed;
38*/
39
40    /* TWLプラットフォーム系列 */
41/*
42    border-color    : #ff458f;
43*/
44
45    margin          : 4px;
46    padding         : 4px;
47}
48H1 {
49  font-size		: 150%;
50  font-family		: Arial;
51  border-bottom-width	: 5px;
52  border-bottom-style	: solid;
53  border-bottom-color	: #CD202C;
54  padding-bottom		: 1px;
55  margin-bottom		: 20px;
56  letter-spacing		: normal;
57  font-weight		: bold;
58}
59
60h2 {
61    font-weight     : bold;
62/*
63    font-size       : 16pt;
64*/
65    font-size       : 150%;
66    border-style    : none none solid double;
67    border-width    : 0px 0px 2px 8px;
68    /* 見出しの線の色を指定 */
69    border-color    : #CD202C;
70
71    /* RVLプラットフォーム系列 */
72/*
73    border-color    : #34beed;
74*/
75
76    /* TWLプラットフォーム系列 */
77/*
78    border-color    : #ff458f;
79*/
80
81    margin-left     : 2px;
82    padding-left    : 4px;
83}
84
85table {
86  margin-top        : 2pt;
87  margin-bottom     : 2pt;
88  margin-left       : 0pt;
89  margin-right      : 0pt;
90  padding-left      : 0pt;
91  padding-right     : 0pt;
92  position          : relative;
93  left              : 12px;
94  font-family       : Arial;
95  font-size         : 10pt;
96  border-style      : none none none none;
97}
98td,th {
99  padding           : 2pt;
100  border-width      : 2pt;
101  border-style      : none none none none;
102  font-style        : normal;
103  text-align        : left;
104}
105td {
106  background        : #e8f4f4;
107  font-weight       : normal;
108}
109th {
110  background        : #c0d8d8;
111  font-weight       : bold;
112}
113
114p {
115    margin-left     : 4px;
116}
117p.code {
118  font-family		: "Courier New", monospace;
119  position		: normal;
120  left			: 12px;
121  font-size		: 10pt;
122  background            : #e8f4f4;
123}
124
125-->
126</style>
127
128</head>
129<body>
130<a name="top"></a>
131
132
133<h1>Using the Debugger
134</h1>
135
136<!-- <h2>目次</h2>     <ol>         <li><a href="#ss01">概要</a></li>         <li><a href="#ss02">使用方法</a></li>         <li><a href="#ss03">注意</a></li>         <li><a href="#ss04">変更履歴</a></li>     </ol> -->
137
138<h2>1. <a name="ss01">Overview</a></h2>
139<p>This section gathers information to note when using <CODE>PARTNER-CTR Debugger</CODE>.<BR><BR> See the manual supplied with PARTNER, the <I>CTR Overview</I>, and the <I>CTR Development Environment Startup Guide</I> for information specific to using <CODE>PARTNER-CTR Debugger</CODE>.
140    </p>
141
142<div align="right"><a href="#top">Back to top</a></div>
143
144
145
146<h2>2. <a name="ss02">Menus</a></h2>
147<p>The usage of the debugger differs between the development menu and HOME Menu. See the <a href="../DevHomeMenu/AboutTestMenu.html">Dev Menu</a> and <a href ="../DevHomeMenu/HomeMenu.html#debugger">HOME Menu</a> pages for details.
148    </p>
149
150<div align="right"><a href="#top">Back to top</a></div>
151
152
153<h2>3. <a name="ss03">Sending Log Output to Debug Window</a></h2>
154<p>Processing log output is a time-consuming operation. Consequently, using a log-output function will significantly impact how fast the application runs.<br /> To minimize this impact, the OS buffers strings that are output to the log, and outputs them when utilization of the system core is low.<br /> However, frequent log output for a prolonged period of time can cause the output to exceed the buffer's capacity.<br /> If this happens, the system will force the output to the log. Be aware that this will increase the execution time of the log-output function, which will in turn increase the impact on the running speed of the application. When the buffer capacity is exceeded, the &quot;___&quot; string is output to the debug window. <br />
155    </p>
156
157<div align="right"><a href="#top">Back to top</a></div>
158
159
160
161<h2>4. <a name="ss04">Revision History</a></h2>
162    <dl>
163        <dt>2011/10/27</dt>
164<dd>Initial version.
165        </dd>
166    </dl>
167    <p>
168    <br />
169    </p>
170
171<div align="right"><a href="#top">Back to top</a></div>
172
173
174<hr><p>CONFIDENTIAL</p></body>
175</html>