Skip to content

Commit cefe8c6

Browse files
[Cellular Library] Align folder structure with other library. (#38)
* [Cellular Library] Fix build warning message in unit test * [Cellular Library] Correct memory estimation. * [Cellular Library] The changes for reorg folder structure. * [Cellular Library] Changes for memory estimation and docs * [Cellular Library] Move structure _cellularCommContext from cellular_platform.h to cellular_pktio_utest.c * [Cellular Library] Prevent wrong return status due to null paramter. * Update test/cbmc/proofs/Cellular_ATGetNextTok/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATGetSpecificNextTok/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATHexStrToHex/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATIsPrefixPresent/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATIsStrDigit/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATStrtoi/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATcheckErrorCode/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_CommonATCommandRaw/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_CommonCleanup/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/_Cellular_GetSocketData/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATRemoveAllDoubleQuote/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATRemoveAllWhiteSpaces/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATRemoveLeadingWhiteSpaces/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATRemoveOutermostDoubleQuote/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATRemovePrefix/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATRemoveTrailingWhiteSpaces/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATStrDup/Makefile Co-authored-by: Paul Bartell <[email protected]> * Update test/cbmc/proofs/Cellular_ATStrStartWith/Makefile Co-authored-by: Paul Bartell <[email protected]> * [Cellular Library] Add .gitattribute to prevent CRLF from committing. Co-authored-by: Paul Bartell <[email protected]>
1 parent 2ca3253 commit cefe8c6

File tree

92 files changed

+215
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+215
-257
lines changed

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.c text
7+
*.h text
8+
9+
# Declare files that will always have CRLF line endings on checkout.
10+
*.sln text eol=lf

.github/memory_statistics_config.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
{
22
"lib_name" : "cellularLibrary",
33
"src": [
4-
"common/src/cellular_3gpp_api.c",
5-
"common/src/cellular_3gpp_urc_handler.c",
6-
"common/src/cellular_at_core.c",
7-
"common/src/cellular_common_api.c",
8-
"common/src/cellular_common.c",
9-
"common/src/cellular_pkthandler.c",
10-
"common/src/cellular_pktio.c"
4+
"source/cellular_3gpp_api.c",
5+
"source/cellular_3gpp_urc_handler.c",
6+
"source/cellular_at_core.c",
7+
"source/cellular_common_api.c",
8+
"source/cellular_common.c",
9+
"source/cellular_pkthandler.c",
10+
"source/cellular_pktio.c"
1111
],
1212
"include": [
13-
"include",
14-
"common/include",
15-
"common/include/private",
13+
"source/include",
14+
"source/include/common",
15+
"source/include/private",
16+
"source/interface",
1617
"test/unit-test"
1718
],
1819
"compiler_flags": [

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ jobs:
4343
uses: FreeRTOS/CI-CD-Github-Actions/complexity@main
4444
with:
4545
path: ./
46-
source_path: common
4746
doxygen:
4847
runs-on: ubuntu-latest
4948
steps:

CONTRIBUTING.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

docs/doxygen/config.doxyfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -892,8 +892,9 @@ WARN_LOGFILE =
892892
# Note: If this tag is empty the current directory is searched.
893893

894894
INPUT = ./docs/doxygen \
895-
./include \
896-
./common/include
895+
./source/include \
896+
./source/include/common \
897+
./source/interface
897898

898899
# This tag can be used to specify the character encoding of the source files
899900
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -973,7 +974,8 @@ EXCLUDE_SYMBOLS =
973974
# command).
974975

975976
EXAMPLE_PATH = docs/doxygen/include \
976-
common/include
977+
./source/include \
978+
./source/include/common \
977979

978980
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
979981
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)