Skip to content

Commit

Permalink
Update configNETWORK_INTERFACE_TO_USE default value for demos to 0L (F…
Browse files Browse the repository at this point in the history
…reeRTOS#353)

To avoid silent errors, configNETWORK_INTERFACE_TO_USE should be defaulted to 0L.
  • Loading branch information
yourslab authored Oct 20, 2020
1 parent afc5563 commit 553d448
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
* results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE ( 0L )

/* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192
Expand Down

0 comments on commit 553d448

Please sign in to comment.