Skip to content

Commit 7ac9d2d

Browse files
authored
Merge pull request #2167 from Samsung/master
Merge from master branch to live branch
2 parents ed8e515 + f0bed54 commit 7ac9d2d

File tree

16 files changed

+81
-71
lines changed

16 files changed

+81
-71
lines changed

docs/application/dotnet/guides/alarm/alarms.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,17 @@ To enable your application to use the alarm functionality, follow these steps:
5050
using Tizen.Applications.Notifications;
5151
```
5252

53+
4. To set alarm for service application, the alarm registered with [Tizen.Applications.AppControl](/application/dotnet/api/TizenFX/latest/api/Tizen.Applications.AppControl.html) needs to have a [background category](../../guides/applications/efl-ui-app.md#describing-the-background-category).
54+
5355

5456
<a name="scenario_1"></a>
5557
## Set an alarm with a specific delay
5658

5759
You can set an alarm which, when it expires, either launches an application or sends a notification to the user:
5860

61+
> [!NOTE]
62+
> Improperly designed alarms can cause battery drain and put a significant load on the server. For this reason, any repeating alarm that uses a (#PERIOD) is considered an inexact alarm.
63+
5964
> [!NOTE]
6065
> Since Tizen 6.0, the time period value of an alarm can be one of the values of `Tizen.Applications.AlarmStandardPeriod`. For the `CreateAlarm()` method of the `Tizen.Applications.AlarmManager` class, if you use `Tizen.Applications.AlarmStandardPeriod`, the time period value of the alarm is guaranteed. If `Tizen.Applications.AlarmStandardPeriod` is not used, the time period value will be phase-aligned with another time period value of the alarm.
6166

docs/application/native/guides/alarm/alarms.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ To enable your application to use the alarm functionality:
4343
```
4444
#include <app_alarm.h>
4545
```
46+
47+
> **Note**
48+
> To set alarm for service application, the alarm registered with [App Control](../../api/common/latest/group__CAPI__APP__CONTROL__MODULE.html) needs to have a [background category](../../guides/applications/efl-ui-app.md#describing-the-background-category).
49+
> The alarm for service application can only be registered using the 'alarm_schedule_after_delay()' API.
50+
51+
4652
<a name="scenario_1"></a>
4753
## Setting an Alarm after Specific Time
4854

@@ -93,6 +99,16 @@ To set an alarm after a specific time:
9399
}
94100
```
95101
102+
> **Note**
103+
> Since 6.0, the [alarm_standard_interval_e] is supported. If you alarm registered by using it, The alarm will first go off delay seconds later and then will go off every certain amount of time defined using standard period seconds.
104+
105+
```
106+
ret = alarm_schedule_after_delay(app_control, DELAY, ALARM_STANDARD_INTERVAL_FIFTEEN_MINUTES, &alarm_id);
107+
108+
return true;
109+
}
110+
```
111+
96112
<a name="scenario_2"></a>
97113
## Setting an Alarm on a Specific Date
98114

docs/application/native/guides/personal/context.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Contextual Device Usage History Data
22

3+
> [!NOTE]
4+
> All attach CONTEXT APIs have been deprecated since Tizen 10.0 and will be removed after two releases without any alternatives.
35
46
The Tizen platform collects data on the device usage. Based on this data, the applications can take advantage of the user's application usage patterns through statistical analysis.
57

docs/application/toc_vs-ext_dotnet.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#### [Install SDK Common Tools & Tizen Platform](/application/vstools/install-sdk-common-tools.md)
1212
#### [Install TV Extension & Certificate Extension](/application/vstools/tv-certificate-extension.md)
1313
#### Package Manager
14-
###### [Overview](/application/tizen-studio/common-tools/package-manager.md)
15-
###### [Configure the Package Manager](/application/tizen-studio/common-tools/pkgmgr-advanced-configuration.md)
14+
##### [Overview](/application/tizen-studio/common-tools/package-manager.md)
15+
##### [Configure the Package Manager](/application/tizen-studio/common-tools/pkgmgr-advanced-configuration.md)
1616

1717
### .NET Application Development
1818
<!-- #### [Overview](/application/vstools/getting-started/creating-application-projects.md) -->
@@ -22,17 +22,17 @@
2222
##### [Create App](/application/vstools/getting-started/creating-application-projects.md)
2323
##### [Import Exsting Tizen Project](/application/vstools/Tizen/import.md)
2424
##### [Tool : Project Wizard](/application/vstools/tools/project-wizard.md)
25-
##### Configure App
26-
###### [Manifest & Config Editor](/application/vstools/getting-started/configuring-app-manifest-config-editor.md)
27-
###### [How to Hybrid & MultiApp Packaging](/application/vstools/getting-started/configuring-hybrid-multi-app-packaging.md)
28-
###### [App Signing Configure](/application/vstools/getting-started/configuring-app-signing.md)
29-
###### [Workload & Nuget Configure](/application/vstools/getting-started/configuring-app-workload-nuget.md)
30-
###### [Hotreload(Only Dotnet Application)](/application/vstools/getting-started/configuring-hotreload.md)
25+
#### Configure App
26+
##### [Manifest & Config Editor](/application/vstools/getting-started/configuring-app-manifest-config-editor.md)
27+
##### [How to Hybrid & MultiApp Packaging](/application/vstools/getting-started/configuring-hybrid-multi-app-packaging.md)
28+
##### [App Signing Configure](/application/vstools/getting-started/configuring-app-signing.md)
29+
##### [Workload & Nuget Configure](/application/vstools/getting-started/configuring-app-workload-nuget.md)
30+
##### [Hotreload(Only Dotnet Application)](/application/vstools/getting-started/configuring-hotreload.md)
3131
##### [Tool : Certificate Manager](/application/vstools/tools/certificate-manager.md)
32-
##### Tool : Manifest Editor
33-
###### [Overview](/application/vstools/tools/manifest-editor.md)
34-
###### [Metadata Element](/application/vstools/tools/metadata-element.md)
35-
###### [Additional Manifest Elements](/application/vstools/tools/manifest-elements.md)
32+
#### Tool : Manifest Editor
33+
##### [Overview](/application/vstools/tools/manifest-editor.md)
34+
##### [Metadata Element](/application/vstools/tools/metadata-element.md)
35+
##### [Additional Manifest Elements](/application/vstools/tools/manifest-elements.md)
3636

3737
#### Coding & Building Application
3838
##### [Edit Code](/application/vstools/getting-started/edit-code.md)
@@ -58,9 +58,9 @@
5858
##### [Tool : SDB](/application/tizen-studio/common-tools/smart-development-bridge.md)
5959

6060
#### CLI
61-
###### [Tizen CLI](/application/tizen-studio/common-tools/command-line-interface.md)
62-
###### [Tizen-Core CLI](/application/tizen-studio/tizen-core/tizen-core-cli.md)
63-
###### [Dotnet CLI](/application/vstools/tools/dotnet-cli-ext.md)
61+
##### [Tizen CLI](/application/tizen-studio/common-tools/command-line-interface.md)
62+
##### [Tizen-Core CLI](/application/tizen-studio/tizen-core/tizen-core-cli.md)
63+
##### [Dotnet CLI](/application/vstools/tools/dotnet-cli-ext.md)
6464

6565
#### Report Issues
6666
##### [Issue Reporter](/application/vstools/tools/issue-reporter-vs-tools.md)

docs/application/toc_vs-ext_native.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#### [Install SDK Common Tools & Tizen Platform](/application/vstools/install-sdk-common-tools.md)
1212
#### [Install TV Extension & Certificate Extension](/application/vstools/tv-certificate-extension.md)
1313
#### Package Manager
14-
###### [Overview](/application/tizen-studio/common-tools/package-manager.md)
15-
###### [Configure the Package Manager](/application/tizen-studio/common-tools/pkgmgr-advanced-configuration.md)
14+
##### [Overview](/application/tizen-studio/common-tools/package-manager.md)
15+
##### [Configure the Package Manager](/application/tizen-studio/common-tools/pkgmgr-advanced-configuration.md)
1616

1717
### Native Application Development
1818
<!-- #### [Overview](/application/vstools/getting-started/creating-application-projects.md) -->
@@ -22,7 +22,7 @@
2222
##### [Create App](/application/vstools/Tizen/native.md)
2323
##### [Import Exsting Tizen Project](/application/vstools/Tizen/import.md)
2424
##### [Tool : Project Wizard](/application/vstools/tools/project-wizard.md)
25-
##### Configure App
25+
#### Configure App
2626
##### [Tool : Certificate Manager](/application/vstools/tools/certificate-manager.md)
2727
##### Tool : Manifest Editor
2828
###### [Overview](/application/vstools/tools/manifest-editor.md)

docs/application/toc_vs-ext_web.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#### [Install SDK Common Tools & Tizen Platform](/application/vstools/install-sdk-common-tools.md)
1212
#### [Install TV Extension & Certificate Extension](/application/vstools/tv-certificate-extension.md)
1313
#### Package Manager
14-
###### [Overview](/application/tizen-studio/common-tools/package-manager.md)
15-
###### [Configure the Package Manager](/application/tizen-studio/common-tools/pkgmgr-advanced-configuration.md)
14+
##### [Overview](/application/tizen-studio/common-tools/package-manager.md)
15+
##### [Configure the Package Manager](/application/tizen-studio/common-tools/pkgmgr-advanced-configuration.md)
1616

1717
### Web Application Development
1818
<!-- #### [Overview](/application/vstools/getting-started/creating-application-projects.md) -->
@@ -22,7 +22,7 @@
2222
##### [Create App](/application/vstools/Tizen/web.md)
2323
##### [Import Exsting Tizen Project](/application/vstools/Tizen/import.md)
2424
##### [Tool : Project Wizard](/application/vstools/tools/project-wizard.md)
25-
##### Configure App
25+
#### Configure App
2626
##### [Tool : Certificate Manager](/application/vstools/tools/certificate-manager.md)
2727
##### Tool : Manifest Editor
2828
###### [Overview](/application/vstools/tools/manifest-editor.md)

docs/application/web/api/8.0/device_api/mobile/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,9 +439,6 @@ <h4 id="Deprecated API">Deprecated API</h4>
439439
<td>Optional</td>
440440
<td>Yes<div class="partial-support">Only e-mail</div></td>
441441
</tr>
442-
</tbody></table>
443-
<h4 id="Deprecated API">Deprecated API</h4>
444-
<table class="deprecated-api-list"><thead><tr><th>API</th><th>Description</th><th>Version (Since)</th><th>Deprecated (Since)</th><th>Mobile</th><th>Supported on <br>Mobile Emulator</th></tr></thead><tbody>
445442
<tr><td><a href="tizen/libteec.html">LibTeec</a></td>
446443
<td>This API provides interfaces and methods for a TrustZone.</td>
447444
<td>4.0</td>

docs/application/web/api/9.0/device_api/mobile/index.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,9 +439,6 @@ <h4 id="Deprecated API">Deprecated API</h4>
439439
<td>Optional</td>
440440
<td>Yes<div class="partial-support">Only e-mail</div></td>
441441
</tr>
442-
</tbody></table>
443-
<h4 id="Deprecated API">Deprecated API</h4>
444-
<table class="deprecated-api-list"><thead><tr><th>API</th><th>Description</th><th>Version (Since)</th><th>Deprecated (Since)</th><th>Mobile</th><th>Supported on <br>Mobile Emulator</th></tr></thead><tbody>
445442
<tr><td><a href="tizen/libteec.html">LibTeec</a></td>
446443
<td>This API provides interfaces and methods for a TrustZone.</td>
447444
<td>4.0</td>

docs/platform/developing/flashing-rpi.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,10 @@ To flash the SD card for Raspberry Pi 4 or 5, follow the steps below:
7474
4. Fusing-script for Raspberry Pi 4 (fusing script is same for RPI5):
7575
7676
```
77-
$ wget https://git.tizen.org/cgit/platform/kernel/tizen-fusing-scripts/plain/scripts/sd_fusing.py?h=tizen --output-document=sd_fusing.py
78-
$ chmod +x sd_fusing.py
77+
git clone git://review.tizen.org/git/platform/kernel/tizen-fusing-scripts -b tizen
78+
cd tizen-fusing-scripts
79+
$ ./scripts/sd_fusing.py
80+
usage: sd_fusing.py [-h] [-b BINARIES [BINARIES ...]] [--create] [--debug] [-d DEVICE] [--format] [--log-level LOG_LEVEL] [--partition-size [PARTITION_SIZES ...]] [--size SIZE] -t TARGET [--update {a,b,ab}] [--version] [--YES] [--super_delivered]
7981
```
8082
8183
2. Flash the SD card to ensure it is ready to be used for Tizen:
@@ -140,7 +142,7 @@ To flash the SD card for Raspberry Pi 4 or 5, follow the steps below:
140142
141143
```
142144
$ sudo ./sd_fusing.py -d /dev/sdb -t rpi4 --format
143-
$ sudo ./sd_fusing.py -d /dev/sdb -b tizen-unified_20241125.014042_tizen-boot-armv7l-rpi4.tar.gz tizen-unified_20241125.014042_tizen-headed-armv7l.tar.gz -t rpi4
145+
$ sudo ./sd_fusing.py -d /dev/sdb -b tizen-unified_{DATE}_tizen-boot-armv7l-rpi4.tar.gz tizen-unified_{DATE}_tizen-headed-armv7l.tar.gz -t rpi4
144146
```
145147
146148
3. Open the Smart Development Bridge (SDB) connection. For more information, see [Set up Raspberry Pi 4](#set-up-raspberry-pi-4).

0 commit comments

Comments
 (0)