terjeio / Trinamic-library

Plain C library for Trinamic TMC2130 stepper drivers
Other
53 stars 21 forks source link

Change enum identifiers for C++ compatibility #9

Open jjw2202 opened 5 months ago

jjw2202 commented 5 months ago

Hi, I use the library for a C++ project. When compiling I get an error because the identifier of the enum (tmcXXXX_regaddr_t) is the same as the name of the type in the line directly before it.

In C the identifier of an enum is irrelevant (except for clarity), but in C++ it is relevant. By changing the identifier, it is also possible to use the library with a C++ compiler. Despite the change, it is still clear that these are the addresses and that they are used with the type tmcXXXX_regaddr_t.

Since the affected files are header files, it is not possible to specifically compile the affected file with a C compiler.

jjw2202