server if the delay exceeds 50ms. Retry again after the next
broadcast packet.
* [Bug 3036] autokey trips an INSIST in authistrustedip(). Harlan Stenn.
+* [Bug 3047] Fix refclock_jjy C-DEX JST2000. abe@ntp.org
+ - Patch provided by Kuramatsu.
* Document ntp.key's optional IP list in authenetic.html. Harlan Stenn.
* Update html/xleave.html documentation. Harlan Stenn.
* Update ntp.conf documentation. Harlan Stenn.
<body>
<h3>JJY Receivers</h3>
<p>Last update:
- <!-- #BeginDate format:En2m -->15-May-2015 00:00<!-- #EndDate -->
+ <!-- #BeginDate format:En2m -->08-May-2016 00:00<!-- #EndDate -->
UTC <a href="driver40.html">ENGLISH(英語)</a> <a href="driver40-ja.html">JAPANESE(日本語)</a></p>
<hr>
<h4>Synopsis</h4>
<tr>
<td><code>{ENQ}1J{ETX}</code></td>
<td> --> </td>
- <td><code>{STX}JYYMMDD HHMMSSS{ETX}</code></td>
+ <td><code>{STX}JYYMMDDWHHMMSSS{ETX}</code></td>
</tr>
</table>
<br>
<body>
<h3>JJY Receivers</h3>
<p>Last update:
- <!-- #BeginDate format:En2m -->15-May-2015 00:00<!-- #EndDate -->
+ <!-- #BeginDate format:En2m -->08-May-2016 00:00<!-- #EndDate -->
UTC <a href="driver40.html">ENGLISH</a> <a href="driver40-ja.html">JAPANESE</a></p>
<hr>
<h4>Synopsis</h4>
<tr>
<td><code>{ENQ}1J{ETX}</code></td>
<td> --> </td>
- <td><code>{STX}JYYMMDD HHMMSSS{ETX}</code></td>
+ <td><code>{STX}JYYMMDDWHHMMSSS{ETX}</code></td>
</tr>
</table>
<br>
/* 2015/05/15 */
/* [Add] Support the SEIKO TIME SYSTEMS TDC-300 */
/* */
+/* 2015/05/08 */
+/* [Fix] C-DEX JST2000 */
+/* Thanks to Mr. Kuramatsu for the report and the patch. */
+/* */
/**********************************************************************/
#ifdef HAVE_CONFIG_H
return JJY_RECEIVE_ERROR ;
}
- /* JYYMMDD HHMMSSS */
+ /* JYYMMDDWHHMMSSS */
- rc = sscanf ( pBuf, "J%2d%2d%2d %2d%2d%2d%1d",
+ rc = sscanf ( pBuf, "J%2d%2d%2d%*1d%2d%2d%2d%1d",
&up->year, &up->month, &up->day,
&up->hour, &up->minute, &up->second,
&up->msecond ) ;