Skip to content

Commit

Permalink
Fix wrong macro definition
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Feb 1, 2019
1 parent 358ebcd commit 7b319be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/esp/esp_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ extern "C" {

#define ESP_DBG_TYPE_TRACE 0x40 /*!< Debug trace messages for program flow */
#define ESP_DBG_TYPE_STATE 0x20 /*!< Debug state messages (such as state machines) */
#define ESP_DBG_TYPE_ALL (GSM_DBG_TYPE_TRACE | GSM_DBG_TYPE_STATE) /*!< All debug types */
#define ESP_DBG_TYPE_ALL (ESP_DBG_TYPE_TRACE | ESP_DBG_TYPE_STATE) /*!< All debug types */

/**
* \}
Expand Down

0 comments on commit 7b319be

Please sign in to comment.