forked from iotivity/iotivity-constrained
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To st_things modules use commonly, it need to make that library. Make st_framework module in service layer, and move st_app modules to there. To make prebuilt library for st-app-fw, use make_prebuilt.py script in tools folder. thil will copy dependency header in prebuilt folder and copy library about st-app-fw(libst-app-framwork.a) Detailed usage can check in make_prebuilt.py script file. Please Add build option ST_APP_FW to build st-app-fw library. ------------------------------- Test Case st_app (out of box) Create Soft-AP : OK Provisioning : OK Controlled by ST android app :OK st_app (setup is done) - OK st_app (with reset) - OK Change-Id: Ie44b7053a69afe9ad230ecde1655f252bdd45ae7 Signed-off-by: Jaehyun Cho <[email protected]> Reviewed-on: https://gerrit.iotivity.org/gerrit/25629 Tested-by: IoTivity Jenkins <[email protected]> Reviewed-by: Uze Choi <[email protected]>
- Loading branch information
1 parent
ea2508e
commit 72abe3c
Showing
32 changed files
with
561 additions
and
431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CC = gcc | ||
CFLAGS=-fPIC -fno-asynchronous-unwind-tables -fno-omit-frame-pointer -ffreestanding -Os -fno-stack-protector -ffunction-sections -fdata-sections -fno-reorder-functions -fno-defer-pop -fno-strict-overflow -I./ -I../ -I../../ -I../../include/ -std=gnu99 -Wall -Wextra #-Wl,-Map,client.map | ||
CFLAGS += -I./include | ||
LIBS?= -lm -pthread -lrt | ||
|
||
all: st_things | ||
|
||
st_things: | ||
@mkdir -p $@_creds | ||
${CC} -o $@ st_ref_app.c \ | ||
lib/libst-app-framework.a ${CFLAGS} ${LIBS} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.