Skip to content

Commit 0d554f0

Browse files
authored
Merge branch 'main' into main
2 parents 4e04f1e + ed5a44a commit 0d554f0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

FrontPanel/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
## [1.0.9] - 2024-11-29
20+
### Added
21+
- Fixed sharp FP issue
22+
1923
## [1.0.8] - 2024-09-30
2024
### Added
2125
- Fixed getFrontPanelIndicatorInfo API

FrontPanel/FrontPanel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
#define API_VERSION_NUMBER_MAJOR 1
6767
#define API_VERSION_NUMBER_MINOR 0
68-
#define API_VERSION_NUMBER_PATCH 8
68+
#define API_VERSION_NUMBER_PATCH 9
6969

7070
namespace
7171
{

helpers/frontpanel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ namespace WPEFramework
170170
{
171171
LOGWARN("Initializing light %s", fpIndicators.at(i).getName().c_str());
172172
if (powerStatus)
173-
device::FrontPanelIndicator::getInstance(fpIndicators.at(i).getName()).setBrightness(globalLedBrightness);
173+
device::FrontPanelIndicator::getInstance(fpIndicators.at(i).getName()).setBrightness(globalLedBrightness,false);
174174

175175
device::FrontPanelIndicator::getInstance(fpIndicators.at(i).getName()).setState(false);
176176
}

0 commit comments

Comments
 (0)