It seems like sublime does not tolerate this form of declaration:
- Code: Select all
/**
* @brief Specific information on a cycle runnable.
*/
typedef struct RunnableCycle
{
U16 id; /*!< Cycle identifier. */
}
RunnableCycle;
As seen here:

Whereas this other form works:
- Code: Select all
/**
* @brief Specific information on a cycle runnable.
*/
typedef struct RunnableCycle
{
U16 id; /*!< Cycle identifier. */
} RunnableCycle;

Or maybe there is an option to change that behavior ?
Thx
Alex