Include MCUBoot demo and a new FreeRTOS download. See the blog post.
FreeRTOS LTS libraries:
The LTS libraries are now included in our partner toolchains. See the blog post.
coreJSON Terminology
These definitions are from json.org . For more details and diagrams, please visit their website.
Object
An object is an unordered set of name/value pairs. An object begins with a left brace, {, and ends with a right brace, }. Each name is followed by colon and the name/value pairs are separated by a comma
Array
An array is an ordered collection of values. An array begins with left bracket, [, and ends with a right bracket, ]. Values are separated by a comma.
String
A string is a sequence of zero or more Unicode characters, wrapped in double quotes, using backslash escapes.
Value
A value can be a string in double quotes, or a number, or true or false or null, or an object or an array. These structures can be nested.
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.