Skip to content

Commit

Permalink
Fix OpenMRNLite problem with DEFAULT symbol (#462)
Browse files Browse the repository at this point in the history
We need to avoid DEFAULT as a symbol due to Arduino.h
  • Loading branch information
RobertPHeller authored Nov 15, 2020
1 parent d782b0a commit 0626614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freertos_drivers/common/WifiDefs.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ enum class WlanState : uint8_t
enum class WlanRole : uint8_t
{
UNKNOWN = 0, /**< Default mode (from stored configuration) */
DEFAULT = UNKNOWN, /**< Default mode (from stored configuration) */
DEFAULT_ROLE = UNKNOWN, /**< Default mode (from stored configuration) */
STA, /**< Wi-Fi station mode */
AP /**< Wi-Fi access point mode */
};
Expand Down

0 comments on commit 0626614

Please sign in to comment.