-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct code formatting and indentation
- Loading branch information
Akram
authored and
Akram
committed
Jul 30, 2024
1 parent
089e186
commit 3771ed1
Showing
12 changed files
with
85 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
/** | ||
* @brief Board interface, which abstracts the physical board | ||
* @author Andreas Merkle <[email protected]> | ||
* | ||
* | ||
* @addtogroup HALInterfaces | ||
* | ||
* @{ | ||
|
@@ -71,7 +71,6 @@ | |
class IBoard | ||
{ | ||
public: | ||
|
||
/** | ||
* Destroys the board interface. | ||
*/ | ||
|
@@ -121,7 +120,7 @@ class IBoard | |
|
||
/** | ||
* Get encoders driver. | ||
* | ||
* | ||
* @return Encoders driver. | ||
*/ | ||
virtual IEncoders& getEncoders() = 0; | ||
|
@@ -163,7 +162,7 @@ class IBoard | |
|
||
/** | ||
* Get the settings. | ||
* | ||
* | ||
* @return Settings | ||
*/ | ||
virtual ISettings& getSettings() = 0; | ||
|
@@ -183,9 +182,8 @@ class IBoard | |
* Process actuators and sensors. | ||
*/ | ||
virtual void process() = 0; | ||
|
||
protected: | ||
|
||
protected: | ||
/** | ||
* Constructs the board interface. | ||
*/ | ||
|
@@ -194,7 +192,6 @@ class IBoard | |
} | ||
|
||
private: | ||
|
||
}; | ||
|
||
/****************************************************************************** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.