Hello ,
I am using Code Composer Studio with TM4C123GH6PM micro controller , and I need to generate an auto comment template for files , types, function .. etc
How can I do this ?
I tried Eclox plugin
and also tried code style CCS configuration
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello ,
I am using Code Composer Studio with TM4C123GH6PM micro controller , and I need to generate an auto comment template for files , types, function .. etc
How can I do this ?
I tried Eclox plugin
and also tried code style CCS configuration
I did this, but I want to generate something like this
@name
@breif
@param
@return
@note
Well, I have function
u_int32 crc32_calc( u_int8 *data, // pointer to the first byte of data u_int32 data_len, // length of the data in bytes u_int32 crc // initial value of linear feedback shift register (LFSR). // If CRC calculation processes partly, then 'lfsr_init' must be // equal to CRC calculated on previous stage. For instance: // crc = crc32_calc(data, 2, crc_init); // crc = crc32_calc(data+2, 4, crc); // crc = crc32_calc(data+6, 1, crc); )
If I type /** then Return I get template like follows
/** * * @param data * @param data_len * @param crc * @return */
Well, it has no name and brief tags, though all parameters gets listed. That's probably a question to Eclox developers how to setup template contents.
We won't be much help on this from TI. The only thing I could find was the screen capture below that shows some options for controlling some of the settings. Looking at their github repot it has been a while since the last Eclox release but there does seem to be some activity in the issues area.
https://github.com/anb0s/eclox/issues