:orphan: .. title:: SOC_PART_NUMBER_LPC55XXX .. option:: CONFIG_SOC_PART_NUMBER_LPC55XXX *(No prompt -- not directly user assignable.)* Type: ``string`` Help ==== .. code-block:: none This string holds the full part number of the SoC. It is a hidden option that you should not set directly. The part number selection choice defines the default value for this string. Direct dependencies =================== \ :option:`SOC_SERIES_LPC55XXX ` && \ :option:`SOC_FAMILY_LPC ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - "LPC55S16JBD100" if \ :option:`SOC_PART_NUMBER_LPC55S16JBD100 ` - "LPC55S28JBD100" if \ :option:`SOC_PART_NUMBER_LPC55S28JBD100 ` - "LPC55S69JBD100" if \ :option:`SOC_PART_NUMBER_LPC55S69JBD100 ` - "LPC55S69JET98" if \ :option:`SOC_PART_NUMBER_LPC55S69JET98 ` Kconfig definition ================== At ``/arm/nxp_lpc/lpc55xxx/Kconfig.soc:67`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:28`` → ``/Kconfig:11`` → ``/kconfig/Kconfig.soc.arch:2`` → ``/arm/nxp_lpc/Kconfig:14`` Menu path: (Top) → Hardware Configuration .. code-block:: kconfig config SOC_PART_NUMBER_LPC55XXX string default "LPC55S16JBD100" if SOC_PART_NUMBER_LPC55S16JBD100 default "LPC55S28JBD100" if SOC_PART_NUMBER_LPC55S28JBD100 default "LPC55S69JBD100" if SOC_PART_NUMBER_LPC55S69JBD100 default "LPC55S69JET98" if SOC_PART_NUMBER_LPC55S69JET98 depends on SOC_SERIES_LPC55XXX && SOC_FAMILY_LPC help This string holds the full part number of the SoC. It is a hidden option that you should not set directly. The part number selection choice defines the default value for this string. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*