基于TJA1145的AUTOSAR CanNM的ECU休眠唤醒实际实现-实践篇
2026/5/22 23:26:01
doxygen-1.8.13-setup.exe
graphviz-2.38.msi
Graphviz软件是开源的图形可视化。可视化是图表的结构信息作为表示方式的抽象网络的示图和曲线图。有重要的应用在网络、生物信息学、软件工程、数据库、网页设计、机器学习、视觉界面中的其它技术领域。
htmlhelp1.3.exe
打开doxywizard.exe
项目文件:
Doxyfile.rar
/** * ... text ... *//*! * ... text ... */中间*可以省略
/*! ... text ... *//// /// ... text ... ///或
//! //!... text ... //!注意这种情况下需要一个单独的空行来结束注释。
/********************************************//** * ... text ***********************************************/(note the 2 slashes to end the normal comment block and start a special comment block).
///////////////////////////////////////////////// /// ... text ... /////////////////////////////////////////////////\brief/*! \brief Brief description. * Brief description continued. * * Detailed description starts here. *//** Brief description which ends at this dot. Details follow * here. */C++ comments:
/// Brief description which ends at this dot. Details follow /// here./// Brief description. /** Detailed description. */或
//! Brief description.
//! Detailed description