... | @@ -76,6 +76,7 @@ Example: `float readTemperatureSample()` |
... | @@ -76,6 +76,7 @@ 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 {...}`
|
|
- **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;`
|
|
Example 2:
|
|
Example 2:
|
... | | ... | |