3

こんにちは、コードに特別なコメントが含まれていることを最近知りましたが、これは doxygen スタイルではありません。この種のコメントを抽出できるツールを教えてください。

/*
 @doc INTERNAL
 @func  ULONG | SerialDispatchThread | Main serial event dispatch thread code.
 *  This is the reading and dispatching thread. It gets the
 *  event associated with the logical interrupt dwIntID and calls
 *  hardware specific routines to determine whether it's a receive event
 *  or a transmit event. If it's a transmit event, it calls the HW tx handler.
 *  If it's a receive event, it calls for the number of characters and calls
 *  atomic GetByte() to extract characters and put them into the drivers
 *  buffer represented by pSerialHead->pTargetBuffer, managing waiting
 *  for events and checking to see if those signals correspond to reading.
 *  It relies on NK masking the interrupts while it does it's thing, calling
 *  InterruptDone() to unmask them for each of the above cases.
 *
 *  Not exported to users.
 *
 @rdesc This thread technically returns a status, but in practice, doesn't return
 *   while the device is open.
 */       

誰かがこれを必要とする場合は、ここにダウンロードリンクを見つけました:)

4

1 に答える 1

5

AutoDuckに属していると思います。

ツールのこのマニュアルを確認してください(これ以上の情報は見つかりませんでした...)

于 2013-01-17T05:44:56.090 に答える