:orphan: .. title:: ENTROPY_CC13XX_CC26XX_SAMPLES_PER_CYCLE .. option:: CONFIG_ENTROPY_CC13XX_CC26XX_SAMPLES_PER_CYCLE *Number of samples to generate entropy* Type: ``int`` Help ==== The number of samples used to generate entropy. The time required to generate 64 bits of entropy is determined by the number of FROs enabled, the sampling (system) clock frequency, and this value. Direct dependencies =================== \ :option:`ENTROPY_CC13XX_CC26XX_RNG ` && \ :option:`ENTROPY_GENERATOR ` *(Includes any dependencies from ifs and menus.)* Default ======= - 240000 Kconfig definition ================== .. highlight:: kconfig At ``drivers/entropy/Kconfig.cc13xx_cc26xx:24`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:30`` → ``drivers/entropy/Kconfig:13`` Menu path: (Top) → Device Drivers → Entropy Drivers → TI SimpleLink CC13xx / CC26xx True Random Number Generator (TRNG) .. parsed-literal:: config ENTROPY_CC13XX_CC26XX_SAMPLES_PER_CYCLE int "Number of samples to generate entropy" range 256 16777216 default 240000 depends on \ :option:`ENTROPY_CC13XX_CC26XX_RNG ` && \ :option:`ENTROPY_GENERATOR ` help The number of samples used to generate entropy. The time required to generate 64 bits of entropy is determined by the number of FROs enabled, the sampling (system) clock frequency, and this value. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*