Skip to content

Commit

Permalink
shell: Enable I3C shell support for STM32.
Browse files Browse the repository at this point in the history
This commit introduces support for I3C shell on STM32.

Signed-off-by: Mohammad Badawi <[email protected]>
Signed-off-by: Sara Touqan <[email protected]>
  • Loading branch information
ExaltZephyr authored and ExaltZephyr committed Dec 1, 2024
1 parent 0c64c9c commit 0533e29
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/i3c/i3c_shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ struct i3c_ctrl {
DT_FOREACH_STATUS_OKAY(cdns_i3c, I3C_CTRL_FN)
DT_FOREACH_STATUS_OKAY(nuvoton_npcx_i3c, I3C_CTRL_FN)
DT_FOREACH_STATUS_OKAY(nxp_mcux_i3c, I3C_CTRL_FN)
DT_FOREACH_STATUS_OKAY(st_stm32_i3c, I3C_CTRL_FN)
/* zephyr-keep-sorted-stop */

#define I3C_CTRL_LIST_ENTRY(node_id) \
Expand All @@ -96,6 +97,7 @@ const struct i3c_ctrl i3c_list[] = {
DT_FOREACH_STATUS_OKAY(cdns_i3c, I3C_CTRL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nuvoton_npcx_i3c, I3C_CTRL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(nxp_mcux_i3c, I3C_CTRL_LIST_ENTRY)
DT_FOREACH_STATUS_OKAY(st_stm32_i3c, I3C_CTRL_LIST_ENTRY)
/* zephyr-keep-sorted-stop */
};

Expand Down

0 comments on commit 0533e29

Please sign in to comment.