工具与软件:
嗨团队、
我使用的是 SDK CC1310 2.40、
1. TRNG 中提到的采样值的数量与实际生成的随机数之间有何关系?
2.如果我将最大采样值设置为8192、那么它是否只会生成8192个随机值?

This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
嗨、团队:
3. 我使用的是 CC1310 2.40 SDK。 当在程序中使用 TRNG 时、TRNGConfigure 配置为 MIN-RESRANG_CYCLES 设置为1、MAX-RESRANG_CYCLES 设置为1、SMPL_DIV 设置为0。 生成的随机数是否在64到256范围内? 但是、在实际调试中、发现生成的值 TRNG_LOW-WORD 大于256。 配置是否有问题
POWER_setDependency (PowerCC26XX_PERIPH_TRNG);
TRNGConfigure (64,256、0);
TRNGEnable();
while (! (TRNGStatusGet ()& TRNG_NUMBER_READY)){
// Task_sleep (100);
}
Bar = TRNGNumberGet (TRNG_LOW_WORD);
TRNGDisable();
power_releaseDependency (PowerCC26XX_Periph_TRNG);