aboutsummaryrefslogtreecommitdiffstats
path: root/os/io/phy.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-09-25 10:38:58 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-09-25 10:38:58 +0000
commitdf471c97569f94d75efcdd00d19274bab243c981 (patch)
tree6fd7aaf635ed18f73f82992cbde409313dd09c22 /os/io/phy.h
parentd107ffedee36864fc238e791bddb02320a7bb30e (diff)
downloadChibiOS-df471c97569f94d75efcdd00d19274bab243c981.tar.gz
ChibiOS-df471c97569f94d75efcdd00d19274bab243c981.tar.bz2
ChibiOS-df471c97569f94d75efcdd00d19274bab243c981.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1180 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/io/phy.h')
-rw-r--r--os/io/phy.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/os/io/phy.h b/os/io/phy.h
new file mode 100644
index 000000000..7bf09b8c3
--- /dev/null
+++ b/os/io/phy.h
@@ -0,0 +1,42 @@
+/*
+ ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+
+ This file is part of ChibiOS/RT.
+
+ ChibiOS/RT is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ ChibiOS/RT is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+/**
+ * @file phy.h
+ * @brief PHY Driver macros and structures.
+ * @addtogroup PHY
+ * @{
+ */
+
+#ifndef _PHY_H_
+#define _PHY_H_
+
+#include "phy_lld.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+ void phyInit(void);
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _PHY_H_ */
+
+/** @} */