summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/hardware/rasberrypi/includes/RPIPeripheralUtil.h
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/src/c/hardware/rasberrypi/includes/RPIPeripheralUtil.h')
-rw-r--r--2.3-1/src/c/hardware/rasberrypi/includes/RPIPeripheralUtil.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/2.3-1/src/c/hardware/rasberrypi/includes/RPIPeripheralUtil.h b/2.3-1/src/c/hardware/rasberrypi/includes/RPIPeripheralUtil.h
new file mode 100644
index 00000000..809595f3
--- /dev/null
+++ b/2.3-1/src/c/hardware/rasberrypi/includes/RPIPeripheralUtil.h
@@ -0,0 +1,20 @@
+/* This file declares functions and constants related to rasberrypi*/
+
+#ifndef __RPIPERIPHERALUTIL_H__
+#define __RPIPERIPHERALUTIL_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "types.h"
+#include "bcm2835.h"
+
+uint8 u16RPIDelayMillis(uint16 time);
+uint8 u16RPIDelayMicros(uint16 time);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif //__RPIPERIPHERALUTIL_H__