Documenting private members
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
1
Doxyfile
1
Doxyfile
@ -1,6 +1,7 @@
|
|||||||
PROJECT_NAME = "MinimOSD-JSON"
|
PROJECT_NAME = "MinimOSD-JSON"
|
||||||
OUTPUT_DIRECTORY = "docs/"
|
OUTPUT_DIRECTORY = "docs/"
|
||||||
INPUT = "README.md" "src" "lib" "include"
|
INPUT = "README.md" "src" "lib" "include"
|
||||||
|
EXTRACT_PRIVATE = YES
|
||||||
RECURSIVE = YES
|
RECURSIVE = YES
|
||||||
WARNINGS = YES
|
WARNINGS = YES
|
||||||
GENERATE_LATEX = NO
|
GENERATE_LATEX = NO
|
||||||
|
@ -73,6 +73,9 @@ public:
|
|||||||
bool onScreenDisplay(bool enabled);
|
bool onScreenDisplay(bool enabled);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
/**
|
||||||
|
* @brief Reference to the OSD instance.
|
||||||
|
*/
|
||||||
Max7456 *osd;
|
Max7456 *osd;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
platform = atmelavr
|
platform = atmelavr
|
||||||
board = pro16MHzatmega328
|
board = pro16MHzatmega328
|
||||||
framework = arduino
|
framework = arduino
|
||||||
lib_deps = ArduinoJson, git+https://github.com/Avamander/max7456
|
lib_deps = ArduinoJson@6.18.5, git+https://github.com/Avamander/max7456#4fec91e
|
Reference in New Issue
Block a user