-
Notifications
You must be signed in to change notification settings - Fork 8k
drivers: led: is31fl3197 Arduino GIGA #96821
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
KurtE
wants to merge
5
commits into
zephyrproject-rtos:main
Choose a base branch
from
KurtE:giga_shield_leds
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+733
−439
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
95f8b0c
drivers: led: rename IS31FL3194 to 9x
KurtE d9f973d
drivers: led: is31fl319x - hard coded registers
KurtE 5297d61
drivers: led: is31fl319x - redo color to channel
KurtE ce5812a
drivers: led: is31fl319x add is31fl3197 support
KurtE f4e7c5c
boards: shields: arduino_giga_display_shield: add LED to DT
KurtE File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ supported: | |
- gpio | ||
- arduino_spi | ||
- spi | ||
- i2c | ||
- memc | ||
- usb_device | ||
vendor: arduino |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 @@ | ||
# Copyright (c) 2024 Arduino SA | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config IS31FL3197 | ||
bool "IS31FL3197 LED driver" | ||
default y | ||
depends on DT_HAS_ISSI_IS31FL3197_ENABLED | ||
select I2C | ||
help | ||
Enable LED driver for Lumissil Microsystems (a division of ISSI) | ||
IS31FL3197. This chip supports one RGB LED or 4 independent LEDs. |
7 changes: 4 additions & 3 deletions
7
drivers/led/Kconfig.is31fl3194 → drivers/led/Kconfig.is31fl319x
This file contains hidden or 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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# Copyright (c) 2024 Arduino SA | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config IS31FL3194 | ||
bool "IS31FL3194 LED driver" | ||
config IS31FL319X | ||
bool "IS31FL319X LED driver" | ||
default y | ||
depends on DT_HAS_ISSI_IS31FL3194_ENABLED | ||
depends on DT_HAS_ISSI_IS31FL3194_ENABLED || DT_HAS_ISSI_IS31FL3197_ENABLED | ||
select I2C | ||
help | ||
Enable LED driver for Lumissil Microsystems (a division of ISSI) | ||
IS31FL3194. This chip supports one RGB LED or 3 independent LEDs. | ||
IS31FL3197. This chip supports 4 LEDs. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.