]> git.sur5r.net Git - freertos/blob - FreeRTOS-Labs/Source/FreeRTOS-Plus-CLI/History.txt
Add the Labs projects provided in the V10.2.1_191129 zip file.
[freertos] / FreeRTOS-Labs / Source / FreeRTOS-Plus-CLI / History.txt
1 Changes between V1.0.2 and V1.0.3 released\r
2 \r
3         + Previously, and in line with good software engineering practice, the\r
4           FreeRTOS coding standard did not permit the use of char types that were\r
5           not explicitly qualified as either signed or unsigned. As a result char\r
6           pointers used to reference strings required casts, as did the use of any\r
7           standard string handling functions. The casts ensured compiler warnings\r
8           were not generated by compilers that defaulted unqualified char types to\r
9           be signed or compilers that defaulted unqualified char types to be\r
10           unsigned.  As it has in later MISRA standards, this rule has now been\r
11           relaxed, and unqualified char types are now permitted, but only when:\r
12                 1) The char is used to point to a human readable text string.\r
13                 2) The char is used to hold a single ASCII character.\r
14 \r
15 Changes between V1.0.1 and V1.0.2 released 14/10/2013\r
16 \r
17         + Changed double quotes (") to single quotes (') in the help string to\r
18           allow the strings to be used with JSON in FreeRTOS+Nabto.\r
19 \r
20 Changes between V1.0.0 and V1.0.1 released 05/07/2012\r
21 \r
22         + Change the name of the structure used to map a function that implements\r
23           a CLI command to the string used to call the command from\r
24           xCommandLineInput to CLI_Command_Definition_t, as it was always intended\r
25           to be.  A #define was added to map the old name to the new name for\r
26           reasons of backward compatibility.\r
27 \r