aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/AVR/hal_lld.h
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-07-14 00:39:35 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-07-14 00:39:35 +0000
commit655eadd2551098ea703ff84e0907f8ac2cfea5b5 (patch)
tree95c5d666a8e1a5b3daa44018111003178a2ebd88 /os/hal/ports/AVR/hal_lld.h
parentb18cb4d9a5c1007657d8cb4958841e80d48a8a89 (diff)
downloadChibiOS-655eadd2551098ea703ff84e0907f8ac2cfea5b5.tar.gz
ChibiOS-655eadd2551098ea703ff84e0907f8ac2cfea5b5.tar.bz2
ChibiOS-655eadd2551098ea703ff84e0907f8ac2cfea5b5.zip
Adding AVR family subdirecories.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10326 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/AVR/hal_lld.h')
-rw-r--r--os/hal/ports/AVR/hal_lld.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/os/hal/ports/AVR/hal_lld.h b/os/hal/ports/AVR/hal_lld.h
deleted file mode 100644
index eca18ffc3..000000000
--- a/os/hal/ports/AVR/hal_lld.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- ChibiOS - Copyright (C) 2006..2016 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 AVR HAL subsystem low level driver header.
- *
- * @addtogroup HAL
- * @{
- */
-
-#ifndef HAL_LLD_H
-#define HAL_LLD_H
-
-/*===========================================================================*/
-/* Driver constants. */
-/*===========================================================================*/
-
-/**
- * @brief Defines the support for realtime counters in the HAL.
- */
-#define HAL_IMPLEMENTS_COUNTERS FALSE
-
-/**
- * @brief Platform name.
- */
-#define PLATFORM_NAME "AVR"
-
-/*===========================================================================*/
-/* Driver pre-compile time settings. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Derived constants and error checks. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver data structures and types. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver macros. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* External declarations. */
-/*===========================================================================*/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
- void hal_lld_init(void);
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* HAL_LLD_H */
-
-/** @} */