aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/AVR/TINY/hal_lld.h
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-08-13 14:18:30 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-08-13 14:18:30 +0000
commit0879845f96744ce1c0548d3abeb55c392ef47c00 (patch)
treee5c0cbbe028f7bad6fc023c962bff3c6d463ae5b /os/hal/ports/AVR/TINY/hal_lld.h
parentcd06f9a246cf6c5d7009712d815dacf1632ffd64 (diff)
downloadChibiOS-0879845f96744ce1c0548d3abeb55c392ef47c00.tar.gz
ChibiOS-0879845f96744ce1c0548d3abeb55c392ef47c00.tar.bz2
ChibiOS-0879845f96744ce1c0548d3abeb55c392ef47c00.zip
Update the AVR Tiny Architecture.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10412 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/AVR/TINY/hal_lld.h')
-rw-r--r--os/hal/ports/AVR/TINY/hal_lld.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/os/hal/ports/AVR/TINY/hal_lld.h b/os/hal/ports/AVR/TINY/hal_lld.h
deleted file mode 100644
index eca18ffc3..000000000
--- a/os/hal/ports/AVR/TINY/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 */
-
-/** @} */