mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 10:03:50 +01:00
39 lines
776 B
C
39 lines
776 B
C
/*
|
|
* Copyright (C) 2023 Otto-von-Guericke-Universität Magdeburg
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef ARDUINO_PINMAP_H
|
|
#define ARDUINO_PINMAP_H
|
|
|
|
/**
|
|
* @ingroup drivers
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Compatibility wrapper for `arduino_iomap.h`.
|
|
*
|
|
* Please update your code to include `arduino_iomap.h` instead.
|
|
*
|
|
* @author Marian Buschsieweke <marian.buschsieweke@posteo.net>
|
|
*/
|
|
|
|
#include "arduino_iomap.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* just a wrapper for arduino_iomap.h for backward compatibility, no code
|
|
* here ... */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|
|
#endif /* ARDUINO_PINMAP_H */
|