Fix logging issue causing mangled new lines (#391)

* Fix logging issue caused by using \n as the default newline character

* Update the other demos

* Fix accidentally changed NETWORK_INTERFACE

* Set \r\n as default instead

* Update sources to reflect \r\n change

* Get rid of configLOGGING_NEW_LINE altogether

Co-authored-by: abhidixi11 <44424462+abhidixi11@users.noreply.github.com>
This commit is contained in:
Oscar Michael Abrina 2020-11-08 21:27:53 -08:00 committed by GitHub
parent 54d549cd0e
commit 52d7c47cd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 238 additions and 278 deletions

View file

@ -124,7 +124,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -135,63 +135,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */

View file

@ -286,7 +286,7 @@ void vLoggingPrintf( const char * pcFormat,
pcTaskName = pcNoTask; pcTaskName = pcNoTask;
} }
if( strcmp( pcFormat, "\n" ) != 0 ) if( strcmp( pcFormat, "\r\n" ) != 0 )
{ {
xLength = snprintf( cPrintString, dlMAX_PRINT_STRING_LENGTH, "%lu %lu [%s] ", xLength = snprintf( cPrintString, dlMAX_PRINT_STRING_LENGTH, "%lu %lu [%s] ",
xMessageNumber++, xMessageNumber++,

View file

@ -153,11 +153,11 @@ int main( void )
* vApplicationIPNetworkEventHook() below). The address values passed in here * vApplicationIPNetworkEventHook() below). The address values passed in here
* are used if ipconfigUSE_DHCP is set to 0, or if ipconfigUSE_DHCP is set to 1 * are used if ipconfigUSE_DHCP is set to 0, or if ipconfigUSE_DHCP is set to 1
* but a DHCP server cannot be contacted. */ * but a DHCP server cannot be contacted. */
FreeRTOS_debug_printf( ( "FreeRTOS_IPInit\n" ) ); FreeRTOS_debug_printf( ( "FreeRTOS_IPInit\r\n" ) );
FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress ); FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress );
/* Start the RTOS scheduler. */ /* Start the RTOS scheduler. */
FreeRTOS_debug_printf( ( "vTaskStartScheduler\n" ) ); FreeRTOS_debug_printf( ( "vTaskStartScheduler\r\n" ) );
vTaskStartScheduler(); vTaskStartScheduler();
/* If all is well, the scheduler will now be running, and the following /* If all is well, the scheduler will now be running, and the following
@ -196,7 +196,7 @@ void vAssertCalled( const char * pcFile,
( void ) pcFileName; ( void ) pcFileName;
( void ) ulLineNumber; ( void ) ulLineNumber;
FreeRTOS_debug_printf( ( "vAssertCalled( %s, %ld\n", pcFile, ulLine ) ); FreeRTOS_debug_printf( ( "vAssertCalled( %s, %ld\r\n", pcFile, ulLine ) );
/* Setting ulBlockVariable to a non-zero value in the debugger will allow /* Setting ulBlockVariable to a non-zero value in the debugger will allow
* this function to be exited. */ * this function to be exited. */
@ -307,9 +307,9 @@ static void prvMiscInitialisation( void )
/* Seed the random number generator. */ /* Seed the random number generator. */
time( &xTimeNow ); time( &xTimeNow );
FreeRTOS_debug_printf( ( "Seed for randomiser: %lu\n", xTimeNow ) ); FreeRTOS_debug_printf( ( "Seed for randomiser: %lu\r\n", xTimeNow ) );
prvSRand( ( uint32_t ) xTimeNow ); prvSRand( ( uint32_t ) xTimeNow );
FreeRTOS_debug_printf( ( "Random numbers: %08X %08X %08X %08X\n", ipconfigRAND32(), ipconfigRAND32(), ipconfigRAND32(), ipconfigRAND32() ) ); FreeRTOS_debug_printf( ( "Random numbers: %08X %08X %08X %08X\r\n", ipconfigRAND32(), ipconfigRAND32(), ipconfigRAND32(), ipconfigRAND32() ) );
} }
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/

View file

@ -124,7 +124,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -135,63 +135,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */

View file

@ -126,7 +126,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -137,63 +137,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */

View file

@ -126,7 +126,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -137,63 +137,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */

View file

@ -124,7 +124,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -135,63 +135,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */

View file

@ -126,7 +126,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -137,63 +137,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */

View file

@ -126,7 +126,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -137,63 +137,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */

View file

@ -124,7 +124,7 @@
/* Only used when running in the FreeRTOS Windows simulator. Defines the /* Only used when running in the FreeRTOS Windows simulator. Defines the
* priority of the task used to simulate Ethernet interrupts. */ * priority of the task used to simulate Ethernet interrupts. */
#define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 ) #define configMAC_ISR_SIMULATOR_PRIORITY ( configMAX_PRIORITIES - 1 )
/* This demo creates a virtual network connection by accessing the raw Ethernet /* This demo creates a virtual network connection by accessing the raw Ethernet
* or WiFi data to and from a real network connection. Many computers have more * or WiFi data to and from a real network connection. Many computers have more
@ -135,63 +135,58 @@
* results in the wired network being used, while setting * results in the wired network being used, while setting
* configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being * configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being
* used. */ * used. */
#define configNETWORK_INTERFACE_TO_USE ( 0L ) #define configNETWORK_INTERFACE_TO_USE ( 0L )
/* The address to which logging is sent should UDP logging be enabled. */ /* The address to which logging is sent should UDP logging be enabled. */
#define configUDP_LOGGING_ADDR0 192 #define configUDP_LOGGING_ADDR0 192
#define configUDP_LOGGING_ADDR1 168 #define configUDP_LOGGING_ADDR1 168
#define configUDP_LOGGING_ADDR2 0 #define configUDP_LOGGING_ADDR2 0
#define configUDP_LOGGING_ADDR3 11 #define configUDP_LOGGING_ADDR3 11
/* Default MAC address configuration. The demo creates a virtual network /* Default MAC address configuration. The demo creates a virtual network
* connection that uses this MAC address by accessing the raw Ethernet/WiFi data * connection that uses this MAC address by accessing the raw Ethernet/WiFi data
* to and from a real network connection on the host PC. See the * to and from a real network connection on the host PC. See the
* configNETWORK_INTERFACE_TO_USE definition above for information on how to * configNETWORK_INTERFACE_TO_USE definition above for information on how to
* configure the real network connection to use. */ * configure the real network connection to use. */
#define configMAC_ADDR0 0x00 #define configMAC_ADDR0 0x00
#define configMAC_ADDR1 0x11 #define configMAC_ADDR1 0x11
#define configMAC_ADDR2 0x11 #define configMAC_ADDR2 0x11
#define configMAC_ADDR3 0x11 #define configMAC_ADDR3 0x11
#define configMAC_ADDR4 0x11 #define configMAC_ADDR4 0x11
#define configMAC_ADDR5 0x41 #define configMAC_ADDR5 0x41
/* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default IP address configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configIP_ADDR0 10 #define configIP_ADDR0 10
#define configIP_ADDR1 10 #define configIP_ADDR1 10
#define configIP_ADDR2 10 #define configIP_ADDR2 10
#define configIP_ADDR3 200 #define configIP_ADDR3 200
/* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to /* Default gateway IP address configuration. Used in ipconfigUSE_DNS is set to
* 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * 0, or ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configGATEWAY_ADDR0 10 #define configGATEWAY_ADDR0 10
#define configGATEWAY_ADDR1 10 #define configGATEWAY_ADDR1 10
#define configGATEWAY_ADDR2 10 #define configGATEWAY_ADDR2 10
#define configGATEWAY_ADDR3 1 #define configGATEWAY_ADDR3 1
/* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and /* Default DNS server configuration. OpenDNS addresses are 208.67.222.222 and
* 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set * 208.67.220.220. Used in ipconfigUSE_DNS is set to 0, or ipconfigUSE_DNS is set
* to 1 but a DNS server cannot be contacted.*/ * to 1 but a DNS server cannot be contacted.*/
#define configDNS_SERVER_ADDR0 208 #define configDNS_SERVER_ADDR0 208
#define configDNS_SERVER_ADDR1 67 #define configDNS_SERVER_ADDR1 67
#define configDNS_SERVER_ADDR2 222 #define configDNS_SERVER_ADDR2 222
#define configDNS_SERVER_ADDR3 222 #define configDNS_SERVER_ADDR3 222
/* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or /* Default netmask configuration. Used in ipconfigUSE_DNS is set to 0, or
* ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */ * ipconfigUSE_DNS is set to 1 but a DNS server cannot be contacted. */
#define configNET_MASK0 255 #define configNET_MASK0 255
#define configNET_MASK1 0 #define configNET_MASK1 0
#define configNET_MASK2 0 #define configNET_MASK2 0
#define configNET_MASK3 0 #define configNET_MASK3 0
/* The UDP port to which print messages are sent. */ /* The UDP port to which print messages are sent. */
#define configPRINT_PORT ( 15000 ) #define configPRINT_PORT ( 15000 )
/* Task pool definitions for the demos of IoT Libraries. */
#define configTASKPOOL_ENABLE_ASSERTS 1
#define configTASKPOOL_NUMBER_OF_WORKERS 1
#define configTASKPOOL_WORKER_PRIORITY tskIDLE_PRIORITY
#define configTASKPOOL_WORKER_STACK_SIZE_BYTES 2048
#if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) ) #if ( defined( _MSC_VER ) && ( _MSC_VER <= 1600 ) && !defined( snprintf ) )
/* Map to Windows names. */ /* Map to Windows names. */