Skip to content

Commit 53708b0

Browse files
committed
Merge branch 'release/1.14.2' into main
2 parents c3313c1 + d4b4353 commit 53708b0

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.14.2](https://github.com/rdkcentral/entservices-apis/compare/1.14.1...1.14.2)
8+
9+
- RDKEMW-3229: Power and DeepSleep HAL migration to PowerManager plugin [`#365`](https://github.com/rdkcentral/entservices-apis/pull/365)
10+
- Merge tag '1.14.1' into develop [`abdb51d`](https://github.com/rdkcentral/entservices-apis/commit/abdb51d25bcb49130f67c9b08e4ce7bf6d32e601)
11+
712
#### [1.14.1](https://github.com/rdkcentral/entservices-apis/compare/1.14.0...1.14.1)
813

14+
> 29 July 2025
15+
916
- RDKEMW-6132 : Add LinearPlaybackControl json interface [`#432`](https://github.com/rdkcentral/entservices-apis/pull/432)
1017
- RDKEMW-6132 : Add LinearPlaybackControl interface [`8747330`](https://github.com/rdkcentral/entservices-apis/commit/874733002a0e24c1695c9fa57b96f53f54b1af29)
18+
- 1.14.1 release changelog updates [`109647b`](https://github.com/rdkcentral/entservices-apis/commit/109647b2e33888aa7685f8137230187fcafcf200)
1119
- Merge tag '1.14.0' into develop [`ddae0f9`](https://github.com/rdkcentral/entservices-apis/commit/ddae0f951752c5a00b478ddd5bb198f81ffe3317)
1220

1321
#### [1.14.0](https://github.com/rdkcentral/entservices-apis/compare/1.13.0...1.14.0)

apis/PowerManager/IPowerManager.h

100644100755
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,19 @@ namespace WPEFramework
4545
THERMAL_TEMPERATURE_CRITICAL = 4 /* @text Critial Thermal Temperature */
4646
};
4747

48-
enum WakeupSrcType : uint8_t {
49-
WAKEUP_SRC_UNKNOWN = 0 /* @text UNKNOWN */,
50-
WAKEUP_SRC_VOICE = 1 /* @text VOICE */,
51-
WAKEUP_SRC_PRESENCEDETECTED = 2 /* @text PRESENCEDETECTED */,
52-
WAKEUP_SRC_BLUETOOTH = 3 /* @text BLUETOOTH */,
53-
WAKEUP_SRC_WIFI = 4 /* @text WIFI */,
54-
WAKEUP_SRC_IR = 5 /* @text IR */,
55-
WAKEUP_SRC_POWERKEY = 6 /* @text POWERKEY */,
56-
WAKEUP_SRC_TIMER = 7 /* @text TIMER */,
57-
WAKEUP_SRC_CEC = 8 /* @text CEC */,
58-
WAKEUP_SRC_LAN = 9 /* @text LAN */,
59-
WAKEUP_SRC_RF4CE = 10 /* @text RF4CE */
48+
enum WakeupSrcType : uint16_t {
49+
WAKEUP_SRC_UNKNOWN = 0 /* @text UNKNOWN */,
50+
WAKEUP_SRC_VOICE = 1 /* @text VOICE */,
51+
WAKEUP_SRC_PRESENCEDETECTED = 1 << 1 /* @text PRESENCEDETECTED */,
52+
WAKEUP_SRC_BLUETOOTH = 1 << 2 /* @text BLUETOOTH */,
53+
WAKEUP_SRC_WIFI = 1 << 3 /* @text WIFI */,
54+
WAKEUP_SRC_IR = 1 << 4 /* @text IR */,
55+
WAKEUP_SRC_POWERKEY = 1 << 5 /* @text POWERKEY */,
56+
WAKEUP_SRC_TIMER = 1 << 6 /* @text TIMER */,
57+
WAKEUP_SRC_CEC = 1 << 7 /* @text CEC */,
58+
WAKEUP_SRC_LAN = 1 << 8 /* @text LAN */,
59+
WAKEUP_SRC_RF4CE = 1 << 9 /* @text RF4CE */,
60+
WAKEUP_SRC_MAX = 1 << 10
6061
};
6162

6263
enum WakeupReason : uint8_t {

0 commit comments

Comments
 (0)