Skip to content

Commit

Permalink
fixed some doxygen issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hpsaturn committed Sep 20, 2023
1 parent 5840bbc commit 264b40d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
11 changes: 2 additions & 9 deletions doxygen.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,7 @@ ECLIPSE_DOC_ID = org.doxygen.Project
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

DISABLE_INDEX = NO
DISABLE_INDEX = YES

# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
# structure should be generated to display hierarchical information. If the tag
Expand All @@ -1582,7 +1582,7 @@ DISABLE_INDEX = NO
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

GENERATE_TREEVIEW = NO
GENERATE_TREEVIEW = YES

# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
# doxygen will group on one line in the generated HTML documentation.
Expand Down Expand Up @@ -2656,10 +2656,3 @@ GENERATE_LEGEND = YES
# The default value is: YES.

DOT_CLEANUP = YES

# MODS:


DISABLE_INDEX = YES
GENERATE_TREEVIEW = YES

8 changes: 4 additions & 4 deletions src/Sensors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
// UART defualt port
#define SENSOR_COMMS SERIALPORT2

/// Sensors units definitions (symbol/name)
// Sensors units definitions (symbol/name)
#define SENSOR_UNITS \
X(NUNIT, "NUNIT", "NUNIT") \
X(PM1, "ug/m3", "PM1") \
Expand Down Expand Up @@ -114,7 +114,7 @@
typedef enum UNIT : size_t { SENSOR_UNITS } UNIT;
#undef X

/// sensors types: 1:PM, 2:CO2, 3:ENV
// sensors types: 1:PM, 2:CO2, 3:ENV
#define SENSORS_TYPES \
X(Auto, "GENERIC", 1) \
X(SGCJA5, "GCJA5", 1) \
Expand Down Expand Up @@ -142,14 +142,14 @@ typedef enum UNIT : size_t { SENSOR_UNITS } UNIT;
typedef enum SENSORS : size_t { SENSORS_TYPES } SENSORS; // backward compatibility
#undef X

/// MAIN SENSOR GROUPS TYPE
// MAIN SENSOR GROUPS TYPE
enum class SensorGroup { SENSOR_NONE,
SENSOR_PM,
SENSOR_CO2,
SENSOR_ENV,
SENSOR_RAD // CAJOE_GEIGER
};
/// TEMPERATURE UNITS
// TEMPERATURE UNITS
enum class TEMPUNIT {
CELSIUS,
FAHRENHEIT,
Expand Down

0 comments on commit 264b40d

Please sign in to comment.