Skip to content

Commit

Permalink
Add library version at the top of the file. (#54)
Browse files Browse the repository at this point in the history
* Add library version at the top of the file.

* update change log

* Update typo in changelog

* Update the PR number for "Resolve ublox sara r4 build warnings".

Co-authored-by: chinglee-iot <61685396+chinglee-iot@users.noreply.github.com>
  • Loading branch information
andysun2015 and chinglee-iot committed Nov 11, 2021
1 parent ac28f25 commit 3f8ab4d
Show file tree
Hide file tree
Showing 117 changed files with 1,370 additions and 1,458 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,20 @@
# Change Log for FreeRTOS Cellular Interface Library

## v1.1.0 (November 2021)
### Updates
- [#40](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/40) Fix the module logging mechanism foramt.
- [#53](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/53) Use the stdint.h header file for integer types.
- [#55](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/55) Add function for validating the prefix character of cellular module response.
- [#57](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/57) Fix unknown type issue.

### Other
- [#52](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/52) Resolve ublox sara r4 build warnings.
- [#42](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/42) Fix spelling check failure in CI tools.
- [#43](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/43) [#46](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/46) [#54](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/54) Minor documentation updates.
- [#48](https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface/pull/48) Header Guards for C++ linkage.

## v1.0.0 (September 2021)

This is the first release of the FreeRTOS Cellular Interface library in this repository.

The FreeRTOS Cellular Interface library provides an implementation of the standard AT commands for the [3GPP TS v27.007](https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1515) and support for the 3 cellular modems [Quectel BG96](https://www.quectel.com/product/bg96.htm), [Sierra Wireless HL7802](https://www.sierrawireless.com/products-and-solutions/embedded-solutions/products/hl7802/) and [U-Blox Sara-R4](https://www.u-blox.com/en/product/sara-r4-series).
The FreeRTOS Cellular Interface library provides an implementation of the standard AT commands for the [3GPP TS v27.007](https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1515) and support for the 3 cellular modems [Quectel BG96](https://www.quectel.com/product/bg96.htm), [Sierra Wireless HL7802](https://www.sierrawireless.com/products-and-solutions/embedded-solutions/products/hl7802/) and [U-Blox Sara-R4](https://www.u-blox.com/en/product/sara-r4-series).
2 changes: 1 addition & 1 deletion docs/doxygen/config.doxyfile
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "FreeRTOS: FreeRTOS Cellular Library"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v1.0.0
PROJECT_NUMBER = v1.1.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
6 changes: 3 additions & 3 deletions modules/bg96/cellular_bg96.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/* The config header is always included first. */
Expand Down
25 changes: 25 additions & 0 deletions modules/bg96/cellular_bg96.h
@@ -1,3 +1,28 @@
/*
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#ifndef __CELLULAR_BG96_H__
#define __CELLULAR_BG96_H__

Expand Down
6 changes: 3 additions & 3 deletions modules/bg96/cellular_bg96_api.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/* Standard includes. */
Expand Down
6 changes: 3 additions & 3 deletions modules/bg96/cellular_bg96_urc_handler.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#include "cellular_config.h"
Expand Down
6 changes: 3 additions & 3 deletions modules/bg96/cellular_bg96_wrapper.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/* The config header is always included first. */
Expand Down
6 changes: 3 additions & 3 deletions modules/hl7802/cellular_hl7802.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/* The config header is always included first. */
Expand Down
6 changes: 3 additions & 3 deletions modules/hl7802/cellular_hl7802.h
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#ifndef __CELLULAR_HL7802_H__
Expand Down
6 changes: 3 additions & 3 deletions modules/hl7802/cellular_hl7802_api.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#include "cellular_config.h"
Expand Down
6 changes: 3 additions & 3 deletions modules/hl7802/cellular_hl7802_urc_handler.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#include "cellular_config.h"
Expand Down
6 changes: 3 additions & 3 deletions modules/hl7802/cellular_hl7802_wrapper.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/* The config header is always included first. */
Expand Down
6 changes: 3 additions & 3 deletions modules/sara_r4/cellular_r4.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#include "cellular_config.h"
Expand Down
6 changes: 3 additions & 3 deletions modules/sara_r4/cellular_r4.h
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#ifndef __CELLULAR_R4_H__
Expand Down
6 changes: 3 additions & 3 deletions modules/sara_r4/cellular_r4_api.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/
#include "cellular_config.h"
#include "cellular_config_defaults.h"
Expand Down
6 changes: 3 additions & 3 deletions modules/sara_r4/cellular_r4_urc_handler.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

#include "cellular_config.h"
Expand Down
6 changes: 3 additions & 3 deletions modules/sara_r4/cellular_r4_wrapper.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/* The config header is always included first. */
Expand Down
6 changes: 3 additions & 3 deletions source/cellular_3gpp_api.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions source/cellular_3gpp_urc_handler.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions source/cellular_at_core.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions source/cellular_common.c
@@ -1,5 +1,5 @@
/*
* FreeRTOS Cellular Preview Release
* FreeRTOS-Cellular-Interface v1.1.0
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand All @@ -19,8 +19,8 @@
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* http://aws.amazon.com/freertos
* http://www.FreeRTOS.org
* https://www.FreeRTOS.org
* https://github.com/FreeRTOS
*/

/**
Expand Down

0 comments on commit 3f8ab4d

Please sign in to comment.