Activating environment
source ./scripts/activate.shGenerating tizen-arm-light
gn gen --check \
--fail-on-unused-args \
--add-export-compile-commands=* \
--root=$PW_PROJECT_ROOT/examples/lighting-app/tizen \
"--args=target_os=\"tizen\" target_cpu=\"arm\" tizen_sdk_root=\"$TIZEN_SDK_ROOT\" tizen_sdk_sysroot=\"$TIZEN_SDK_SYSROOT\"" \
$PW_PROJECT_ROOT/out/tizen-arm-lightBuilding tizen-arm-light
ninja -C $PW_PROJECT_ROOT/out/tizen-arm-lightWhen building Matter example application, this step is optional. In case when author certificate and security profile are not found, they will be created automatically. Automatically generated dummy certificate will have the following options: name="Matter Example" email="matter@tizen.org" password="0123456789"
In order to create and use custom author certificate, one can use the commands described below. Change the certificate password and author data as needed. The security profile alias should not be changed, as the "CHIP" name is used in the Matter example build system.
$TIZEN_SDK_ROOT/tools/ide/bin/tizen certificate \
--alias=CHIP \
--name=CHIP \
--email=chip@tizen.org \
--password=chiptizen
$TIZEN_SDK_ROOT/tools/ide/bin/tizen security-profiles add \
--active \
--name=CHIP \
--author=$HOME/tizen-sdk-data/keystore/author/author.p12 \
--password=chiptizenThis is only one-time action. To regenerate the author certificate and
security profile, you have to remove files from the $HOME directory using
specified commands:
rm -r \
$HOME/tizen-sdk-data \
$HOME/.tizen-cli-config \
$HOME/.secretsdbAfter that, normally call scripts to generate the author certificate and security profile mentioned previously.
Please note, that regenerating the author certificate and security profile makes it necessary to remove the previously installed Tizen app. You can't reinstall an application on the Tizen device with a different certificate.
pkgcmd -u -n org.tizen.matter.example.lightingninja -C $PW_PROJECT_ROOT/out/tizen-arm-light chip-lighting-app:tpkUpload TPK package to device under test (DUT). Install it with pkgcmd as
follows:
pkgcmd -i -t tpk -p org.tizen.matter.example.lighting-1.0.0.tpkFor launching Tizen application one should use app_launcher. It is possible to
pass user arguments from command line which might be used to control application
behavior. However, passed strings cannot start with "-" (minus) character and
all arguments have to consist of name and value. Boolean options (option without
argument) should have value equal to "true".
e.g.:
app_launcher --start=org.tizen.matter.example.lighting discriminator 43 wifi trueTo run all commands below sdb has to be installed on computer and available in
PATH. Also vscode has to have the augustocdias.tasks-shell-input extension
installed.
-
Build app:
open the Command Palette (Ctrl+Shift+P) -> Tasks: Run Task -> Build LightingApp (Tizen) -
SDB connect to device: required to run Tizen commands below if device is debugged over network
open the Command Palette (Ctrl+Shift+P) -> Tasks: Run Task -> Connect to device (Tizen) -> insert IP address and port -
Install app: it is separated from build app step.
open the Command Palette (Ctrl+Shift+P) -> Tasks: Run Task -> Install LightingApp (Tizen) -
Launch LightingApp with gdbserver attached: require to install app previously.
open the Command Palette (Ctrl+Shift+P) -> Tasks: Run Task -> Launch LightingApp with gdbserver attached (Tizen)
To debug app using vscode gdbserver has to be available on the target device,
run ./scripts/helpers/tizen_gdbserver_run.sh --help for more information.