GPS Device
Loading...
Searching...
No Matches

Common enumeration types used across modules. More...

Collaboration diagram for Common Types:

Enumerations

enum  PIN_STATUS_te { LOW , HIGH }
 Represents the logical level of a GPIO pin. More...
enum  EN_STATUS_te { DISABLE , ENABLE }
 Represents an enabled or disabled state. More...
enum  VERTICAL_DIR_te { DOWN , UP }
 Represents a vertical movement direction. More...

Detailed Description

Common enumeration types used across modules.

Enumeration Type Documentation

◆ PIN_STATUS_te

Represents the logical level of a GPIO pin.

Enumerator
LOW 

Pin is at logic low (0 V).

HIGH 

Pin is at logic high (VCC).

Definition at line 84 of file common.h.

84 {
86 LOW,
87
89 HIGH
PIN_STATUS_te
Represents the logical level of a GPIO pin.
Definition common.h:84
@ HIGH
Definition common.h:89
@ LOW
Definition common.h:86

◆ EN_STATUS_te

Represents an enabled or disabled state.

Enumerator
DISABLE 

Feature or peripheral is disabled.

ENABLE 

Feature or peripheral is enabled.

Definition at line 95 of file common.h.

95 {
97 DISABLE,
98
100 ENABLE
EN_STATUS_te
Represents an enabled or disabled state.
Definition common.h:95
@ ENABLE
Definition common.h:100
@ DISABLE
Definition common.h:97

◆ VERTICAL_DIR_te

Represents a vertical movement direction.

Enumerator
DOWN 

Downward direction.

UP 

Upward direction.

Definition at line 106 of file common.h.

106 {
108 DOWN,
109
111 UP
VERTICAL_DIR_te
Represents a vertical movement direction.
Definition common.h:106
@ DOWN
Definition common.h:108
@ UP
Definition common.h:111