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.
74 lines
2.5 KiB
C
74 lines
2.5 KiB
C
4 years ago
|
/*-------------------------------------------------------------------------
|
||
|
* 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_MCC_PIC32C_H
|
||
|
#define __XC_MCC_PIC32C_H
|
||
|
|
||
|
|
||
|
#if defined(__SAMD21E17L__)
|
||
|
# include <samd21e17l.h>
|
||
|
#elif defined(__SAMD21E15L__)
|
||
|
# include <samd21e15l.h>
|
||
|
#elif defined(__SAMD21G17L__)
|
||
|
# include <samd21g17l.h>
|
||
|
#elif defined(__SAMD21E16L__)
|
||
|
# include <samd21e16l.h>
|
||
|
#elif defined(__SAMD21G16L__)
|
||
|
# include <samd21g16l.h>
|
||
|
#elif defined(__SAMD21G15L__)
|
||
|
# include <samd21g15l.h>
|
||
|
#else
|
||
|
/* Try the legacy file */
|
||
|
#include "../include/xc.h"
|
||
|
#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_MCC_PIC32C_H */
|