mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-01 08:54:14 -04:00
Change version numbers ready for V8.0.0 release candidate 1 tag.
This commit is contained in:
parent
a44a6fbaeb
commit
a8836b5c43
1240 changed files with 1322 additions and 1282 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,3 +1,17 @@
|
|||
Changes between V1.0.2 and V1.0.3
|
||||
|
||||
+ Previously, and in line with good software engineering practice, the
|
||||
FreeRTOS coding standard did not permit the use of char types that were
|
||||
not explicitly qualified as either signed or unsigned. As a result char
|
||||
pointers used to reference strings required casts, as did the use of any
|
||||
standard string handling functions. The casts ensured compiler warnings
|
||||
were not generated by compilers that defaulted unqualified char types to
|
||||
be signed or compilers that defaulted unqualified char types to be
|
||||
unsigned. As it has in later MISRA standards, this rule has now been
|
||||
relaxed, and unqualified char types are now permitted, but only when:
|
||||
1) The char is used to point to a human readable text string.
|
||||
2) The char is used to hold a single ASCII character.
|
||||
|
||||
Changes between V1.0.1 and V1.0.2
|
||||
|
||||
+ Increase the size of the critical section in the function that obtains a
|
||||
|
@ -27,19 +41,19 @@ Changes between V1.0.0 and V1.0.0
|
|||
Changes between V1.0.0rc1 and V1.0.0:
|
||||
|
||||
+ Correct name of prvCompleteUDPHeader().
|
||||
+ Ensure network down events cannot be missed when the network event queue
|
||||
+ Ensure network down events cannot be missed when the network event queue
|
||||
to which they are posted is full.
|
||||
+ Only start the ARP timer when the network has connected.
|
||||
+ Remove initialisation call to the DHCP state machine - the call is made
|
||||
+ Remove initialisation call to the DHCP state machine - the call is made
|
||||
directly when the network connects.
|
||||
+ Add the network event queue and the BufferAllocation_2.c counting
|
||||
+ Add the network event queue and the BufferAllocation_2.c counting
|
||||
semaphore to the queue registry.
|
||||
+ Only initialise the DMA buffers in the lpc18xx_emac.c driver if the
|
||||
+ Only initialise the DMA buffers in the lpc18xx_emac.c driver if the
|
||||
autonegotiation was successful.
|
||||
|
||||
|
||||
Known issues in this version:
|
||||
|
||||
|
||||
+ DHCP server attempts to copy the IP addresses of all the offered DNS
|
||||
servers into a buffer than can only hold one address.
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* FreeRTOS+UDP V1.0.2 (C) 2013 Real Time Engineers ltd.
|
||||
* FreeRTOS+UDP V1.0.3 (C) 2014 Real Time Engineers ltd.
|
||||
* All rights reserved
|
||||
*
|
||||
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue