aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/simulator/win32/hal_lld.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-03 14:07:06 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-11-03 14:07:06 +0000
commit8b0021db47f08c7523609987d87be34176bbe9d4 (patch)
treef8f0e4efdb5b51a3c230bb98eaeef298a4e7428f /os/hal/ports/simulator/win32/hal_lld.h
parentfb68952e20435450ece99a1d1bbc399bf292b355 (diff)
downloadChibiOS-8b0021db47f08c7523609987d87be34176bbe9d4.tar.gz
ChibiOS-8b0021db47f08c7523609987d87be34176bbe9d4.tar.bz2
ChibiOS-8b0021db47f08c7523609987d87be34176bbe9d4.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7472 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/simulator/win32/hal_lld.h')
-rw-r--r--os/hal/ports/simulator/win32/hal_lld.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/os/hal/ports/simulator/win32/hal_lld.h b/os/hal/ports/simulator/win32/hal_lld.h
new file mode 100644
index 000000000..6b1da9a59
--- /dev/null
+++ b/os/hal/ports/simulator/win32/hal_lld.h
@@ -0,0 +1,67 @@
+/*
+ ChibiOS/HAL - Copyright (C) 2006-2014 Giovanni Di Sirio
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+/**
+ * @file hal_lld.h
+ * @brief WIN32 simulator HAL subsystem low level driver header.
+ *
+ * @addtogroup WIN32_HAL
+ * @{
+ */
+
+#ifndef _HAL_LLD_H_
+#define _HAL_LLD_H_
+
+#include <windows.h>
+#include <stdio.h>
+
+/*===========================================================================*/
+/* Driver constants. */
+/*===========================================================================*/
+
+/**
+ * @brief Platform name.
+ */
+#define PLATFORM_NAME "Win32 Simulator"
+
+/*===========================================================================*/
+/* Driver pre-compile time settings. */
+/*===========================================================================*/
+
+/*===========================================================================*/
+/* Derived constants and error checks. */
+/*===========================================================================*/
+
+/*===========================================================================*/
+/* Driver data structures and types. */
+/*===========================================================================*/
+
+/*===========================================================================*/
+/* External declarations. */
+/*===========================================================================*/
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+ void hal_lld_init(void);
+ void _sim_check_for_interrupts(void);
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _HAL_LLD_H_ */
+
+/** @} */