Repostiory containing DAPLink source code with Reset Pin workaround for HANI_IOT board.

Upstream: https://github.com/ARMmbed/DAPLink

Committer:
Pawel Zarembski
Date:
Tue Apr 07 12:55:42 2020 +0200
Revision:
0:01f31e923fe2
hani: DAPLink with reset workaround

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pawel Zarembski 0:01f31e923fe2 1 /* ----------------------------------------------------------------------------
Pawel Zarembski 0:01f31e923fe2 2 * SAM Software Package License
Pawel Zarembski 0:01f31e923fe2 3 * ----------------------------------------------------------------------------
Pawel Zarembski 0:01f31e923fe2 4 * Copyright (c) 2013, Atmel Corporation
Pawel Zarembski 0:01f31e923fe2 5 *
Pawel Zarembski 0:01f31e923fe2 6 * All rights reserved.
Pawel Zarembski 0:01f31e923fe2 7 *
Pawel Zarembski 0:01f31e923fe2 8 * Redistribution and use in source and binary forms, with or without
Pawel Zarembski 0:01f31e923fe2 9 * modification, are permitted provided that the following condition is met:
Pawel Zarembski 0:01f31e923fe2 10 *
Pawel Zarembski 0:01f31e923fe2 11 * - Redistributions of source code must retain the above copyright notice,
Pawel Zarembski 0:01f31e923fe2 12 * this list of conditions and the disclaimer below.
Pawel Zarembski 0:01f31e923fe2 13 *
Pawel Zarembski 0:01f31e923fe2 14 * Atmel's name may not be used to endorse or promote products derived from
Pawel Zarembski 0:01f31e923fe2 15 * this software without specific prior written permission.
Pawel Zarembski 0:01f31e923fe2 16 *
Pawel Zarembski 0:01f31e923fe2 17 * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
Pawel Zarembski 0:01f31e923fe2 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
Pawel Zarembski 0:01f31e923fe2 19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
Pawel Zarembski 0:01f31e923fe2 20 * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
Pawel Zarembski 0:01f31e923fe2 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Pawel Zarembski 0:01f31e923fe2 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
Pawel Zarembski 0:01f31e923fe2 23 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Pawel Zarembski 0:01f31e923fe2 24 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Pawel Zarembski 0:01f31e923fe2 25 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
Pawel Zarembski 0:01f31e923fe2 26 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Pawel Zarembski 0:01f31e923fe2 27 * ----------------------------------------------------------------------------
Pawel Zarembski 0:01f31e923fe2 28 */
Pawel Zarembski 0:01f31e923fe2 29 #ifndef _SAM3U_
Pawel Zarembski 0:01f31e923fe2 30 #define _SAM3U_
Pawel Zarembski 0:01f31e923fe2 31
Pawel Zarembski 0:01f31e923fe2 32 #if defined (__SAM3U4E__)
Pawel Zarembski 0:01f31e923fe2 33 #include "sam3u4e.h"
Pawel Zarembski 0:01f31e923fe2 34 #elif defined (__SAM3U4C__)
Pawel Zarembski 0:01f31e923fe2 35 #include "sam3u4c.h"
Pawel Zarembski 0:01f31e923fe2 36 #elif defined (__SAM3U2E__)
Pawel Zarembski 0:01f31e923fe2 37 #include "sam3u2e.h"
Pawel Zarembski 0:01f31e923fe2 38 #elif defined (__SAM3U2C__)
Pawel Zarembski 0:01f31e923fe2 39 #include "sam3u2c.h"
Pawel Zarembski 0:01f31e923fe2 40 #elif defined (__SAM3U1E__)
Pawel Zarembski 0:01f31e923fe2 41 #include "sam3u1e.h"
Pawel Zarembski 0:01f31e923fe2 42 #elif defined (__SAM3U1C__)
Pawel Zarembski 0:01f31e923fe2 43 #include "sam3u1c.h"
Pawel Zarembski 0:01f31e923fe2 44 #endif
Pawel Zarembski 0:01f31e923fe2 45
Pawel Zarembski 0:01f31e923fe2 46 #endif /* _SAM3U_ */