mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 22:53:02 +01:00
41 lines
819 B
C
41 lines
819 B
C
|
/*
|
||
|
* Copyright (C) 2020 Inria
|
||
|
*
|
||
|
* This file is subject to the terms and conditions of the GNU Lesser
|
||
|
* General Public License v2.1. See the file LICENSE in the top level
|
||
|
* directory for more details.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @ingroup pkg_uwb_core
|
||
|
* @{
|
||
|
*
|
||
|
* @file
|
||
|
* @brief Abstraction layer for RIOT adaption
|
||
|
*
|
||
|
* @author Francisco Molina <francois-xavier.molina@inria.fr>
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
#ifndef DPL_DPL_H
|
||
|
#define DPL_DPL_H
|
||
|
|
||
|
#include "syscfg/syscfg.h"
|
||
|
#include "dpl/dpl_types.h"
|
||
|
#include "dpl/dpl_error.h"
|
||
|
#include "dpl/dpl_eventq.h"
|
||
|
#include "dpl/dpl_callout.h"
|
||
|
#include "dpl/dpl_cputime.h"
|
||
|
#include "dpl/dpl_mutex.h"
|
||
|
#include "dpl/dpl_os.h"
|
||
|
#include "dpl/dpl_sem.h"
|
||
|
#include "dpl/dpl_tasks.h"
|
||
|
#include "dpl/dpl_time.h"
|
||
|
#include "kernel_defines.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#endif /* DPL_DPL_H */
|