Skip to content

Commit

Permalink
Add-backs after merge conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed May 5, 2023
1 parent c34dd87 commit 7558be6
Showing 1 changed file with 22 additions and 11 deletions.
33 changes: 22 additions & 11 deletions config/default_lc_msgdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,30 +40,40 @@
#include "lc_fcncodes.h"

/************************************************************************
* Macro Definitions
* Type Definitions
************************************************************************/

/**
* \name LC Application States
* \{
*/
#define LC_STATE_ACTIVE 1 /**< \brief LC Application State Active */
#define LC_STATE_PASSIVE 2 /**< \brief LC Application State Pasive */
#define LC_STATE_DISABLED 3 /**< \brief LC Application State Disabled */
#define LC_STATE_FROM_CDS 4 /**< \brief Used for reset processing, not valid state */
typedef enum LC_AppState_Enum
{
LC_AppState_ACTIVE = 1, /**< \brief LC Application State Active */
LC_AppState_PASSIVE, /**< \brief LC Application State Pasive */
LC_AppState_DISABLED, /**< \brief LC Application State Disabled */
LC_AppState_FROM_CDS /**< \brief Used for reset processing, not valid state */
} LC_AppState_Enum_t;
/**\}*/

/**
* \name Actionpoint States
* \{
*/
#define LC_APSTATE_NOT_USED 0xFF /**< \brief Actionpoint unused, not valid command argument */
#define LC_APSTATE_ACTIVE 1 /**< \brief Actionpoint state active */
#define LC_APSTATE_PASSIVE 2 /**< \brief Actionpoint state passive */
#define LC_APSTATE_DISABLED 3 /**< \brief Actionpoint state disabled */
#define LC_APSTATE_PERMOFF 4 /**< \brief Actionpoint state permanently off, see #LC_SET_AP_PERM_OFF_CC */
typedef enum LC_ActionPointState_Enum
{
LC_ActionPointState_ACTIVE = 1, /**< \brief Actionpoint state active */
LC_ActionPointState_PASSIVE, /**< \brief Actionpoint state passive */
LC_ActionPointState_DISABLED, /**< \brief Actionpoint state disabled */
LC_ActionPointState_PERMOFF, /**< \brief Actionpoint state permanently off, see #LC_SET_AP_PERM_OFF_CC */
LC_ActionPoint_NOT_USED = 255 /**< \brief Actionpoint unused, not valid command argument */
} LC_ActionPointState_Enum_t;
/**\}*/

/************************************************************************
* Macro Definitions
************************************************************************/

/**
* \name Special Values for Commands
* \{
Expand Down Expand Up @@ -118,7 +128,8 @@
/**\}*/

#ifndef LC_OMIT_DEPRECATED
#define LC_ACTION_NOT_USED LC_APSTATE_NOT_USED
#define LC_SET_AP_PERMOFF_CC LC_SET_AP_PERM_OFF_CC
#define LC_ACTION_NOT_USED LC_ActionPoint_NOT_USED
#endif

#endif

0 comments on commit 7558be6

Please sign in to comment.