diff --git a/README.md b/README.md index 9b21e6a..fd93781 100644 --- a/README.md +++ b/README.md @@ -266,17 +266,17 @@ In addition to the two extension classes this library also includes a mechanism #### macros.h Contains macros used in `sinqMotor` and derived drivers: -**HIDDEN** +- **HIDDEN** -By default, the symbols of classes and functions are hidden to avoid symbol clashes when loading -multiple shared libraries which use `sinqMotor`. In order to compile this library with exported -symbols, specifiy `-DHIDDEN= ` as a compiler flag (if using the given Makefile, this -needs to be added to the `USR_CFLAGS`). + By default, the symbols of classes and functions are hidden to avoid symbol clashes when loading + multiple shared libraries which use `sinqMotor`. In order to compile this library with exported + symbols, specifiy `-DHIDDEN= ` as a compiler flag (if using the given Makefile, this + needs to be added to the `USR_CFLAGS`). -Derived libraries can use the same mechanism via the macro `HIDDEN` (defined in `macros.h`): -``` -class HIDDEN turboPmacController : public sinqController -``` + Derived libraries can use the same mechanism via the macro `HIDDEN` (defined in `macros.h`): + ``` + class HIDDEN turboPmacController : public sinqController + ``` ### Versioning