Add info stats module

This commit is contained in:
2026-06-15 19:47:01 +02:00
parent 33de82aa1c
commit 8bd82613e9
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
__pycache__/
+2
View File
@@ -57,6 +57,7 @@ static void stats_module(){
exit(-1); exit(-1);
} }
printf("Retrieving random values...\n");
for (size_t i = 0; i < 100; i++){ for (size_t i = 0; i < 100; i++){
status = send_uart(&s_prng); status = send_uart(&s_prng);
//printf("%d %d %llu %llu\n", s_prng->p, s_prng->q, s_prng->seed, s_prng->output); //printf("%d %d %llu %llu\n", s_prng->p, s_prng->q, s_prng->seed, s_prng->output);
@@ -66,6 +67,7 @@ static void stats_module(){
write(fd, str, strlen(str)); write(fd, str, strlen(str));
write(fd, "\n", 1); write(fd, "\n", 1);
} }
printf("finish to get random values\n");
close(fd); close(fd);
} }