From 8689c79f19a5a7b3522868d8bf353f8a1ceb41ea Mon Sep 17 00:00:00 2001 From: smathis Date: Tue, 12 Aug 2025 09:10:00 +0200 Subject: [PATCH] Adjusted formatting --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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