tutorial: dummy subsystem

This commit is contained in:
martin
2023-07-07 09:55:36 +02:00
parent c665b64966
commit 6772c7bfc8
4 changed files with 82 additions and 0 deletions

19
include/dummy/dummy.h Normal file
View File

@@ -0,0 +1,19 @@
/**
* \file dummy.h
*
* \brief A dummy subsystem.
*/
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint8_t dummy_random(void);
#ifdef __cplusplus
}
#endif