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.
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