62 lines
2.3 KiB
C
62 lines
2.3 KiB
C
/*******************************************************************************
|
|
* Copyright (C) 2019 Microchip Technology Inc. and its subsidiaries.
|
|
*
|
|
* Subject to your compliance with these terms, you may use Microchip software
|
|
* and any derivatives exclusively with Microchip products. It is your
|
|
* responsibility to comply with third party license terms applicable to your
|
|
* use of third party software (including open source software) that may
|
|
* accompany Microchip software.
|
|
*
|
|
* THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
|
|
* EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
|
|
* WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
|
|
* PARTICULAR PURPOSE.
|
|
*
|
|
* IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
|
|
* INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
|
|
* WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS
|
|
* BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE
|
|
* FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN
|
|
* ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
|
|
* THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
|
|
*******************************************************************************/
|
|
|
|
#ifndef TOOLCHAIN_SPECIFICS_H
|
|
#define TOOLCHAIN_SPECIFICS_H
|
|
|
|
#ifdef __cplusplus // Provide C++ Compatibility
|
|
extern "C" {
|
|
#endif
|
|
|
|
#pragma GCC diagnostic push
|
|
#ifndef __cplusplus
|
|
#pragma GCC diagnostic ignored "-Wnested-externs"
|
|
#endif
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
#pragma GCC diagnostic ignored "-Wattributes"
|
|
#pragma GCC diagnostic ignored "-Wundef"
|
|
#include "cmsis_compiler.h"
|
|
#pragma GCC diagnostic pop
|
|
|
|
#include <sys/types.h>
|
|
|
|
#define NO_INIT __attribute__((section(".no_init")))
|
|
#define SECTION(a) __attribute__((__section__(a)))
|
|
|
|
#define CACHE_LINE_SIZE (16u)
|
|
#define CACHE_ALIGN __ALIGNED(CACHE_LINE_SIZE)
|
|
|
|
#define CACHE_ALIGNED_SIZE_GET(size) ((size) + ((((size) % (CACHE_LINE_SIZE))!= 0U)? ((CACHE_LINE_SIZE) - ((size) % (CACHE_LINE_SIZE))) : (0U)))
|
|
|
|
#ifndef FORMAT_ATTRIBUTE
|
|
#define FORMAT_ATTRIBUTE(archetype, string_index, first_to_check) __attribute__ ((format (archetype, string_index, first_to_check)))
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // end of header
|
|
|