浏览代码

add rng.h

balbekova 8 年之前
父节点
当前提交
c3ea4f6b44
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      peripheral_modules/inc/rng.h

+ 16 - 0
peripheral_modules/inc/rng.h

@@ -0,0 +1,16 @@
+/*
+ * rng.h
+ *
+ *  Created on: 26.01.2016
+ *      Author: pavel
+ */
+#include <stdint.h>
+
+#ifndef RNG_H_
+#define RNG_H_
+
+
+void RNG_Init(void);
+uint32_t GetRandomNumber(void);
+
+#endif /* RNG_H_ */