summaryrefslogtreecommitdiff
path: root/Libraries/WiShield/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/WiShield/global.h')
-rw-r--r--Libraries/WiShield/global.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/Libraries/WiShield/global.h b/Libraries/WiShield/global.h
new file mode 100644
index 0000000..f268c4f
--- /dev/null
+++ b/Libraries/WiShield/global.h
@@ -0,0 +1,34 @@
+/*! \file global.h \brief AVRlib project global include. */
+//*****************************************************************************
+//
+// File Name : 'global.h'
+// Title : AVRlib project global include
+// Author : Pascal Stang - Copyright (C) 2001-2002
+// Created : 7/12/2001
+// Revised : 9/30/2002
+// Version : 1.1
+// Target MCU : Atmel AVR series
+// Editor Tabs : 4
+//
+// Description : This include file is designed to contain items useful to all
+// code files and projects.
+//
+// This code is distributed under the GNU Public License
+// which can be found at http://www.gnu.org/licenses/gpl.txt
+//
+//*****************************************************************************
+
+#ifndef GLOBAL_H
+#define GLOBAL_H
+
+#include "uip.h"
+
+// global AVRLIB defines
+#include "avrlibdefs.h"
+// global AVRLIB types definitions
+#include "avrlibtypes.h"
+
+// project/system dependent defines
+#define CYCLES_PER_US ((F_CPU+500000)/1000000) // cpu cycles per microsecond
+
+#endif