2013-01-17 1 views
3

안녕하세요, 최근에 코드에 몇 가지 특별한 코멘트가 있지만 doxygen 스타일이 아니라는 것을 알 수 있습니다. 아무도이 도구를 통해 어떤 종류의 주석을 추출 할 수 있습니까? 누군가가 내가 그것을 AutoDuck에 속한 생각이 :)어떤 도구가 이런 종류의 주석을 추출 할 수 있습니까?

+0

경우의 당신이 doxygen이 같은 질문을 태그 한 이유를 다음 Doxygen을하지? –

+0

아마 doxygen 사용자가이 도구에 대해 더 많이 알고 있다고 생각합니다. 적절하지 않으면 태그를 삭제할 수 있습니다. – shengy

+3

왜이 질문에 가까운 투표를합니까? 분명한 질문입니다. 어떤 도구가 이러한 종류의 주석을 해석 할 수 있는지 묻습니다. – shengy

답변

5

을 필요로하는 경우

/* 
@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. 
*/  

나는, 다운로드 링크 here를 발견했다. 도구의

확인 this manual (내가 훨씬 더 많은 정보를 찾을 수 없습니다 ...)

+0

다운로드 링크가 깨졌습니다 ...이 도구는 M $에서 일하는 사람이 작성한 것으로 보입니다. – shengy

+0

오 ... 나는 그들이 다운로드 링크를 확인하지 않았다 ... 잘하면 다른 다운로드를 사용할 수 있습니다! – Veger

+0

AutoDuck에 속한다는 사실을 아는 것만으로도 충분합니다 :) 대단히 감사합니다. 직접 다운로드 할 것입니다. – shengy

관련 문제