Book a Demo

Author Topic: How to change style of comments in code generation  (Read 2340 times)

Inok

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
How to change style of comments in code generation
« on: April 21, 2015, 06:32:56 pm »
Hi

When I generate a C code I get the comment in this form

enum MyEnumType_t
{
    ENUM1,
    /**
    * comment for ENUM 1
    */
    ENUM2,
    /**
    * comment for ENUM 2
    */    
    ...
  
  
Is is possible to change the comment in this doxygen style?

enum MyEnumType_t
{
    ENUM1, ///< comment for ENUM 1
    ENUM2, ///< comment for ENUM 2
    ...  
  
I am using EA 9.2.922  

  
Thanks!