... | @@ -75,7 +75,7 @@ Split functions in multiple ones to improve readability of the code |
... | @@ -75,7 +75,7 @@ Split functions in multiple ones to improve readability of the code |
|
Example: `float readTemperatureSample()`
|
|
Example: `float readTemperatureSample()`
|
|
Exception: Acronyms in function names will be UPPERCASE. Example: `bool selfTestIMU()`
|
|
Exception: Acronyms in function names will be UPPERCASE. Example: `bool selfTestIMU()`
|
|
- **Classes, structs and enums will be named using CamelCaseNotation**
|
|
- **Classes, structs and enums will be named using CamelCaseNotation**
|
|
Example: `class TemperatureSensor{};`
|
|
Example: `class TemperatureSensor {...}`
|
|
Exception: As for functions, acronyms in class names will be UPPERCASE. Example: `class FSM {...}`
|
|
Exception: As for functions, acronyms in class names will be UPPERCASE. Example: `class FSM {...}`
|
|
- **Constants and enum members will be named using ALL_CAPS_WITH_UNDERSCORES**
|
|
- **Constants and enum members will be named using ALL_CAPS_WITH_UNDERSCORES**
|
|
Example 1: `float TEMPERATURE_SAMPLE;`
|
|
Example 1: `float TEMPERATURE_SAMPLE;`
|
... | | ... | |