1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 10:03:50 +01:00

Merge pull request #18995 from kfessel/p-cleanup-pufsram

sys/puf_sram: cleanup header
This commit is contained in:
Marian Buschsieweke 2022-12-07 20:39:17 +01:00 committed by GitHub
commit eea954cc22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -58,8 +58,9 @@
extern "C" { extern "C" {
#endif #endif
#include "hashes.h" #include <stdbool.h>
#include "thread.h" #include <stddef.h>
#include <stdint.h>
/** /**
* @brief SRAM length considered for seeding * @brief SRAM length considered for seeding

View File

@ -16,6 +16,8 @@
* *
* @} * @}
*/ */
#include "cpu_conf.h"
#include "hashes.h"
#include "puf_sram.h" #include "puf_sram.h"
/* Allocation of the PUF seed variable */ /* Allocation of the PUF seed variable */