aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/AVR/hal_lld.c
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.c
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.c')
-rw-r--r--os/hal/ports/AVR/hal_lld.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/os/hal/ports/AVR/hal_lld.c b/os/hal/ports/AVR/hal_lld.c
deleted file mode 100644
index fef8b7084..000000000
--- a/os/hal/ports/AVR/hal_lld.c
+++ /dev/null
@@ -1,55 +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.c
- * @brief AVR HAL subsystem low level driver code.
- *
- * @addtogroup HAL
- * @{
- */
-
-#include "hal.h"
-
-/*===========================================================================*/
-/* Driver exported variables. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver local variables and types. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver local functions. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver interrupt handlers. */
-/*===========================================================================*/
-
-/*===========================================================================*/
-/* Driver exported functions. */
-/*===========================================================================*/
-
-/**
- * @brief Low level HAL driver initialization.
- *
- * @notapi
- */
-void hal_lld_init(void) {
-}
-
-/** @} */