summaryrefslogtreecommitdiffstats
path: root/inc/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/test.h')
-rwxr-xr-xinc/test.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/inc/test.h b/inc/test.h
new file mode 100755
index 0000000..7d82e73
--- /dev/null
+++ b/inc/test.h
@@ -0,0 +1,67 @@
+/******************************************************************************
+ * Copyright (C) 2018 Colomar Andrés, Alejandro *
+ * Copyright (C) 2018 García Pedroche, Francisco Javier *
+ * SPDX-License-Identifier: GPL-2.0-only *
+ ******************************************************************************/
+
+/**
+ * @file test.h
+ * @author Colomar Andrés, Alejandro
+ * @author García Pedroche, Francisco Javier
+ * @copyright GPL-2.0-only
+ * @date 2018/jan/02
+ * @brief Test modules
+ */
+
+
+/******************************************************************************
+ ******* include guard ********************************************************
+ ******************************************************************************/
+# ifndef TEST_H
+ # define TEST_H
+
+
+/******************************************************************************
+ ******* headers **************************************************************
+ ******************************************************************************/
+/* Standard C ----------------------------------------------------------------*/
+/* Drivers -------------------------------------------------------------------*/
+/* libalx --------------------------------------------------------------------*/
+/* STM32L4 modules -----------------------------------------------------------*/
+
+
+/******************************************************************************
+ ******* macros ***************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* enums ****************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* structs **************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* variables ************************************************************
+ ******************************************************************************/
+
+
+/******************************************************************************
+ ******* functions ************************************************************
+ ******************************************************************************/
+int test (void);
+
+
+/******************************************************************************
+ ******* include guard ********************************************************
+ ******************************************************************************/
+# endif /* test.h */
+
+
+/******************************************************************************
+ ******* end of file **********************************************************
+ ******************************************************************************/