You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.3 KiB
C
65 lines
2.3 KiB
C
/*-------------------------------------------------------------------------
|
|
* XC processor header for PIC32C devices
|
|
*
|
|
* Copyright (c) 2017, Microchip Technology Inc. and its subsidiaries ("Microchip")
|
|
* All rights reserved.
|
|
*
|
|
* This software is developed by Microchip Technology Inc. and its
|
|
* subsidiaries ("Microchip").
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the following
|
|
* disclaimer in the documentation and/or other materials provided
|
|
* with the distribution.
|
|
* 3. Microchip's name may not be used to endorse or promote products
|
|
* derived from this software without specific prior written
|
|
* permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY MICROCHIP "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
* SHALL MICROCHIP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS;
|
|
* OR BUSINESS INTERRUPTION) HOWSOEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef __XC_PIC32C_H
|
|
#define __XC_PIC32C_H
|
|
|
|
|
|
#if defined(__SAMD21E15CU__)
|
|
# include <samd21e15cu.h>
|
|
#elif defined(__SAMD21E16CU__)
|
|
# include <samd21e16cu.h>
|
|
#else
|
|
# error Unknown processor for selected DFP!
|
|
#endif
|
|
|
|
|
|
#if defined (__LANGUAGE_C__) || defined (__LANGUAGE_C_PLUS_PLUS__)
|
|
|
|
#ifndef _nop
|
|
#define _nop() __builtin_nop()
|
|
#endif /* _nop */
|
|
|
|
#ifndef Nop
|
|
/* Consider using _nop rather than Nop */
|
|
#define Nop() _nop()
|
|
#endif /* Nop */
|
|
|
|
#endif /* defined (__LANGUAGE_C__) || defined (__LANGUAGE_C_PLUS_PLUS__) */
|
|
|
|
#endif /* __XC_PIC32C_H */
|