:orphan: .. title:: SOC_ATMEL_SAM4E_PLLA_MULA .. option:: CONFIG_SOC_ATMEL_SAM4E_PLLA_MULA *PLL MULA* Type: ``hex`` Help ==== This is the multiplier (MULA) used by the PLL. The processor clock is (MAINCK * (MULA + 1) / DIVA). Board config file can override this settings for a particular board. With default of MULA == 9, and DIVA == 1, PLL is running at 10 times of main clock. Direct dependencies =================== \ :option:`SOC_SERIES_SAM4E ` && \ :option:`SOC_FAMILY_SAM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 0x09 Kconfig definition ================== .. highlight:: kconfig At ``soc/arm/atmel_sam/sam4e/Kconfig.soc:56`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:28`` → ``soc/Kconfig:11`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.arch:2`` → ``soc/arm/atmel_sam/Kconfig:17`` Menu path: (Top) → Hardware Configuration .. parsed-literal:: config SOC_ATMEL_SAM4E_PLLA_MULA hex "PLL MULA" default 0x09 depends on \ :option:`SOC_SERIES_SAM4E ` && \ :option:`SOC_FAMILY_SAM ` help This is the multiplier (MULA) used by the PLL. The processor clock is (MAINCK * (MULA + 1) / DIVA). Board config file can override this settings for a particular board. With default of MULA == 9, and DIVA == 1, PLL is running at 10 times of main clock. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*