Update the version numbers in the demos that were not released in V7.0.2 to be V7.0.2.

pull/1/head
Richard Barry 14 years ago
parent 42fa20daec
commit 0e7c46fbd3

@ -122,7 +122,7 @@ void vMainConfigureTimerForRunTimeStats( void );
extern void vAssertCalled( void );
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled()
#define configNETWORK_INTERFACE_TO_USE 1L
#define configNETWORK_INTERFACE_TO_USE 2L
#define configMAC_ISR_SIMULATOR_PRIORITY ( 6 )
#define configLWIP_TASK_PRIORITY ( 5 )
@ -136,9 +136,9 @@ extern void vAssertCalled( void );
#define configMAC_ADDR5 0x16
/* IP address configuration. */
#define configIP_ADDR0 192
#define configIP_ADDR1 168
#define configIP_ADDR2 0
#define configIP_ADDR0 172
#define configIP_ADDR1 25
#define configIP_ADDR2 218
#define configIP_ADDR3 200
/* Netmask configuration. */
@ -147,4 +147,13 @@ extern void vAssertCalled( void );
#define configNET_MASK2 255
#define configNET_MASK3 0
/* The size of the global output buffer that is available for use when there
are multiple command interpreters running at once (for example, one on a UART
and one on TCP/IP). This is done to prevent an output buffer being defined by
each implementation - which would waste RAM. In this case, there is only one
command interpreter running, and it has its own local output buffer, so the
global buffer is just set to be one byte long as it is not used and should not
take up unnecessary RAM. */
#define configCOMMAND_INT_MAX_OUTPUT_SIZE 1
#endif /* FREERTOS_CONFIG_H */

Binary file not shown.

@ -1,5 +1,5 @@
/*
FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.
FreeRTOS V7.0.2 - Copyright (C) 2011 Real Time Engineers Ltd.
***************************************************************************

@ -1,5 +1,5 @@
/*
FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.
FreeRTOS V7.0.2 - Copyright (C) 2011 Real Time Engineers Ltd.
***************************************************************************

@ -1,5 +1,5 @@
/*
FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.
FreeRTOS V7.0.2 - Copyright (C) 2011 Real Time Engineers Ltd.
***************************************************************************

Loading…
Cancel
Save