MISRAs done for RT.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7727 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
57585301af
commit
272b51ba23
File diff suppressed because it is too large
Load Diff
|
@ -1,129 +0,0 @@
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// This file is provided by Gimpel Software (www.gimpel.com) for use with
|
|
||||||
// its products PC-lint and FlexeLint.
|
|
||||||
//
|
|
||||||
// Redistribution and use of this file, with or without modification, is
|
|
||||||
// permitted provided that any such redistribution retains this notice.
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
|
|
||||||
#ifndef CO_GCC_H_
|
|
||||||
#define CO_GCC_H_
|
|
||||||
/*lint -save -w1 */
|
|
||||||
|
|
||||||
#ifdef _lint /* Make sure no compiler comes this way */
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Standard library headers typically define the assert macro so that it
|
|
||||||
expands to a complicated conditional expression that uses special
|
|
||||||
funtions that Lint does not know about by default. For linting
|
|
||||||
purposes, we can simplify things a bit by forcing assert() to expand to
|
|
||||||
a call to a special function that has the appropriate 'assert'
|
|
||||||
semantics.
|
|
||||||
*/
|
|
||||||
//lint -function( __assert, __lint_assert )
|
|
||||||
void __lint_assert( int );
|
|
||||||
//lint ++d"assert(e)=__lint_assert(!!(e))"
|
|
||||||
//(++d makes this definition permanently immutable for the Lint run.)
|
|
||||||
//Now that we've made our own 'assert', we need to keep people from being
|
|
||||||
//punished when the marco in 'assert.h' appears not to be used:
|
|
||||||
//lint -efile(766,*assert.h)
|
|
||||||
|
|
||||||
typedef char *__builtin_va_list;
|
|
||||||
|
|
||||||
/*lint -e{171} */
|
|
||||||
__builtin_va_list __lint_init_va(...);
|
|
||||||
|
|
||||||
void __builtin_va_end( __builtin_va_list );
|
|
||||||
/*lint
|
|
||||||
++d"__builtin_va_start(ap,parmN)=((ap)=__lint_init_va(parmN))"
|
|
||||||
++d"__builtin_va_arg(a,b)=(*( ((b) *) ( (((a) += sizeof(b)) - sizeof(b) )))"
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
The headers included below must be generated; For C++, generate
|
|
||||||
with:
|
|
||||||
|
|
||||||
g++ [usual build options] -E -dM t.cpp >lint_cppmac.h
|
|
||||||
|
|
||||||
For C, generate with:
|
|
||||||
|
|
||||||
gcc [usual build options] -E -dM t.c >lint_cmac.h
|
|
||||||
|
|
||||||
...where "t.cpp" and "t.c" are empty source files.
|
|
||||||
|
|
||||||
It's important to use the same compiler options used when compiling
|
|
||||||
project code because they can affect the existence and precise
|
|
||||||
definitions of certain predefined macros. See gcc-readme.txt for
|
|
||||||
details and a tutorial.
|
|
||||||
*/
|
|
||||||
#if defined(__cplusplus)
|
|
||||||
# include "lint_cppmac.h" // DO NOT COMMENT THIS OUT. DO NOT SUPPRESS ERROR 322. (If you see an error here, your Lint configuration is broken; check -i options and ensure that you have generated lint_cppmac.h as documented in gcc-readme.txt. Otherwise Gimpel Software cannot support your configuration.)
|
|
||||||
#else
|
|
||||||
# include "lint_cmac.h" // DO NOT COMMENT THIS OUT. DO NOT SUPPRESS ERROR 322. (If you see an error here, your Lint configuration is broken; check -i options and ensure that you have generated lint_cmac.h as documented in gcc-readme.txt. Otherwise Gimpel Software cannot support your configuration.)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* If the macro set given by the generated macro files must be adjusted in
|
|
||||||
order for Lint to cope, then you can make those adjustments here.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define LINT_CO_GCC_H_GCC_VERSION ( __GNUC__ * 10000 + \
|
|
||||||
__GNUC_MINOR__ * 100 + \
|
|
||||||
__GNUC_PATCHLEVEL__ )
|
|
||||||
|
|
||||||
/* The following is a workaround for versions of GCC with bug 25717, in
|
|
||||||
which the preprocessor does not dump a #define directive for __STDC__
|
|
||||||
when -dM is given:
|
|
||||||
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25717
|
|
||||||
|
|
||||||
We know the unconditional definition of __STDC__ was introduced no
|
|
||||||
later than version 3.0; the preprocessor bug was fixed no later than
|
|
||||||
version 4.1.0.
|
|
||||||
*/
|
|
||||||
#if ( LINT_CO_GCC_H_GCC_VERSION >= 30000 && \
|
|
||||||
LINT_CO_GCC_H_GCC_VERSION < 40100 )
|
|
||||||
# define __STDC__ 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !__cplusplus && !__STRICT_ANSI__ && __STDC_VERSION__ < 199901L
|
|
||||||
/* apparently, the code is compiled with -std=gnu89 (as opposed to -std=c89),
|
|
||||||
so: */
|
|
||||||
/*lint -rw_asgn(inline,__inline) */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if LINT_CO_GCC_H_GCC_VERSION >= 40300
|
|
||||||
# define __COUNTER__ __lint__COUNTER__
|
|
||||||
//lint +rw( *type_traits ) // Enable type traits support
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
} /* extern "C" */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if _lint >= 909 // For 9.00i and later:
|
|
||||||
//// __attribute__ is GCC's __attribute__:
|
|
||||||
//
|
|
||||||
//lint -rw_asgn(__attribute__,__gcc_attribute__)
|
|
||||||
//lint -rw_asgn(__attribute, __gcc_attribute__)
|
|
||||||
//
|
|
||||||
//// Prevent "__attribute__" from being defined as a macro:
|
|
||||||
//
|
|
||||||
//lint --u"__attribute__"
|
|
||||||
//lint --u"__attribute"
|
|
||||||
//
|
|
||||||
//// Because an attribute-specifier is a form of
|
|
||||||
//// declaration-modifier, and because it can appear at the
|
|
||||||
//// beginning of a decl-specifier-seq, we must enable "Early
|
|
||||||
//// Modifiers":
|
|
||||||
//
|
|
||||||
//lint +fem
|
|
||||||
#else // for 9.00h and earlier:
|
|
||||||
//lint -d__attribute__()=
|
|
||||||
//lint -d__attribute()=
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* _lint */
|
|
||||||
/*lint -restore */
|
|
||||||
#endif /* CO_GCC_H_ */
|
|
|
@ -1,209 +0,0 @@
|
||||||
/* Date Stamp */ -d"_lint_co_gcc_lnt=co-gcc.lnt modified 12-Jun-2014"
|
|
||||||
/* To document usage use: -message( "Using " _lint_co_gcc_lnt ) */
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// This file is provided by Gimpel Software (www.gimpel.com) for use with
|
|
||||||
// its products PC-lint and FlexeLint.
|
|
||||||
//
|
|
||||||
// Redistribution and use of this file, with or without modification, is
|
|
||||||
// permitted provided that any such redistribution retains this notice.
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
/* co-gcc.lnt: This is the seed file for configuring Lint for use with
|
|
||||||
GCC versions 2.95.3 and later.
|
|
||||||
|
|
||||||
Like all compiler options files this file is intended to be used
|
|
||||||
as follows:
|
|
||||||
|
|
||||||
lint co-gcc.lnt source-files-to-be-linted
|
|
||||||
|
|
||||||
Some of the information that co-gcc.lnt requires needs to be furnished
|
|
||||||
with the help of the gcc system itself. The easiest way to generate
|
|
||||||
this information is to use the makefile co-gcc.mak (supplied with the
|
|
||||||
Lint distribution) in an invocation of GNU Make; for details, see the
|
|
||||||
commentary at the top of co-gcc.mak.
|
|
||||||
*/
|
|
||||||
|
|
||||||
-cgnu // Notifies FlexeLint that gcc is being used.
|
|
||||||
|
|
||||||
// ===========================
|
|
||||||
// Preprocessor Configuration:
|
|
||||||
+fdi // GCC starts its #include search in the directory of the including
|
|
||||||
// file.
|
|
||||||
|
|
||||||
++fln // Allow:
|
|
||||||
// # digit-sequence " [s-char-sequence] " new-line
|
|
||||||
// as a synonym for:
|
|
||||||
// # line digit-sequence " [s-char-sequence] " new-line
|
|
||||||
// GCC additionally allows flag values to follow the
|
|
||||||
// s-char-sequence, but currently Lint ignores them.
|
|
||||||
|
|
||||||
-header(pclint/co-gcc.h) // Includes headers generated by GCC (bringing in
|
|
||||||
// predefined macros).
|
|
||||||
+libh(pclint/co-gcc.h) // Marks that header as library code.
|
|
||||||
|
|
||||||
pclint/gcc-include-path.lnt // This .lnt file should contain --i options
|
|
||||||
// and should be generated by invoking gcc with its '-v' option.
|
|
||||||
// (GCC's implicit #include search path is presented in the output.)
|
|
||||||
// This happens automatically when 'make -f co-gcc.mak' is invoked.
|
|
||||||
|
|
||||||
// Assertion directives (a feature of GCC's preprocessor) have been
|
|
||||||
// considered obsolete in GCC's documentation since version 3.0, so we do
|
|
||||||
// not use them here. If support for #assert is needed in the form of a
|
|
||||||
// lint option, one may use '-a#' like so:
|
|
||||||
// -a#machine(i386) // #assert's machine(i386) (SVR4 facility).
|
|
||||||
|
|
||||||
// File extensions:
|
|
||||||
// From the GCC man page:
|
|
||||||
//
|
|
||||||
// file.cc
|
|
||||||
// file.cp
|
|
||||||
// file.cxx
|
|
||||||
// file.cpp
|
|
||||||
// file.CPP
|
|
||||||
// file.c++
|
|
||||||
// file.C
|
|
||||||
// C++ source code that must be preprocessed. Note that in .cxx, the
|
|
||||||
// last two letters must both be literally x. Likewise, .C refers to
|
|
||||||
// a literal capital C.
|
|
||||||
//
|
|
||||||
// We emulate this with:
|
|
||||||
|
|
||||||
+cpp(.cc)
|
|
||||||
+cpp(.cp)
|
|
||||||
+cpp(.cxx)
|
|
||||||
+cpp(.cpp)
|
|
||||||
+cpp(.c++)
|
|
||||||
// Note the exceptions:
|
|
||||||
// +cpp(.CPP)
|
|
||||||
// +cpp(.C)
|
|
||||||
// These are commented out for the default config because they seem to
|
|
||||||
// cause trouble more often than not. For starters, it is problematic
|
|
||||||
// with filesystems that are case-insensitive (which has become common
|
|
||||||
// even on some POSIX systems).
|
|
||||||
|
|
||||||
// =============
|
|
||||||
// Size Options:
|
|
||||||
// +fwc // wchar_t might be builtin; if so, uncomment this option. (NOTE:
|
|
||||||
// // this option needs to be set before a size option is given for
|
|
||||||
// // wchar_t; see the documentation for -sw# in the Lint manual.)
|
|
||||||
|
|
||||||
pclint/size-options.lnt // This .lnt file should be generated (preferrably
|
|
||||||
// by a program created by invoking GCC with the compile options that
|
|
||||||
// are used in the compilation of the project to be linted). This
|
|
||||||
// happens automatically when 'make -f co-gcc.mak' is invoked.
|
|
||||||
|
|
||||||
|
|
||||||
// ===========================================
|
|
||||||
// +rw and -d options to cope with GNU syntax:
|
|
||||||
+ppw(ident) // Tolerate #ident
|
|
||||||
+ppw(warning)
|
|
||||||
|
|
||||||
// GCC provides alternative spellings of certain keywords:
|
|
||||||
+rw(__inline)
|
|
||||||
-rw_asgn(__inline__,__inline)
|
|
||||||
-rw_asgn(__header_always_inline,__inline)
|
|
||||||
-rw_asgn(__header_inline,__inline)
|
|
||||||
|
|
||||||
-rw_asgn(__signed__,signed)
|
|
||||||
-rw_asgn(__signed,signed)
|
|
||||||
-rw_asgn( __volatile__, volatile )
|
|
||||||
-rw_asgn( __volatile, volatile )
|
|
||||||
+rw(restrict)
|
|
||||||
-rw_asgn(__restrict,restrict)
|
|
||||||
-rw_asgn(__restrict__,restrict)
|
|
||||||
++d"__const=const" // gconv.h uses __const rather than const
|
|
||||||
++d"const=const" // ensure const expands to const.
|
|
||||||
|
|
||||||
-rw_asgn( asm, _up_to_brackets )
|
|
||||||
-rw_asgn( __asm, _up_to_brackets )
|
|
||||||
-rw_asgn( __asm__, _up_to_brackets )
|
|
||||||
// This re-definition of the various spellings of the asm keyword enables
|
|
||||||
// Lint to pass gracefully over expression-statements like:
|
|
||||||
// __asm __volatile ("fsqrt" : "=t" (__result) : "0" (__x));
|
|
||||||
// But it may be necessary to suppress certain error messages that are
|
|
||||||
// triggered by tokens that are part of an assembly declaration or
|
|
||||||
// statement. For example:
|
|
||||||
|
|
||||||
// -d"__asm__(p...)=/*lint -e{19}*/ __asm__(p)"
|
|
||||||
|
|
||||||
// ...causes Lint to be quiet about the semicolon that follows an
|
|
||||||
// __asm__() declaration. Note, the -e{N} form of suppression takes
|
|
||||||
// effect only for the forward-declaration, definition or
|
|
||||||
// [possibly-compound] statement that immediately follows. Because a
|
|
||||||
// semicolon is seen as a declaration-terminator, Error 19 will be
|
|
||||||
// re-enabled immediately after the semicolon in '__asm__(...);'.
|
|
||||||
// (The elipsis after the macro parameter p allows zero or more commas to
|
|
||||||
// appear in the operand.)
|
|
||||||
//
|
|
||||||
// If you encounter other diagnostics that appear to need suppression in
|
|
||||||
// or near assembly regions, please let us know!
|
|
||||||
//
|
|
||||||
-esym(123,__asm__)
|
|
||||||
|
|
||||||
-rw_asgn(__alignof__,__alignof)
|
|
||||||
|
|
||||||
// "__extension__" is GCC's way of allowing the use of non-standard
|
|
||||||
// constructs in a strict Standard-conforming mode. We don't currently
|
|
||||||
// have explicit support for it, but we can use local suppressions. For
|
|
||||||
// example, we can use -e(160) so that we will not see any Errors about
|
|
||||||
// GNU statement-expressions wrapped in __extension__().
|
|
||||||
++d"__extension__=/*lint -e(160) */"
|
|
||||||
|
|
||||||
++d"__null=0"
|
|
||||||
+rw(_to_semi) // needed for the two macros above.
|
|
||||||
+rw(__typeof__) // activate __typeof__ keyword
|
|
||||||
-d"__typeof=__typeof__" // an alternative to using __typeof__
|
|
||||||
|
|
||||||
-rw(__except) // This MS reserved word is used as an identifier
|
|
||||||
+rw( __complex__, __real__, __imag__ ) // reserved words that can be ignored.
|
|
||||||
++d"__builtin_strchr=(char*)" // permits the inline definition ...
|
|
||||||
++d"__builtin_strpbrk=(char*)" // of these functions to be linted ...
|
|
||||||
++d"__builtin_strrchr=(char*)" // without drawing a complaint
|
|
||||||
++d"__builtin_strstr=(char*)" // about the use of a non-standard name
|
|
||||||
++d"__PRETTY_FUNCTION__=___function___" // lint defines ___function___ internally
|
|
||||||
++d"__FUNCTION__=___function___" // lint defines ___function___ internally
|
|
||||||
++d"__func__=___function___" // Some C++ modes suport the implicit __func__
|
|
||||||
// identifier.
|
|
||||||
-ident($)
|
|
||||||
|
|
||||||
// =========================================================
|
|
||||||
// Other options supporting GNU C/C++ syntax:
|
|
||||||
+fld // enables the processing of _L_abel _D_esignators E.g.:
|
|
||||||
// union { double d; int i; } u = { d: 3.141 };
|
|
||||||
|
|
||||||
// =========================================================
|
|
||||||
// Generally useful suppressions:
|
|
||||||
-wlib(1) // sets the warning level within library headers to 1
|
|
||||||
// (no warnings, just syntax errors). Comment out if you
|
|
||||||
// are actually linting library headers.
|
|
||||||
-elib(123) // 123 is really a warning, but it's in the "Error" range.
|
|
||||||
-elib(93) // allow newlines within quoted string arguments to macros
|
|
||||||
-elib(46) // allow bit fields to have integral types other than
|
|
||||||
// '_Bool' and 'int'.
|
|
||||||
-elibsym(628) // Suppress 628 for __builtin symbols.
|
|
||||||
|
|
||||||
-esym(528,__huge_val,__nan,__qnan,__qnanf,__snan,__snanf)
|
|
||||||
// We don't care if we don't reference some GNU functions
|
|
||||||
-esym(528,__gnu_malloc,__gnu_calloc)
|
|
||||||
|
|
||||||
// The following functions exhibit variable return modes.
|
|
||||||
// That is, they may equally-usefully be called for a value
|
|
||||||
// as called just for their effects. Accordingly we inhibit
|
|
||||||
// Warning 534 for these functions.
|
|
||||||
// Feel free to add to or subtract from this list.
|
|
||||||
|
|
||||||
-esym(534,close,creat,fclose,fprintf,fputc)
|
|
||||||
-esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
|
|
||||||
-esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
|
|
||||||
-esym(534,strncat,strncpy,unlink,write)
|
|
||||||
|
|
||||||
// For non-ANSI compilers we suppress messages 515 and 516
|
|
||||||
// for functions known to have variable argument lists.
|
|
||||||
// For ANSI compilers, header files should take care of this.
|
|
||||||
|
|
||||||
-esym(515,fprintf,printf,sprintf,fscanf,scanf,sscanf)
|
|
||||||
-esym(516,fprintf,printf,sprintf,fscanf,scanf,sscanf)
|
|
||||||
-esym(1702,*operator<<,*operator>>)
|
|
||||||
-esym(534,*operator<<,*operator>>)
|
|
||||||
-esym(1055,*__builtin*)
|
|
||||||
-esym(718,*__builtin*) // The compiler does not need these ...
|
|
||||||
-esym(746,*__builtin*) // declared and it knows their prototypes.
|
|
|
@ -1,6 +0,0 @@
|
||||||
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include"
|
|
||||||
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include/c++/4.9.3"
|
|
||||||
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include/c++/4.9.3/arm-none-eabi"
|
|
||||||
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include/c++/4.9.3/backward"
|
|
||||||
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/lib/gcc/arm-none-eabi/4.9.3/include"
|
|
||||||
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/lib/gcc/arm-none-eabi/4.9.3/include-fixed"
|
|
|
@ -1,330 +0,0 @@
|
||||||
#define __DBL_MIN_EXP__ (-1021)
|
|
||||||
#define __HQ_FBIT__ 15
|
|
||||||
#define __UINT_LEAST16_MAX__ 65535
|
|
||||||
#define __ATOMIC_ACQUIRE 2
|
|
||||||
#define __SFRACT_IBIT__ 0
|
|
||||||
#define __FLT_MIN__ 1.1754943508222875e-38F
|
|
||||||
#define __UFRACT_MAX__ 0XFFFFP-16UR
|
|
||||||
#define __UINT_LEAST8_TYPE__ unsigned char
|
|
||||||
#define __DQ_FBIT__ 63
|
|
||||||
#define __INTMAX_C(c) c ## LL
|
|
||||||
#define __ULFRACT_FBIT__ 32
|
|
||||||
#define __SACCUM_EPSILON__ 0x1P-7HK
|
|
||||||
#define __CHAR_BIT__ 8
|
|
||||||
#define __USQ_IBIT__ 0
|
|
||||||
#define __UINT8_MAX__ 255
|
|
||||||
#define __ACCUM_FBIT__ 15
|
|
||||||
#define __WINT_MAX__ 4294967295U
|
|
||||||
#define __USFRACT_FBIT__ 8
|
|
||||||
#define __ORDER_LITTLE_ENDIAN__ 1234
|
|
||||||
#define __SIZE_MAX__ 4294967295U
|
|
||||||
#define __WCHAR_MAX__ 4294967295U
|
|
||||||
#define __LACCUM_IBIT__ 32
|
|
||||||
#define __DBL_DENORM_MIN__ ((double)4.9406564584124654e-324L)
|
|
||||||
#define __GCC_ATOMIC_CHAR_LOCK_FREE 1
|
|
||||||
#define __FLT_EVAL_METHOD__ 0
|
|
||||||
#define __LLACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LLK
|
|
||||||
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 1
|
|
||||||
#define __FRACT_FBIT__ 15
|
|
||||||
#define __UINT_FAST64_MAX__ 18446744073709551615ULL
|
|
||||||
#define __SIG_ATOMIC_TYPE__ int
|
|
||||||
#define __UACCUM_FBIT__ 16
|
|
||||||
#define __DBL_MIN_10_EXP__ (-307)
|
|
||||||
#define __FINITE_MATH_ONLY__ 0
|
|
||||||
#define __ARMEL__ 1
|
|
||||||
#define __LFRACT_IBIT__ 0
|
|
||||||
#define __GNUC_PATCHLEVEL__ 4
|
|
||||||
#define __LFRACT_MAX__ 0X7FFFFFFFP-31LR
|
|
||||||
#define __UINT_FAST8_MAX__ 4294967295U
|
|
||||||
#define __DEC64_MAX_EXP__ 385
|
|
||||||
#define __INT8_C(c) c
|
|
||||||
#define __UINT_LEAST64_MAX__ 18446744073709551615ULL
|
|
||||||
#define __SA_FBIT__ 15
|
|
||||||
#define __SHRT_MAX__ 32767
|
|
||||||
#define __LDBL_MAX__ 1.7976931348623157e+308L
|
|
||||||
#define __FRACT_MAX__ 0X7FFFP-15R
|
|
||||||
#define __UFRACT_FBIT__ 16
|
|
||||||
#define __UFRACT_MIN__ 0.0UR
|
|
||||||
#define __UINT_LEAST8_MAX__ 255
|
|
||||||
#define __GCC_ATOMIC_BOOL_LOCK_FREE 1
|
|
||||||
#define __UINTMAX_TYPE__ long long unsigned int
|
|
||||||
#define __LLFRACT_EPSILON__ 0x1P-63LLR
|
|
||||||
#define __DEC32_EPSILON__ 1E-6DF
|
|
||||||
#define __CHAR_UNSIGNED__ 1
|
|
||||||
#define __UINT32_MAX__ 4294967295UL
|
|
||||||
#define __ULFRACT_MAX__ 0XFFFFFFFFP-32ULR
|
|
||||||
#define __TA_IBIT__ 64
|
|
||||||
#define __LDBL_MAX_EXP__ 1024
|
|
||||||
#define __WINT_MIN__ 0U
|
|
||||||
#define __ULLFRACT_MIN__ 0.0ULLR
|
|
||||||
#define __SCHAR_MAX__ 127
|
|
||||||
#define __WCHAR_MIN__ 0U
|
|
||||||
#define __INT64_C(c) c ## LL
|
|
||||||
#define __DBL_DIG__ 15
|
|
||||||
#define __GCC_ATOMIC_POINTER_LOCK_FREE 1
|
|
||||||
#define __LLACCUM_MIN__ (-0X1P31LLK-0X1P31LLK)
|
|
||||||
#define __SIZEOF_INT__ 4
|
|
||||||
#define __SIZEOF_POINTER__ 4
|
|
||||||
#define __USACCUM_IBIT__ 8
|
|
||||||
#define __USER_LABEL_PREFIX__
|
|
||||||
#define __STDC_HOSTED__ 1
|
|
||||||
#define __LDBL_HAS_INFINITY__ 1
|
|
||||||
#define __LFRACT_MIN__ (-0.5LR-0.5LR)
|
|
||||||
#define __HA_IBIT__ 8
|
|
||||||
#define __TQ_IBIT__ 0
|
|
||||||
#define __FLT_EPSILON__ 1.1920928955078125e-7F
|
|
||||||
#define __APCS_32__ 1
|
|
||||||
#define __USFRACT_IBIT__ 0
|
|
||||||
#define __LDBL_MIN__ 2.2250738585072014e-308L
|
|
||||||
#define __FRACT_MIN__ (-0.5R-0.5R)
|
|
||||||
#define __DEC32_MAX__ 9.999999E96DF
|
|
||||||
#define __DA_IBIT__ 32
|
|
||||||
#define __INT32_MAX__ 2147483647L
|
|
||||||
#define __UQQ_FBIT__ 8
|
|
||||||
#define __SIZEOF_LONG__ 4
|
|
||||||
#define __UACCUM_MAX__ 0XFFFFFFFFP-16UK
|
|
||||||
#define __UINT16_C(c) c
|
|
||||||
#define __DECIMAL_DIG__ 17
|
|
||||||
#define __LFRACT_EPSILON__ 0x1P-31LR
|
|
||||||
#define __ULFRACT_MIN__ 0.0ULR
|
|
||||||
#define __LDBL_HAS_QUIET_NAN__ 1
|
|
||||||
#define __ULACCUM_IBIT__ 32
|
|
||||||
#define __UACCUM_EPSILON__ 0x1P-16UK
|
|
||||||
#define __GNUC__ 4
|
|
||||||
#define __ULLACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULLK
|
|
||||||
#define __HQ_IBIT__ 0
|
|
||||||
#define __FLT_HAS_DENORM__ 1
|
|
||||||
#define __SIZEOF_LONG_DOUBLE__ 8
|
|
||||||
#define __BIGGEST_ALIGNMENT__ 8
|
|
||||||
#define __DQ_IBIT__ 0
|
|
||||||
#define __DBL_MAX__ ((double)1.7976931348623157e+308L)
|
|
||||||
#define __ULFRACT_IBIT__ 0
|
|
||||||
#define __INT_FAST32_MAX__ 2147483647
|
|
||||||
#define __DBL_HAS_INFINITY__ 1
|
|
||||||
#define __ACCUM_IBIT__ 16
|
|
||||||
#define __DEC32_MIN_EXP__ (-94)
|
|
||||||
#define __THUMB_INTERWORK__ 1
|
|
||||||
#define __LACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LK
|
|
||||||
#define __INT_FAST16_TYPE__ int
|
|
||||||
#define __LDBL_HAS_DENORM__ 1
|
|
||||||
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
|
||||||
#define __INT_LEAST32_MAX__ 2147483647L
|
|
||||||
#define __ARM_PCS 1
|
|
||||||
#define __DEC32_MIN__ 1E-95DF
|
|
||||||
#define __ACCUM_MAX__ 0X7FFFFFFFP-15K
|
|
||||||
#define __DBL_MAX_EXP__ 1024
|
|
||||||
#define __USACCUM_EPSILON__ 0x1P-8UHK
|
|
||||||
#define __DEC128_EPSILON__ 1E-33DL
|
|
||||||
#define __SFRACT_MAX__ 0X7FP-7HR
|
|
||||||
#define __FRACT_IBIT__ 0
|
|
||||||
#define __PTRDIFF_MAX__ 2147483647
|
|
||||||
#define __UACCUM_MIN__ 0.0UK
|
|
||||||
#define __UACCUM_IBIT__ 16
|
|
||||||
#define __LONG_LONG_MAX__ 9223372036854775807LL
|
|
||||||
#define __SIZEOF_SIZE_T__ 4
|
|
||||||
#define __ULACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULK
|
|
||||||
#define __SIZEOF_WINT_T__ 4
|
|
||||||
#define __SA_IBIT__ 16
|
|
||||||
#define __ULLACCUM_MIN__ 0.0ULLK
|
|
||||||
#define __GXX_ABI_VERSION 1002
|
|
||||||
#define __UTA_FBIT__ 64
|
|
||||||
#define __SOFTFP__ 1
|
|
||||||
#define __FLT_MIN_EXP__ (-125)
|
|
||||||
#define __USFRACT_MAX__ 0XFFP-8UHR
|
|
||||||
#define __UFRACT_IBIT__ 0
|
|
||||||
#define __INT_FAST64_TYPE__ long long int
|
|
||||||
#define __DBL_MIN__ ((double)2.2250738585072014e-308L)
|
|
||||||
#define __LACCUM_MIN__ (-0X1P31LK-0X1P31LK)
|
|
||||||
#define __ULLACCUM_FBIT__ 32
|
|
||||||
#define __GXX_TYPEINFO_EQUALITY_INLINE 0
|
|
||||||
#define __ULLFRACT_EPSILON__ 0x1P-64ULLR
|
|
||||||
#define __USES_INITFINI__ 1
|
|
||||||
#define __DEC128_MIN__ 1E-6143DL
|
|
||||||
#define __REGISTER_PREFIX__
|
|
||||||
#define __UINT16_MAX__ 65535
|
|
||||||
#define __DBL_HAS_DENORM__ 1
|
|
||||||
#define __ACCUM_MIN__ (-0X1P15K-0X1P15K)
|
|
||||||
#define __SQ_IBIT__ 0
|
|
||||||
#define __UINT8_TYPE__ unsigned char
|
|
||||||
#define __UHA_FBIT__ 8
|
|
||||||
#define __NO_INLINE__ 1
|
|
||||||
#define __SFRACT_MIN__ (-0.5HR-0.5HR)
|
|
||||||
#define __UTQ_FBIT__ 128
|
|
||||||
#define __FLT_MANT_DIG__ 24
|
|
||||||
#define __VERSION__ "4.7.4 20130913 (release) [ARM/embedded-4_7-branch revision 202601]"
|
|
||||||
#define __UINT64_C(c) c ## ULL
|
|
||||||
#define __ULLFRACT_FBIT__ 64
|
|
||||||
#define __FRACT_EPSILON__ 0x1P-15R
|
|
||||||
#define __ULACCUM_MIN__ 0.0ULK
|
|
||||||
#define __UDA_FBIT__ 32
|
|
||||||
#define __LLACCUM_EPSILON__ 0x1P-31LLK
|
|
||||||
#define __GCC_ATOMIC_INT_LOCK_FREE 1
|
|
||||||
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
|
||||||
#define __USFRACT_MIN__ 0.0UHR
|
|
||||||
#define __UQQ_IBIT__ 0
|
|
||||||
#define __INT32_C(c) c ## L
|
|
||||||
#define __DEC64_EPSILON__ 1E-15DD
|
|
||||||
#define __ORDER_PDP_ENDIAN__ 3412
|
|
||||||
#define __DEC128_MIN_EXP__ (-6142)
|
|
||||||
#define __UHQ_FBIT__ 16
|
|
||||||
#define __LLACCUM_FBIT__ 31
|
|
||||||
#define __INT_FAST32_TYPE__ int
|
|
||||||
#define __UINT_LEAST16_TYPE__ short unsigned int
|
|
||||||
#define __INT16_MAX__ 32767
|
|
||||||
#define __SIZE_TYPE__ unsigned int
|
|
||||||
#define __UINT64_MAX__ 18446744073709551615ULL
|
|
||||||
#define __UDQ_FBIT__ 64
|
|
||||||
#define __INT8_TYPE__ signed char
|
|
||||||
#define __ELF__ 1
|
|
||||||
#define __ULFRACT_EPSILON__ 0x1P-32ULR
|
|
||||||
#define __LLFRACT_FBIT__ 63
|
|
||||||
#define __FLT_RADIX__ 2
|
|
||||||
#define __INT_LEAST16_TYPE__ short int
|
|
||||||
#define __LDBL_EPSILON__ 2.2204460492503131e-16L
|
|
||||||
#define __UINTMAX_C(c) c ## ULL
|
|
||||||
#define __SACCUM_MAX__ 0X7FFFP-7HK
|
|
||||||
#define __SIG_ATOMIC_MAX__ 2147483647
|
|
||||||
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 1
|
|
||||||
#define __VFP_FP__ 1
|
|
||||||
#define __SIZEOF_PTRDIFF_T__ 4
|
|
||||||
#define __LACCUM_EPSILON__ 0x1P-31LK
|
|
||||||
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
|
||||||
#define __INT_FAST16_MAX__ 2147483647
|
|
||||||
#define __UINT_FAST32_MAX__ 4294967295U
|
|
||||||
#define __UINT_LEAST64_TYPE__ long long unsigned int
|
|
||||||
#define __USACCUM_MAX__ 0XFFFFP-8UHK
|
|
||||||
#define __SFRACT_EPSILON__ 0x1P-7HR
|
|
||||||
#define __FLT_HAS_QUIET_NAN__ 1
|
|
||||||
#define __FLT_MAX_10_EXP__ 38
|
|
||||||
#define __LONG_MAX__ 2147483647L
|
|
||||||
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
|
||||||
#define __FLT_HAS_INFINITY__ 1
|
|
||||||
#define __USA_FBIT__ 16
|
|
||||||
#define __UINT_FAST16_TYPE__ unsigned int
|
|
||||||
#define __DEC64_MAX__ 9.999999999999999E384DD
|
|
||||||
#define __CHAR16_TYPE__ short unsigned int
|
|
||||||
#define __PRAGMA_REDEFINE_EXTNAME 1
|
|
||||||
#define __INT_LEAST16_MAX__ 32767
|
|
||||||
#define __DEC64_MANT_DIG__ 16
|
|
||||||
#define __INT64_MAX__ 9223372036854775807LL
|
|
||||||
#define __UINT_LEAST32_MAX__ 4294967295UL
|
|
||||||
#define __SACCUM_FBIT__ 7
|
|
||||||
#define __GCC_ATOMIC_LONG_LOCK_FREE 1
|
|
||||||
#define __INT_LEAST64_TYPE__ long long int
|
|
||||||
#define __INT16_TYPE__ short int
|
|
||||||
#define __INT_LEAST8_TYPE__ signed char
|
|
||||||
#define __SQ_FBIT__ 31
|
|
||||||
#define __DEC32_MAX_EXP__ 97
|
|
||||||
#define __INT_FAST8_MAX__ 2147483647
|
|
||||||
#define __INTPTR_MAX__ 2147483647
|
|
||||||
#define __QQ_FBIT__ 7
|
|
||||||
#define __UTA_IBIT__ 64
|
|
||||||
#define __LDBL_MANT_DIG__ 53
|
|
||||||
#define __SFRACT_FBIT__ 7
|
|
||||||
#define __SACCUM_MIN__ (-0X1P7HK-0X1P7HK)
|
|
||||||
#define __DBL_HAS_QUIET_NAN__ 1
|
|
||||||
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
|
||||||
#define __INTPTR_TYPE__ int
|
|
||||||
#define __UINT16_TYPE__ short unsigned int
|
|
||||||
#define __WCHAR_TYPE__ unsigned int
|
|
||||||
#define __SIZEOF_FLOAT__ 4
|
|
||||||
#define __USQ_FBIT__ 32
|
|
||||||
#define __UINTPTR_MAX__ 4294967295U
|
|
||||||
#define __DEC64_MIN_EXP__ (-382)
|
|
||||||
#define __ULLACCUM_IBIT__ 32
|
|
||||||
#define __INT_FAST64_MAX__ 9223372036854775807LL
|
|
||||||
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
|
||||||
#define __FLT_DIG__ 6
|
|
||||||
#define __UINT_FAST64_TYPE__ long long unsigned int
|
|
||||||
#define __INT_MAX__ 2147483647
|
|
||||||
#define __LACCUM_FBIT__ 31
|
|
||||||
#define __USACCUM_MIN__ 0.0UHK
|
|
||||||
#define __UHA_IBIT__ 8
|
|
||||||
#define __INT64_TYPE__ long long int
|
|
||||||
#define __FLT_MAX_EXP__ 128
|
|
||||||
#define __UTQ_IBIT__ 0
|
|
||||||
#define __DBL_MANT_DIG__ 53
|
|
||||||
#define __INT_LEAST64_MAX__ 9223372036854775807LL
|
|
||||||
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 1
|
|
||||||
#define __DEC64_MIN__ 1E-383DD
|
|
||||||
#define __WINT_TYPE__ unsigned int
|
|
||||||
#define __UINT_LEAST32_TYPE__ long unsigned int
|
|
||||||
#define __SIZEOF_SHORT__ 2
|
|
||||||
#define __ULLFRACT_IBIT__ 0
|
|
||||||
#define __LDBL_MIN_EXP__ (-1021)
|
|
||||||
#define __arm__ 1
|
|
||||||
#define __UDA_IBIT__ 32
|
|
||||||
#define __INT_LEAST8_MAX__ 127
|
|
||||||
#define __LFRACT_FBIT__ 31
|
|
||||||
#define __LDBL_MAX_10_EXP__ 308
|
|
||||||
#define __ATOMIC_RELAXED 0
|
|
||||||
#define __DBL_EPSILON__ ((double)2.2204460492503131e-16L)
|
|
||||||
#define __UINT8_C(c) c
|
|
||||||
#define __INT_LEAST32_TYPE__ long int
|
|
||||||
#define __SIZEOF_WCHAR_T__ 4
|
|
||||||
#define __UINT64_TYPE__ long long unsigned int
|
|
||||||
#define __LLFRACT_MAX__ 0X7FFFFFFFFFFFFFFFP-63LLR
|
|
||||||
#define __TQ_FBIT__ 127
|
|
||||||
#define __INT_FAST8_TYPE__ int
|
|
||||||
#define __ULLACCUM_EPSILON__ 0x1P-32ULLK
|
|
||||||
#define __UHQ_IBIT__ 0
|
|
||||||
#define __LLACCUM_IBIT__ 32
|
|
||||||
#define __DBL_DECIMAL_DIG__ 17
|
|
||||||
#define __DEC_EVAL_METHOD__ 2
|
|
||||||
#define __TA_FBIT__ 63
|
|
||||||
#define __UDQ_IBIT__ 0
|
|
||||||
#define __ORDER_BIG_ENDIAN__ 4321
|
|
||||||
#define __ACCUM_EPSILON__ 0x1P-15K
|
|
||||||
#define __UINT32_C(c) c ## UL
|
|
||||||
#define __INTMAX_MAX__ 9223372036854775807LL
|
|
||||||
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
|
||||||
#define __FLT_DENORM_MIN__ 1.4012984643248171e-45F
|
|
||||||
#define __LLFRACT_IBIT__ 0
|
|
||||||
#define __INT8_MAX__ 127
|
|
||||||
#define __UINT_FAST32_TYPE__ unsigned int
|
|
||||||
#define __CHAR32_TYPE__ long unsigned int
|
|
||||||
#define __FLT_MAX__ 3.4028234663852886e+38F
|
|
||||||
#define __USACCUM_FBIT__ 8
|
|
||||||
#define __INT32_TYPE__ long int
|
|
||||||
#define __SIZEOF_DOUBLE__ 8
|
|
||||||
#define __FLT_MIN_10_EXP__ (-37)
|
|
||||||
#define __UFRACT_EPSILON__ 0x1P-16UR
|
|
||||||
#define __INTMAX_TYPE__ long long int
|
|
||||||
#define __DEC128_MAX_EXP__ 6145
|
|
||||||
#define __ATOMIC_CONSUME 1
|
|
||||||
#define __GNUC_MINOR__ 7
|
|
||||||
#define __UINTMAX_MAX__ 18446744073709551615ULL
|
|
||||||
#define __DEC32_MANT_DIG__ 7
|
|
||||||
#define __HA_FBIT__ 7
|
|
||||||
#define __DBL_MAX_10_EXP__ 308
|
|
||||||
#define __LDBL_DENORM_MIN__ 4.9406564584124654e-324L
|
|
||||||
#define __INT16_C(c) c
|
|
||||||
#define __STDC__ 1
|
|
||||||
#define __ARM_ARCH_4T__ 1
|
|
||||||
#define __PTRDIFF_TYPE__ int
|
|
||||||
#define __LLFRACT_MIN__ (-0.5LLR-0.5LLR)
|
|
||||||
#define __ATOMIC_SEQ_CST 5
|
|
||||||
#define __DA_FBIT__ 31
|
|
||||||
#define __UINT32_TYPE__ long unsigned int
|
|
||||||
#define __UINTPTR_TYPE__ unsigned int
|
|
||||||
#define __USA_IBIT__ 16
|
|
||||||
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
|
||||||
#define __ARM_EABI__ 1
|
|
||||||
#define __DEC128_MANT_DIG__ 34
|
|
||||||
#define __LDBL_MIN_10_EXP__ (-307)
|
|
||||||
#define __SIZEOF_LONG_LONG__ 8
|
|
||||||
#define __ULACCUM_EPSILON__ 0x1P-32ULK
|
|
||||||
#define __SACCUM_IBIT__ 8
|
|
||||||
#define __GCC_ATOMIC_LLONG_LOCK_FREE 1
|
|
||||||
#define __LDBL_DIG__ 15
|
|
||||||
#define __FLT_DECIMAL_DIG__ 9
|
|
||||||
#define __UINT_FAST16_MAX__ 4294967295U
|
|
||||||
#define __GNUC_GNU_INLINE__ 1
|
|
||||||
#define __GCC_ATOMIC_SHORT_LOCK_FREE 1
|
|
||||||
#define __ULLFRACT_MAX__ 0XFFFFFFFFFFFFFFFFP-64ULLR
|
|
||||||
#define __UINT_FAST8_TYPE__ unsigned int
|
|
||||||
#define __USFRACT_EPSILON__ 0x1P-8UHR
|
|
||||||
#define __ULACCUM_FBIT__ 32
|
|
||||||
#define __QQ_IBIT__ 0
|
|
||||||
#define __ATOMIC_ACQ_REL 4
|
|
||||||
#define __ATOMIC_RELEASE 3
|
|
|
@ -1,336 +0,0 @@
|
||||||
#define __DBL_MIN_EXP__ (-1021)
|
|
||||||
#define __HQ_FBIT__ 15
|
|
||||||
#define __UINT_LEAST16_MAX__ 65535
|
|
||||||
#define __ATOMIC_ACQUIRE 2
|
|
||||||
#define __SFRACT_IBIT__ 0
|
|
||||||
#define __FLT_MIN__ 1.1754943508222875e-38F
|
|
||||||
#define __UFRACT_MAX__ 0XFFFFP-16UR
|
|
||||||
#define __UINT_LEAST8_TYPE__ unsigned char
|
|
||||||
#define __DQ_FBIT__ 63
|
|
||||||
#define __INTMAX_C(c) c ## LL
|
|
||||||
#define __ULFRACT_FBIT__ 32
|
|
||||||
#define __SACCUM_EPSILON__ 0x1P-7HK
|
|
||||||
#define __CHAR_BIT__ 8
|
|
||||||
#define __USQ_IBIT__ 0
|
|
||||||
#define __UINT8_MAX__ 255
|
|
||||||
#define __ACCUM_FBIT__ 15
|
|
||||||
#define __WINT_MAX__ 4294967295U
|
|
||||||
#define __USFRACT_FBIT__ 8
|
|
||||||
#define __ORDER_LITTLE_ENDIAN__ 1234
|
|
||||||
#define __SIZE_MAX__ 4294967295U
|
|
||||||
#define __WCHAR_MAX__ 4294967295U
|
|
||||||
#define __LACCUM_IBIT__ 32
|
|
||||||
#define __DBL_DENORM_MIN__ double(4.9406564584124654e-324L)
|
|
||||||
#define __GCC_ATOMIC_CHAR_LOCK_FREE 1
|
|
||||||
#define __FLT_EVAL_METHOD__ 0
|
|
||||||
#define __LLACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LLK
|
|
||||||
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 1
|
|
||||||
#define __FRACT_FBIT__ 15
|
|
||||||
#define __UINT_FAST64_MAX__ 18446744073709551615ULL
|
|
||||||
#define __SIG_ATOMIC_TYPE__ int
|
|
||||||
#define __UACCUM_FBIT__ 16
|
|
||||||
#define __DBL_MIN_10_EXP__ (-307)
|
|
||||||
#define __FINITE_MATH_ONLY__ 0
|
|
||||||
#define __ARMEL__ 1
|
|
||||||
#define __LFRACT_IBIT__ 0
|
|
||||||
#define __GNUC_PATCHLEVEL__ 4
|
|
||||||
#define __LFRACT_MAX__ 0X7FFFFFFFP-31LR
|
|
||||||
#define __UINT_FAST8_MAX__ 4294967295U
|
|
||||||
#define __DEC64_MAX_EXP__ 385
|
|
||||||
#define __INT8_C(c) c
|
|
||||||
#define __UINT_LEAST64_MAX__ 18446744073709551615ULL
|
|
||||||
#define __SA_FBIT__ 15
|
|
||||||
#define __SHRT_MAX__ 32767
|
|
||||||
#define __LDBL_MAX__ 1.7976931348623157e+308L
|
|
||||||
#define __FRACT_MAX__ 0X7FFFP-15R
|
|
||||||
#define __UFRACT_FBIT__ 16
|
|
||||||
#define __UFRACT_MIN__ 0.0UR
|
|
||||||
#define __UINT_LEAST8_MAX__ 255
|
|
||||||
#define __GCC_ATOMIC_BOOL_LOCK_FREE 1
|
|
||||||
#define __UINTMAX_TYPE__ long long unsigned int
|
|
||||||
#define __LLFRACT_EPSILON__ 0x1P-63LLR
|
|
||||||
#define __DEC32_EPSILON__ 1E-6DF
|
|
||||||
#define __CHAR_UNSIGNED__ 1
|
|
||||||
#define __UINT32_MAX__ 4294967295UL
|
|
||||||
#define __ULFRACT_MAX__ 0XFFFFFFFFP-32ULR
|
|
||||||
#define __TA_IBIT__ 64
|
|
||||||
#define __LDBL_MAX_EXP__ 1024
|
|
||||||
#define __WINT_MIN__ 0U
|
|
||||||
#define __ULLFRACT_MIN__ 0.0ULLR
|
|
||||||
#define __SCHAR_MAX__ 127
|
|
||||||
#define __WCHAR_MIN__ 0U
|
|
||||||
#define __INT64_C(c) c ## LL
|
|
||||||
#define __DBL_DIG__ 15
|
|
||||||
#define __GCC_ATOMIC_POINTER_LOCK_FREE 1
|
|
||||||
#define __LLACCUM_MIN__ (-0X1P31LLK-0X1P31LLK)
|
|
||||||
#define __SIZEOF_INT__ 4
|
|
||||||
#define __SIZEOF_POINTER__ 4
|
|
||||||
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 1
|
|
||||||
#define __USACCUM_IBIT__ 8
|
|
||||||
#define __USER_LABEL_PREFIX__
|
|
||||||
#define __STDC_HOSTED__ 1
|
|
||||||
#define __LDBL_HAS_INFINITY__ 1
|
|
||||||
#define __LFRACT_MIN__ (-0.5LR-0.5LR)
|
|
||||||
#define __HA_IBIT__ 8
|
|
||||||
#define __TQ_IBIT__ 0
|
|
||||||
#define __FLT_EPSILON__ 1.1920928955078125e-7F
|
|
||||||
#define __APCS_32__ 1
|
|
||||||
#define __GXX_WEAK__ 1
|
|
||||||
#define __USFRACT_IBIT__ 0
|
|
||||||
#define __LDBL_MIN__ 2.2250738585072014e-308L
|
|
||||||
#define __FRACT_MIN__ (-0.5R-0.5R)
|
|
||||||
#define __DEC32_MAX__ 9.999999E96DF
|
|
||||||
#define __DA_IBIT__ 32
|
|
||||||
#define __INT32_MAX__ 2147483647L
|
|
||||||
#define __UQQ_FBIT__ 8
|
|
||||||
#define __SIZEOF_LONG__ 4
|
|
||||||
#define __UACCUM_MAX__ 0XFFFFFFFFP-16UK
|
|
||||||
#define __UINT16_C(c) c
|
|
||||||
#define __DECIMAL_DIG__ 17
|
|
||||||
#define __LFRACT_EPSILON__ 0x1P-31LR
|
|
||||||
#define __ULFRACT_MIN__ 0.0ULR
|
|
||||||
#define __LDBL_HAS_QUIET_NAN__ 1
|
|
||||||
#define __ULACCUM_IBIT__ 32
|
|
||||||
#define __UACCUM_EPSILON__ 0x1P-16UK
|
|
||||||
#define __GNUC__ 4
|
|
||||||
#define __ULLACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULLK
|
|
||||||
#define __HQ_IBIT__ 0
|
|
||||||
#define __FLT_HAS_DENORM__ 1
|
|
||||||
#define __SIZEOF_LONG_DOUBLE__ 8
|
|
||||||
#define __BIGGEST_ALIGNMENT__ 8
|
|
||||||
#define __DQ_IBIT__ 0
|
|
||||||
#define __DBL_MAX__ double(1.7976931348623157e+308L)
|
|
||||||
#define __ULFRACT_IBIT__ 0
|
|
||||||
#define __INT_FAST32_MAX__ 2147483647
|
|
||||||
#define __DBL_HAS_INFINITY__ 1
|
|
||||||
#define __INT64_MAX__ 9223372036854775807LL
|
|
||||||
#define __ACCUM_IBIT__ 16
|
|
||||||
#define __DEC32_MIN_EXP__ (-94)
|
|
||||||
#define __THUMB_INTERWORK__ 1
|
|
||||||
#define __LACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LK
|
|
||||||
#define __INT_FAST16_TYPE__ int
|
|
||||||
#define __LDBL_HAS_DENORM__ 1
|
|
||||||
#define __cplusplus 199711L
|
|
||||||
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
|
||||||
#define __INT_LEAST32_MAX__ 2147483647L
|
|
||||||
#define __ARM_PCS 1
|
|
||||||
#define __DEC32_MIN__ 1E-95DF
|
|
||||||
#define __ACCUM_MAX__ 0X7FFFFFFFP-15K
|
|
||||||
#define __DEPRECATED 1
|
|
||||||
#define __DBL_MAX_EXP__ 1024
|
|
||||||
#define __USACCUM_EPSILON__ 0x1P-8UHK
|
|
||||||
#define __DEC128_EPSILON__ 1E-33DL
|
|
||||||
#define __SFRACT_MAX__ 0X7FP-7HR
|
|
||||||
#define __FRACT_IBIT__ 0
|
|
||||||
#define __PTRDIFF_MAX__ 2147483647
|
|
||||||
#define __UACCUM_MIN__ 0.0UK
|
|
||||||
#define __UACCUM_IBIT__ 16
|
|
||||||
#define __GNUG__ 4
|
|
||||||
#define __LONG_LONG_MAX__ 9223372036854775807LL
|
|
||||||
#define __SIZEOF_SIZE_T__ 4
|
|
||||||
#define __ULACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULK
|
|
||||||
#define __SIZEOF_WINT_T__ 4
|
|
||||||
#define __SA_IBIT__ 16
|
|
||||||
#define __ULLACCUM_MIN__ 0.0ULLK
|
|
||||||
#define __GXX_ABI_VERSION 1002
|
|
||||||
#define __UTA_FBIT__ 64
|
|
||||||
#define __SOFTFP__ 1
|
|
||||||
#define __FLT_MIN_EXP__ (-125)
|
|
||||||
#define __USFRACT_MAX__ 0XFFP-8UHR
|
|
||||||
#define __UFRACT_IBIT__ 0
|
|
||||||
#define __INT_FAST64_TYPE__ long long int
|
|
||||||
#define __DBL_MIN__ double(2.2250738585072014e-308L)
|
|
||||||
#define __FLT_MIN_10_EXP__ (-37)
|
|
||||||
#define __LACCUM_MIN__ (-0X1P31LK-0X1P31LK)
|
|
||||||
#define __ULLACCUM_FBIT__ 32
|
|
||||||
#define __GXX_TYPEINFO_EQUALITY_INLINE 0
|
|
||||||
#define __ULLFRACT_EPSILON__ 0x1P-64ULLR
|
|
||||||
#define __USES_INITFINI__ 1
|
|
||||||
#define __DEC128_MIN__ 1E-6143DL
|
|
||||||
#define __REGISTER_PREFIX__
|
|
||||||
#define __UINT16_MAX__ 65535
|
|
||||||
#define __DBL_HAS_DENORM__ 1
|
|
||||||
#define __ACCUM_MIN__ (-0X1P15K-0X1P15K)
|
|
||||||
#define __SQ_IBIT__ 0
|
|
||||||
#define __UINT8_TYPE__ unsigned char
|
|
||||||
#define __UHA_FBIT__ 8
|
|
||||||
#define __NO_INLINE__ 1
|
|
||||||
#define __SFRACT_MIN__ (-0.5HR-0.5HR)
|
|
||||||
#define __UTQ_FBIT__ 128
|
|
||||||
#define __FLT_MANT_DIG__ 24
|
|
||||||
#define __VERSION__ "4.7.4 20130913 (release) [ARM/embedded-4_7-branch revision 202601]"
|
|
||||||
#define __UINT64_C(c) c ## ULL
|
|
||||||
#define __ULLFRACT_FBIT__ 64
|
|
||||||
#define __FRACT_EPSILON__ 0x1P-15R
|
|
||||||
#define __ULACCUM_MIN__ 0.0ULK
|
|
||||||
#define __UDA_FBIT__ 32
|
|
||||||
#define __LLACCUM_EPSILON__ 0x1P-31LLK
|
|
||||||
#define __GCC_ATOMIC_INT_LOCK_FREE 1
|
|
||||||
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
|
||||||
#define __USFRACT_MIN__ 0.0UHR
|
|
||||||
#define __ULLACCUM_IBIT__ 32
|
|
||||||
#define __UQQ_IBIT__ 0
|
|
||||||
#define __INT32_C(c) c ## L
|
|
||||||
#define __DEC64_EPSILON__ 1E-15DD
|
|
||||||
#define __ORDER_PDP_ENDIAN__ 3412
|
|
||||||
#define __DEC128_MIN_EXP__ (-6142)
|
|
||||||
#define __UHQ_FBIT__ 16
|
|
||||||
#define __LLACCUM_FBIT__ 31
|
|
||||||
#define __INT_FAST32_TYPE__ int
|
|
||||||
#define __UINT_LEAST16_TYPE__ short unsigned int
|
|
||||||
#define __INT16_MAX__ 32767
|
|
||||||
#define __SIZE_TYPE__ unsigned int
|
|
||||||
#define __UINT64_MAX__ 18446744073709551615ULL
|
|
||||||
#define __UDQ_FBIT__ 64
|
|
||||||
#define __INT8_TYPE__ signed char
|
|
||||||
#define __ELF__ 1
|
|
||||||
#define __ULFRACT_EPSILON__ 0x1P-32ULR
|
|
||||||
#define __LLFRACT_FBIT__ 63
|
|
||||||
#define __FLT_RADIX__ 2
|
|
||||||
#define __INT_LEAST16_TYPE__ short int
|
|
||||||
#define __LDBL_EPSILON__ 2.2204460492503131e-16L
|
|
||||||
#define __UINTMAX_C(c) c ## ULL
|
|
||||||
#define __SACCUM_MAX__ 0X7FFFP-7HK
|
|
||||||
#define __SIG_ATOMIC_MAX__ 2147483647
|
|
||||||
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 1
|
|
||||||
#define __VFP_FP__ 1
|
|
||||||
#define __SIZEOF_PTRDIFF_T__ 4
|
|
||||||
#define __LACCUM_EPSILON__ 0x1P-31LK
|
|
||||||
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
|
||||||
#define __INT_FAST16_MAX__ 2147483647
|
|
||||||
#define __UINT_FAST32_MAX__ 4294967295U
|
|
||||||
#define __UINT_LEAST64_TYPE__ long long unsigned int
|
|
||||||
#define __USACCUM_MAX__ 0XFFFFP-8UHK
|
|
||||||
#define __SFRACT_EPSILON__ 0x1P-7HR
|
|
||||||
#define __FLT_HAS_QUIET_NAN__ 1
|
|
||||||
#define __FLT_MAX_10_EXP__ 38
|
|
||||||
#define __LONG_MAX__ 2147483647L
|
|
||||||
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
|
||||||
#define __FLT_HAS_INFINITY__ 1
|
|
||||||
#define __USA_FBIT__ 16
|
|
||||||
#define __UINT_FAST16_TYPE__ unsigned int
|
|
||||||
#define __DEC64_MAX__ 9.999999999999999E384DD
|
|
||||||
#define __CHAR16_TYPE__ short unsigned int
|
|
||||||
#define __PRAGMA_REDEFINE_EXTNAME 1
|
|
||||||
#define __INT_LEAST16_MAX__ 32767
|
|
||||||
#define __DEC64_MANT_DIG__ 16
|
|
||||||
#define __UINT_LEAST32_MAX__ 4294967295UL
|
|
||||||
#define __SACCUM_FBIT__ 7
|
|
||||||
#define __GCC_ATOMIC_LONG_LOCK_FREE 1
|
|
||||||
#define __INT_LEAST64_TYPE__ long long int
|
|
||||||
#define __INT16_TYPE__ short int
|
|
||||||
#define __INT_LEAST8_TYPE__ signed char
|
|
||||||
#define __SQ_FBIT__ 31
|
|
||||||
#define __DEC32_MAX_EXP__ 97
|
|
||||||
#define __INT_FAST8_MAX__ 2147483647
|
|
||||||
#define __INTPTR_MAX__ 2147483647
|
|
||||||
#define __QQ_FBIT__ 7
|
|
||||||
#define __UTA_IBIT__ 64
|
|
||||||
#define __EXCEPTIONS 1
|
|
||||||
#define __LDBL_MANT_DIG__ 53
|
|
||||||
#define __SFRACT_FBIT__ 7
|
|
||||||
#define __SACCUM_MIN__ (-0X1P7HK-0X1P7HK)
|
|
||||||
#define __DBL_HAS_QUIET_NAN__ 1
|
|
||||||
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
|
||||||
#define __INTPTR_TYPE__ int
|
|
||||||
#define __UINT16_TYPE__ short unsigned int
|
|
||||||
#define __WCHAR_TYPE__ unsigned int
|
|
||||||
#define __SIZEOF_FLOAT__ 4
|
|
||||||
#define __USQ_FBIT__ 32
|
|
||||||
#define __UINTPTR_MAX__ 4294967295U
|
|
||||||
#define __DEC64_MIN_EXP__ (-382)
|
|
||||||
#define __INT_FAST64_MAX__ 9223372036854775807LL
|
|
||||||
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
|
||||||
#define __FLT_DIG__ 6
|
|
||||||
#define __UINT_FAST64_TYPE__ long long unsigned int
|
|
||||||
#define __INT_MAX__ 2147483647
|
|
||||||
#define __LACCUM_FBIT__ 31
|
|
||||||
#define __USACCUM_MIN__ 0.0UHK
|
|
||||||
#define __UHA_IBIT__ 8
|
|
||||||
#define __INT64_TYPE__ long long int
|
|
||||||
#define __FLT_MAX_EXP__ 128
|
|
||||||
#define __UTQ_IBIT__ 0
|
|
||||||
#define __DBL_MANT_DIG__ 53
|
|
||||||
#define __INT_LEAST64_MAX__ 9223372036854775807LL
|
|
||||||
#define __DEC64_MIN__ 1E-383DD
|
|
||||||
#define __WINT_TYPE__ unsigned int
|
|
||||||
#define __UINT_LEAST32_TYPE__ long unsigned int
|
|
||||||
#define __SIZEOF_SHORT__ 2
|
|
||||||
#define __ULLFRACT_IBIT__ 0
|
|
||||||
#define __LDBL_MIN_EXP__ (-1021)
|
|
||||||
#define __arm__ 1
|
|
||||||
#define __UDA_IBIT__ 32
|
|
||||||
#define __INT_LEAST8_MAX__ 127
|
|
||||||
#define __LFRACT_FBIT__ 31
|
|
||||||
#define __WCHAR_UNSIGNED__ 1
|
|
||||||
#define __LDBL_MAX_10_EXP__ 308
|
|
||||||
#define __ATOMIC_RELAXED 0
|
|
||||||
#define __DBL_EPSILON__ double(2.2204460492503131e-16L)
|
|
||||||
#define __UINT8_C(c) c
|
|
||||||
#define __INT_LEAST32_TYPE__ long int
|
|
||||||
#define __SIZEOF_WCHAR_T__ 4
|
|
||||||
#define __UINT64_TYPE__ long long unsigned int
|
|
||||||
#define __LLFRACT_MAX__ 0X7FFFFFFFFFFFFFFFP-63LLR
|
|
||||||
#define __TQ_FBIT__ 127
|
|
||||||
#define __INT_FAST8_TYPE__ int
|
|
||||||
#define __ULLACCUM_EPSILON__ 0x1P-32ULLK
|
|
||||||
#define __UHQ_IBIT__ 0
|
|
||||||
#define __LLACCUM_IBIT__ 32
|
|
||||||
#define __DBL_DECIMAL_DIG__ 17
|
|
||||||
#define __DEC_EVAL_METHOD__ 2
|
|
||||||
#define __TA_FBIT__ 63
|
|
||||||
#define __UDQ_IBIT__ 0
|
|
||||||
#define __ORDER_BIG_ENDIAN__ 4321
|
|
||||||
#define __ACCUM_EPSILON__ 0x1P-15K
|
|
||||||
#define __UINT32_C(c) c ## UL
|
|
||||||
#define __INTMAX_MAX__ 9223372036854775807LL
|
|
||||||
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
|
||||||
#define __FLT_DENORM_MIN__ 1.4012984643248171e-45F
|
|
||||||
#define __LLFRACT_IBIT__ 0
|
|
||||||
#define __INT8_MAX__ 127
|
|
||||||
#define __UINT_FAST32_TYPE__ unsigned int
|
|
||||||
#define __CHAR32_TYPE__ long unsigned int
|
|
||||||
#define __FLT_MAX__ 3.4028234663852886e+38F
|
|
||||||
#define __USACCUM_FBIT__ 8
|
|
||||||
#define __INT32_TYPE__ long int
|
|
||||||
#define __SIZEOF_DOUBLE__ 8
|
|
||||||
#define __UFRACT_EPSILON__ 0x1P-16UR
|
|
||||||
#define __INTMAX_TYPE__ long long int
|
|
||||||
#define __DEC128_MAX_EXP__ 6145
|
|
||||||
#define __ATOMIC_CONSUME 1
|
|
||||||
#define __GNUC_MINOR__ 7
|
|
||||||
#define __UINTMAX_MAX__ 18446744073709551615ULL
|
|
||||||
#define __DEC32_MANT_DIG__ 7
|
|
||||||
#define __HA_FBIT__ 7
|
|
||||||
#define __DBL_MAX_10_EXP__ 308
|
|
||||||
#define __LDBL_DENORM_MIN__ 4.9406564584124654e-324L
|
|
||||||
#define __INT16_C(c) c
|
|
||||||
#define __STDC__ 1
|
|
||||||
#define __ARM_ARCH_4T__ 1
|
|
||||||
#define __PTRDIFF_TYPE__ int
|
|
||||||
#define __LLFRACT_MIN__ (-0.5LLR-0.5LLR)
|
|
||||||
#define __ATOMIC_SEQ_CST 5
|
|
||||||
#define __DA_FBIT__ 31
|
|
||||||
#define __UINT32_TYPE__ long unsigned int
|
|
||||||
#define __UINTPTR_TYPE__ unsigned int
|
|
||||||
#define __USA_IBIT__ 16
|
|
||||||
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
|
||||||
#define __ARM_EABI__ 1
|
|
||||||
#define __DEC128_MANT_DIG__ 34
|
|
||||||
#define __LDBL_MIN_10_EXP__ (-307)
|
|
||||||
#define __SIZEOF_LONG_LONG__ 8
|
|
||||||
#define __ULACCUM_EPSILON__ 0x1P-32ULK
|
|
||||||
#define __SACCUM_IBIT__ 8
|
|
||||||
#define __GCC_ATOMIC_LLONG_LOCK_FREE 1
|
|
||||||
#define __LDBL_DIG__ 15
|
|
||||||
#define __FLT_DECIMAL_DIG__ 9
|
|
||||||
#define __UINT_FAST16_MAX__ 4294967295U
|
|
||||||
#define __GNUC_GNU_INLINE__ 1
|
|
||||||
#define __GCC_ATOMIC_SHORT_LOCK_FREE 1
|
|
||||||
#define __ULLFRACT_MAX__ 0XFFFFFFFFFFFFFFFFP-64ULLR
|
|
||||||
#define __UINT_FAST8_TYPE__ unsigned int
|
|
||||||
#define __USFRACT_EPSILON__ 0x1P-8UHR
|
|
||||||
#define __ULACCUM_FBIT__ 32
|
|
||||||
#define __QQ_IBIT__ 0
|
|
||||||
#define __ATOMIC_ACQ_REL 4
|
|
||||||
#define __ATOMIC_RELEASE 3
|
|
|
@ -1 +0,0 @@
|
||||||
-ss2 -si4 -sl4 -sll8 -sf4 -sd8 -sld8 -sp4 -sw2
|
|
|
@ -1,59 +0,0 @@
|
||||||
/* MISRA checks are not performed in header files marked as libraries or
|
|
||||||
vendor-provided files or belonging to other subsystems.*/
|
|
||||||
-e686 /* Silencing warning on -elib(*) */
|
|
||||||
-elib(*) /* No checks on library files. */
|
|
||||||
+libclass(angle,ansi)
|
|
||||||
+libh(core_cm4.h)
|
|
||||||
+libh(stm32f4xx.h)
|
|
||||||
+libh(*LLD.h)
|
|
||||||
|
|
||||||
/* Silencing common non-MISRA info generated by PCLint in -w3 mode. All of
|
|
||||||
them have been controlled. Other infos have been fixed in the code.*/
|
|
||||||
-e526 -e537 -e714 -e716 -e757 -e759 -e768 -e773 -e826 -e835 -e845
|
|
||||||
|
|
||||||
/* Removing *advisory* directives and rules that would negatively impact
|
|
||||||
code readability or not avoidable.*/
|
|
||||||
-e970 /* Dir-4.6 */
|
|
||||||
-e9026 /* Dir-4.9 */
|
|
||||||
-e756 /* Rule-2.3 */
|
|
||||||
-e9058 /* Rule-2.4 */
|
|
||||||
-e755 /* Rule-2.5 */
|
|
||||||
-e9003 /* Rule-8.9 */
|
|
||||||
-e9067 /* Rule-8.11 */
|
|
||||||
-e818 /* Rule 8.13 */
|
|
||||||
-e9078 /* Rule-11.4 */
|
|
||||||
-e9079 /* Rule-11.5 */
|
|
||||||
-e904 /* Rule-15.5 */
|
|
||||||
-e9044 /* Rule-17.8 */
|
|
||||||
-e9016 /* Rule-18.4 */
|
|
||||||
-e844 -e954 /* Rule-18.13 */
|
|
||||||
-e9018 /* Rule-19.2 */
|
|
||||||
-e9024 /* Rule-20.10 */
|
|
||||||
|
|
||||||
/* Waiver Directive 4.10, PCLint is confused by the guard used in the CMSIS
|
|
||||||
header files, the guard is present, suppressing the noise.*/
|
|
||||||
-e451
|
|
||||||
|
|
||||||
/* Waiver Rule 3.1, the sequence "//" is mandated by standard license
|
|
||||||
headers included on top of all source files. The sequence is part of the
|
|
||||||
license URL and cannot be removed.*/
|
|
||||||
-e9059
|
|
||||||
|
|
||||||
/* Waiver Rule 8.7, the static analyzer has no visibility of functions called
|
|
||||||
from asm modules.*/
|
|
||||||
-e765
|
|
||||||
|
|
||||||
/* Waiver Rule 11.6, cast from integer to pointer is very commonly used
|
|
||||||
when accessing peripherals where the numeric address of the registers
|
|
||||||
block is cast to a structure pointer.*/
|
|
||||||
-e923
|
|
||||||
|
|
||||||
/* Waiver Rule 16.3, missing break into case. It is a common occurrence and
|
|
||||||
thoroughly checked.*/
|
|
||||||
-e9090
|
|
||||||
-e616
|
|
||||||
-e825
|
|
||||||
|
|
||||||
/* Waiver Rule 21.1, this is an operating system, its identifiers are
|
|
||||||
equivalent in importance to compiler symbols.*/
|
|
||||||
-e9071
|
|
|
@ -192,7 +192,9 @@ typedef struct {
|
||||||
#if !defined(chDbgAssert)
|
#if !defined(chDbgAssert)
|
||||||
#if CH_DBG_ENABLE_ASSERTS == TRUE
|
#if CH_DBG_ENABLE_ASSERTS == TRUE
|
||||||
#define chDbgAssert(c, r) do { \
|
#define chDbgAssert(c, r) do { \
|
||||||
|
/*lint -save -e506 -e774 [2.1, 14.3] Can be a constant.*/ \
|
||||||
if (!(c)) { \
|
if (!(c)) { \
|
||||||
|
/*lint -restore*/ \
|
||||||
chSysHalt(__func__); \
|
chSysHalt(__func__); \
|
||||||
} \
|
} \
|
||||||
} while (false)
|
} while (false)
|
||||||
|
|
|
@ -617,10 +617,10 @@ static inline void queue_init(threads_queue_t *tqp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
static inline bool queue_isempty(threads_queue_t *tqp) {
|
static inline bool queue_isempty(const threads_queue_t *tqp) {
|
||||||
|
|
||||||
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
||||||
return (bool)(tqp->p_next == (thread_t *)tqp);
|
return (bool)(tqp->p_next == (const thread_t *)tqp);
|
||||||
/*lint -restore*/
|
/*lint -restore*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -632,10 +632,10 @@ static inline bool queue_isempty(threads_queue_t *tqp) {
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
static inline bool queue_notempty(threads_queue_t *tqp) {
|
static inline bool queue_notempty(const threads_queue_t *tqp) {
|
||||||
|
|
||||||
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
||||||
return (bool)(tqp->p_next != (thread_t *)tqp);
|
return (bool)(tqp->p_next != (const thread_t *)tqp);
|
||||||
/*lint -restore*/
|
/*lint -restore*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
#ifndef _CHSYS_H_
|
#ifndef _CHSYS_H_
|
||||||
#define _CHSYS_H_
|
#define _CHSYS_H_
|
||||||
|
|
||||||
|
/*lint -sem(chSysHalt, r_no)*/
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Module constants. */
|
/* Module constants. */
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
#ifndef _CHTHREADS_H_
|
#ifndef _CHTHREADS_H_
|
||||||
#define _CHTHREADS_H_
|
#define _CHTHREADS_H_
|
||||||
|
|
||||||
|
/*lint -sem(chThdExit, r_no) -sem(chThdExitS, r_no)*/
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Module constants. */
|
/* Module constants. */
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
|
|
@ -368,4 +368,4 @@ static inline void port_wait_for_interrupt(void) {
|
||||||
|
|
||||||
#endif /* _CHCORE_H_ */
|
#endif /* _CHCORE_H_ */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
|
@ -280,8 +280,11 @@ void _dbg_trace(thread_t *otp) {
|
||||||
ch.dbg.trace_buffer.tb_ptr->se_tp = currp;
|
ch.dbg.trace_buffer.tb_ptr->se_tp = currp;
|
||||||
ch.dbg.trace_buffer.tb_ptr->se_wtobjp = otp->p_u.wtobjp;
|
ch.dbg.trace_buffer.tb_ptr->se_wtobjp = otp->p_u.wtobjp;
|
||||||
ch.dbg.trace_buffer.tb_ptr->se_state = (uint8_t)otp->p_state;
|
ch.dbg.trace_buffer.tb_ptr->se_state = (uint8_t)otp->p_state;
|
||||||
|
/*lint -save -e946 -e947 [18.2, 18.3] Normal pointers arithmetic, it
|
||||||
|
is safe.*/
|
||||||
if (++ch.dbg.trace_buffer.tb_ptr >=
|
if (++ch.dbg.trace_buffer.tb_ptr >=
|
||||||
&ch.dbg.trace_buffer.tb_buffer[CH_DBG_TRACE_BUFFER_SIZE]) {
|
&ch.dbg.trace_buffer.tb_buffer[CH_DBG_TRACE_BUFFER_SIZE]) {
|
||||||
|
/*lint -restore*/
|
||||||
ch.dbg.trace_buffer.tb_ptr = &ch.dbg.trace_buffer.tb_buffer[0];
|
ch.dbg.trace_buffer.tb_ptr = &ch.dbg.trace_buffer.tb_buffer[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,7 +92,7 @@ void chThdRelease(thread_t *tp) {
|
||||||
trefs_t refs;
|
trefs_t refs;
|
||||||
|
|
||||||
chSysLock();
|
chSysLock();
|
||||||
chDbgAssert(tp->p_refs > 0, "not referenced");
|
chDbgAssert(tp->p_refs > 0U, "not referenced");
|
||||||
tp->p_refs--;
|
tp->p_refs--;
|
||||||
refs = tp->p_refs;
|
refs = tp->p_refs;
|
||||||
chSysUnlock();
|
chSysUnlock();
|
||||||
|
|
|
@ -215,7 +215,7 @@ void chEvtBroadcastFlagsI(event_source_t *esp, eventflags_t flags) {
|
||||||
elp = esp->es_next;
|
elp = esp->es_next;
|
||||||
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
||||||
while (elp != (event_listener_t *)esp) {
|
while (elp != (event_listener_t *)esp) {
|
||||||
/*list -restore*/
|
/*lint -restore*/
|
||||||
elp->el_flags |= flags;
|
elp->el_flags |= flags;
|
||||||
/* When flags == 0 the thread will always be signaled because the
|
/* When flags == 0 the thread will always be signaled because the
|
||||||
source does not emit any flag.*/
|
source does not emit any flag.*/
|
||||||
|
|
|
@ -48,10 +48,16 @@
|
||||||
#define H_LOCK(h) chMtxLock(&(h)->h_mtx)
|
#define H_LOCK(h) chMtxLock(&(h)->h_mtx)
|
||||||
#define H_UNLOCK(h) chMtxUnlock(&(h)->h_mtx)
|
#define H_UNLOCK(h) chMtxUnlock(&(h)->h_mtx)
|
||||||
#else
|
#else
|
||||||
#define H_LOCK(h) chSemWait(&(h)->h_sem)
|
#define H_LOCK(h) (void) chSemWait(&(h)->h_sem)
|
||||||
#define H_UNLOCK(h) chSemSignal(&(h)->h_sem)
|
#define H_UNLOCK(h) chSemSignal(&(h)->h_sem)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define LIMIT(p) \
|
||||||
|
/*lint -save -e9087 [11.3] Safe cast.*/ \
|
||||||
|
(union heap_header *)((uint8_t *)(p) + \
|
||||||
|
sizeof(union heap_header) + (p)->h.size) \
|
||||||
|
/*lint -restore*/
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Module exported variables. */
|
/* Module exported variables. */
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
|
@ -85,7 +91,7 @@ static memory_heap_t default_heap;
|
||||||
void _heap_init(void) {
|
void _heap_init(void) {
|
||||||
|
|
||||||
default_heap.h_provider = chCoreAlloc;
|
default_heap.h_provider = chCoreAlloc;
|
||||||
default_heap.h_free.h.u.next = (union heap_header *)NULL;
|
default_heap.h_free.h.u.next = NULL;
|
||||||
default_heap.h_free.h.size = 0;
|
default_heap.h_free.h.size = 0;
|
||||||
#if (CH_CFG_USE_MUTEXES == TRUE) || defined(__DOXYGEN__)
|
#if (CH_CFG_USE_MUTEXES == TRUE) || defined(__DOXYGEN__)
|
||||||
chMtxObjectInit(&default_heap.h_mtx);
|
chMtxObjectInit(&default_heap.h_mtx);
|
||||||
|
@ -160,7 +166,9 @@ void *chHeapAlloc(memory_heap_t *heapp, size_t size) {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* Block bigger enough, must split it.*/
|
/* Block bigger enough, must split it.*/
|
||||||
|
/*lint -save -e9087 [11.3] Safe cast.*/
|
||||||
fp = (void *)((uint8_t *)(hp) + sizeof(union heap_header) + size);
|
fp = (void *)((uint8_t *)(hp) + sizeof(union heap_header) + size);
|
||||||
|
/*lint -restore*/
|
||||||
fp->h.u.next = hp->h.u.next;
|
fp->h.u.next = hp->h.u.next;
|
||||||
fp->h.size = (hp->h.size - sizeof(union heap_header)) - size;
|
fp->h.size = (hp->h.size - sizeof(union heap_header)) - size;
|
||||||
qp->h.u.next = fp;
|
qp->h.u.next = fp;
|
||||||
|
@ -169,7 +177,9 @@ void *chHeapAlloc(memory_heap_t *heapp, size_t size) {
|
||||||
hp->h.u.heap = heapp;
|
hp->h.u.heap = heapp;
|
||||||
H_UNLOCK(heapp);
|
H_UNLOCK(heapp);
|
||||||
|
|
||||||
|
/*lint -save -e9087 [11.3] Safe cast.*/
|
||||||
return (void *)(hp + 1);
|
return (void *)(hp + 1);
|
||||||
|
/*lint -restore*/
|
||||||
}
|
}
|
||||||
qp = hp;
|
qp = hp;
|
||||||
}
|
}
|
||||||
|
@ -184,17 +194,15 @@ void *chHeapAlloc(memory_heap_t *heapp, size_t size) {
|
||||||
hp->h.size = size;
|
hp->h.size = size;
|
||||||
hp++;
|
hp++;
|
||||||
|
|
||||||
|
/*lint -save -e9087 [11.3] Safe cast.*/
|
||||||
return (void *)hp;
|
return (void *)hp;
|
||||||
|
/*lint -restore*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define LIMIT(p) (union heap_header *)((uint8_t *)(p) + \
|
|
||||||
sizeof(union heap_header) + \
|
|
||||||
(p)->h.size)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Frees a previously allocated memory block.
|
* @brief Frees a previously allocated memory block.
|
||||||
*
|
*
|
||||||
|
@ -208,16 +216,18 @@ void chHeapFree(void *p) {
|
||||||
|
|
||||||
chDbgCheck(p != NULL);
|
chDbgCheck(p != NULL);
|
||||||
|
|
||||||
|
/*lint -save -e9087 [11.3] Safe cast.*/
|
||||||
hp = (union heap_header *)p - 1;
|
hp = (union heap_header *)p - 1;
|
||||||
|
/*lint -restore*/
|
||||||
heapp = hp->h.u.heap;
|
heapp = hp->h.u.heap;
|
||||||
qp = &heapp->h_free;
|
qp = &heapp->h_free;
|
||||||
|
|
||||||
H_LOCK(heapp);
|
H_LOCK(heapp);
|
||||||
while (true) {
|
while (true) {
|
||||||
chDbgAssert((hp < qp) || (hp >= LIMIT(qp)), "within free block");
|
|
||||||
|
|
||||||
/*lint -save -e946 -e947 [18.2, 18.3] Normal pointers arithmetic, it
|
/*lint -save -e946 -e947 [18.2, 18.3] Normal pointers arithmetic, it
|
||||||
is safe.*/
|
is safe.*/
|
||||||
|
chDbgAssert((hp < qp) || (hp >= LIMIT(qp)), "within free block");
|
||||||
|
|
||||||
if (((qp == &heapp->h_free) || (hp > qp)) &&
|
if (((qp == &heapp->h_free) || (hp > qp)) &&
|
||||||
((qp->h.u.next == NULL) || (hp < qp->h.u.next))) {
|
((qp->h.u.next == NULL) || (hp < qp->h.u.next))) {
|
||||||
/*lint -restore*/
|
/*lint -restore*/
|
||||||
|
@ -270,6 +280,7 @@ size_t chHeapStatus(memory_heap_t *heapp, size_t *sizep) {
|
||||||
n = 0;
|
n = 0;
|
||||||
qp = &heapp->h_free;
|
qp = &heapp->h_free;
|
||||||
while (qp->h.u.next != NULL) {
|
while (qp->h.u.next != NULL) {
|
||||||
|
sz += qp->h.u.next->h.size;
|
||||||
n++;
|
n++;
|
||||||
qp = qp->h.u.next;
|
qp = qp->h.u.next;
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,11 +96,13 @@ void chPoolObjectInit(memory_pool_t *mp, size_t size, memgetfunc_t provider) {
|
||||||
*/
|
*/
|
||||||
void chPoolLoadArray(memory_pool_t *mp, void *p, size_t n) {
|
void chPoolLoadArray(memory_pool_t *mp, void *p, size_t n) {
|
||||||
|
|
||||||
chDbgCheck((mp != NULL) && (n != 0));
|
chDbgCheck((mp != NULL) && (n != 0U));
|
||||||
|
|
||||||
while (n != 0U) {
|
while (n != 0U) {
|
||||||
chPoolAdd(mp, p);
|
chPoolAdd(mp, p);
|
||||||
|
/*lint -save -e9087 [11.3] Safe cast.*/
|
||||||
p = (void *)(((uint8_t *)p) + mp->mp_object_size);
|
p = (void *)(((uint8_t *)p) + mp->mp_object_size);
|
||||||
|
/*lint -restore*/
|
||||||
n--;
|
n--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -231,7 +231,7 @@ size_t chIQReadTimeout(input_queue_t *iqp, uint8_t *bp,
|
||||||
qnotify_t nfy = iqp->q_notify;
|
qnotify_t nfy = iqp->q_notify;
|
||||||
size_t r = 0;
|
size_t r = 0;
|
||||||
|
|
||||||
chDbgCheck(n > 0);
|
chDbgCheck(n > 0U);
|
||||||
|
|
||||||
chSysLock();
|
chSysLock();
|
||||||
while (true) {
|
while (true) {
|
||||||
|
@ -429,7 +429,7 @@ size_t chOQWriteTimeout(output_queue_t *oqp, const uint8_t *bp,
|
||||||
qnotify_t nfy = oqp->q_notify;
|
qnotify_t nfy = oqp->q_notify;
|
||||||
size_t w = 0;
|
size_t w = 0;
|
||||||
|
|
||||||
chDbgCheck(n > 0);
|
chDbgCheck(n > 0U);
|
||||||
|
|
||||||
chSysLock();
|
chSysLock();
|
||||||
while (true) {
|
while (true) {
|
||||||
|
|
|
@ -164,7 +164,7 @@ thread_t *chRegNextThread(thread_t *tp) {
|
||||||
}
|
}
|
||||||
#if CH_CFG_USE_DYNAMIC == TRUE
|
#if CH_CFG_USE_DYNAMIC == TRUE
|
||||||
else {
|
else {
|
||||||
chDbgAssert(ntp->p_refs < 255, "too many references");
|
chDbgAssert(ntp->p_refs < 255U, "too many references");
|
||||||
ntp->p_refs++;
|
ntp->p_refs++;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -87,17 +87,16 @@ void _scheduler_init(void) {
|
||||||
*/
|
*/
|
||||||
void queue_prio_insert(thread_t *tp, threads_queue_t *tqp) {
|
void queue_prio_insert(thread_t *tp, threads_queue_t *tqp) {
|
||||||
|
|
||||||
/* cp iterates over the queue.*/
|
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
||||||
thread_t *cp = (thread_t *)tqp;
|
thread_t *cp = (thread_t *)tqp;
|
||||||
do {
|
do {
|
||||||
/* Iterate to next thread in queue.*/
|
|
||||||
cp = cp->p_next;
|
cp = cp->p_next;
|
||||||
/* Not end of queue? and cp has equal or higher priority than tp?.*/
|
|
||||||
} while ((cp != (thread_t *)tqp) && (cp->p_prio >= tp->p_prio));
|
} while ((cp != (thread_t *)tqp) && (cp->p_prio >= tp->p_prio));
|
||||||
/* Insertion on p_prev.*/
|
/*lint -restore*/
|
||||||
tp->p_next = cp;
|
tp->p_next = cp;
|
||||||
tp->p_prev = cp->p_prev;
|
tp->p_prev = cp->p_prev;
|
||||||
tp->p_prev->p_next = cp->p_prev = tp;
|
tp->p_prev->p_next = tp;
|
||||||
|
cp->p_prev = tp;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -110,9 +109,12 @@ void queue_prio_insert(thread_t *tp, threads_queue_t *tqp) {
|
||||||
*/
|
*/
|
||||||
void queue_insert(thread_t *tp, threads_queue_t *tqp) {
|
void queue_insert(thread_t *tp, threads_queue_t *tqp) {
|
||||||
|
|
||||||
|
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
||||||
tp->p_next = (thread_t *)tqp;
|
tp->p_next = (thread_t *)tqp;
|
||||||
|
/*lint -restore*/
|
||||||
tp->p_prev = tqp->p_prev;
|
tp->p_prev = tqp->p_prev;
|
||||||
tp->p_prev->p_next = tqp->p_prev = tp;
|
tp->p_prev->p_next = tp;
|
||||||
|
tqp->p_prev = tp;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -128,7 +130,10 @@ void queue_insert(thread_t *tp, threads_queue_t *tqp) {
|
||||||
thread_t *queue_fifo_remove(threads_queue_t *tqp) {
|
thread_t *queue_fifo_remove(threads_queue_t *tqp) {
|
||||||
thread_t *tp = tqp->p_next;
|
thread_t *tp = tqp->p_next;
|
||||||
|
|
||||||
(tqp->p_next = tp->p_next)->p_prev = (thread_t *)tqp;
|
tqp->p_next = tp->p_next;
|
||||||
|
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
||||||
|
tqp->p_next->p_prev = (thread_t *)tqp;
|
||||||
|
/*lint -restore*/
|
||||||
|
|
||||||
return tp;
|
return tp;
|
||||||
}
|
}
|
||||||
|
@ -146,7 +151,10 @@ thread_t *queue_fifo_remove(threads_queue_t *tqp) {
|
||||||
thread_t *queue_lifo_remove(threads_queue_t *tqp) {
|
thread_t *queue_lifo_remove(threads_queue_t *tqp) {
|
||||||
thread_t *tp = tqp->p_prev;
|
thread_t *tp = tqp->p_prev;
|
||||||
|
|
||||||
(tqp->p_prev = tp->p_prev)->p_next = (thread_t *)tqp;
|
tqp->p_prev = tp->p_prev;
|
||||||
|
/*lint -save -e9087 -e740 [11.3, 1.3] Cast required by list handling.*/
|
||||||
|
tqp->p_prev->p_next = (thread_t *)tqp;
|
||||||
|
/*lint -restore*/
|
||||||
|
|
||||||
return tp;
|
return tp;
|
||||||
}
|
}
|
||||||
|
|
|
@ -144,8 +144,12 @@ thread_t *_thread_init(thread_t *tp, tprio_t prio) {
|
||||||
*/
|
*/
|
||||||
void _thread_memfill(uint8_t *startp, uint8_t *endp, uint8_t v) {
|
void _thread_memfill(uint8_t *startp, uint8_t *endp, uint8_t v) {
|
||||||
|
|
||||||
|
/*lint -save -e946 -e947 [18.2, 18.3] Normal pointers arithmetic, it
|
||||||
|
is safe.*/
|
||||||
while (startp < endp) {
|
while (startp < endp) {
|
||||||
*startp++ = v;
|
/*lint -restore*/
|
||||||
|
*startp = v;
|
||||||
|
startp++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* CH_DBG_FILL_THREADS */
|
#endif /* CH_DBG_FILL_THREADS */
|
||||||
|
@ -480,7 +484,7 @@ msg_t chThdWait(thread_t *tp) {
|
||||||
chSysLock();
|
chSysLock();
|
||||||
chDbgAssert(tp != currp, "waiting self");
|
chDbgAssert(tp != currp, "waiting self");
|
||||||
#if CH_CFG_USE_DYNAMIC == TRUE
|
#if CH_CFG_USE_DYNAMIC == TRUE
|
||||||
chDbgAssert(tp->p_refs > 0, "not referenced");
|
chDbgAssert(tp->p_refs > 0U, "not referenced");
|
||||||
#endif
|
#endif
|
||||||
if (tp->p_state != CH_STATE_FINAL) {
|
if (tp->p_state != CH_STATE_FINAL) {
|
||||||
list_insert(currp, &tp->p_waiting);
|
list_insert(currp, &tp->p_waiting);
|
||||||
|
|
|
@ -128,7 +128,7 @@ clean:
|
||||||
-rm -fR .dep
|
-rm -fR .dep
|
||||||
|
|
||||||
misra:
|
misra:
|
||||||
lint-nt -w3 pclint/co-gcc.lnt pclint/au-misra3.lnt pclint/waivers.lnt $(INCDIR) $(KERNSRC) > misra.txt
|
@lint-nt -v -w3 $(DEFS) pclint/co-gcc.lnt pclint/au-misra3.lnt pclint/waivers.lnt $(INCDIR) $(KERNSRC) &> misra.txt
|
||||||
|
|
||||||
#
|
#
|
||||||
# Include the dependency files, should be the last of the makefile
|
# Include the dependency files, should be the last of the makefile
|
||||||
|
|
|
@ -27,8 +27,8 @@ function execute_test() {
|
||||||
clean
|
clean
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
echo "OK"
|
|
||||||
clean
|
clean
|
||||||
|
echo "OK"
|
||||||
}
|
}
|
||||||
|
|
||||||
function misra() {
|
function misra() {
|
||||||
|
@ -42,147 +42,174 @@ function misra() {
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "Default maximum settings"
|
echo "Default maximum settings"
|
||||||
#compile
|
compile
|
||||||
#execute_test
|
execute_test
|
||||||
misra
|
misra
|
||||||
exit
|
|
||||||
|
|
||||||
echo "CH_CFG_OPTIMIZE_SPEED=FALSE"
|
echo "CH_CFG_OPTIMIZE_SPEED=FALSE"
|
||||||
XDEFS=-DCH_CFG_OPTIMIZE_SPEED=FALSE
|
XDEFS=-DCH_CFG_OPTIMIZE_SPEED=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_TIME_QUANTUM=0"
|
echo "CH_CFG_TIME_QUANTUM=0"
|
||||||
XDEFS=-DCH_CFG_TIME_QUANTUM=0
|
XDEFS=-DCH_CFG_TIME_QUANTUM=0
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_REGISTRY=FALSE"
|
echo "CH_CFG_USE_REGISTRY=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_REGISTRY=FALSE
|
XDEFS=-DCH_CFG_USE_REGISTRY=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_SEMAPHORES=FALSE CH_CFG_USE_MAILBOXES=FALSE"
|
echo "CH_CFG_USE_SEMAPHORES=FALSE CH_CFG_USE_MAILBOXES=FALSE"
|
||||||
XDEFS="-DCH_CFG_USE_SEMAPHORES=FALSE -DCH_CFG_USE_MAILBOXES=FALSE"
|
XDEFS="-DCH_CFG_USE_SEMAPHORES=FALSE -DCH_CFG_USE_MAILBOXES=FALSE"
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_SEMAPHORES_PRIORITY=TRUE"
|
echo "CH_CFG_USE_SEMAPHORES_PRIORITY=TRUE"
|
||||||
XDEFS=-DCH_CFG_USE_SEMAPHORES_PRIORITY=TRUE
|
XDEFS=-DCH_CFG_USE_SEMAPHORES_PRIORITY=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MUTEXES=FALSE CH_CFG_USE_CONDVARS=FALSE"
|
echo "CH_CFG_USE_MUTEXES=FALSE CH_CFG_USE_CONDVARS=FALSE"
|
||||||
XDEFS="-DCH_CFG_USE_MUTEXES=FALSE -DCH_CFG_USE_CONDVARS=FALSE"
|
XDEFS="-DCH_CFG_USE_MUTEXES=FALSE -DCH_CFG_USE_CONDVARS=FALSE"
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MUTEXES_RECURSIVE=TRUE"
|
echo "CH_CFG_USE_MUTEXES_RECURSIVE=TRUE"
|
||||||
XDEFS=-DCH_CFG_USE_MUTEXES_RECURSIVE=TRUE
|
XDEFS=-DCH_CFG_USE_MUTEXES_RECURSIVE=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_CONDVARS=FALSE"
|
echo "CH_CFG_USE_CONDVARS=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_CONDVARS=FALSE
|
XDEFS=-DCH_CFG_USE_CONDVARS=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_CONDVARS_TIMEOUT=FALSE"
|
echo "CH_CFG_USE_CONDVARS_TIMEOUT=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_CONDVARS_TIMEOUT=FALSE
|
XDEFS=-DCH_CFG_USE_CONDVARS_TIMEOUT=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_EVENTS=FALSE"
|
echo "CH_CFG_USE_EVENTS=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_EVENTS=FALSE
|
XDEFS=-DCH_CFG_USE_EVENTS=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_EVENTS_TIMEOUT=FALSE"
|
echo "CH_CFG_USE_EVENTS_TIMEOUT=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_EVENTS_TIMEOUT=FALSE
|
XDEFS=-DCH_CFG_USE_EVENTS_TIMEOUT=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MESSAGES=FALSE"
|
echo "CH_CFG_USE_MESSAGES=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_MESSAGES=FALSE
|
XDEFS=-DCH_CFG_USE_MESSAGES=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MESSAGES_PRIORITY=TRUE"
|
echo "CH_CFG_USE_MESSAGES_PRIORITY=TRUE"
|
||||||
XDEFS=-DCH_CFG_USE_MESSAGES_PRIORITY=TRUE
|
XDEFS=-DCH_CFG_USE_MESSAGES_PRIORITY=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MAILBOXES=FALSE"
|
echo "CH_CFG_USE_MAILBOXES=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_MAILBOXES=FALSE
|
XDEFS=-DCH_CFG_USE_MAILBOXES=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MEMCORE=FALSE CH_CFG_USE_MEMPOOLS=FALSE CH_CFG_USE_HEAP=FALSE CH_CFG_USE_DYNAMIC=FALSE"
|
echo "CH_CFG_USE_MEMCORE=FALSE CH_CFG_USE_MEMPOOLS=FALSE CH_CFG_USE_HEAP=FALSE CH_CFG_USE_DYNAMIC=FALSE"
|
||||||
XDEFS="-DCH_CFG_USE_MEMCORE=FALSE -DCH_CFG_USE_MEMPOOLS=FALSE -DCH_CFG_USE_HEAP=FALSE -DCH_CFG_USE_DYNAMIC=FALSE"
|
XDEFS="-DCH_CFG_USE_MEMCORE=FALSE -DCH_CFG_USE_MEMPOOLS=FALSE -DCH_CFG_USE_HEAP=FALSE -DCH_CFG_USE_DYNAMIC=FALSE"
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MEMPOOLS=FALSE CH_CFG_USE_HEAP=FALSE CH_CFG_USE_DYNAMIC=FALSE"
|
echo "CH_CFG_USE_MEMPOOLS=FALSE CH_CFG_USE_HEAP=FALSE CH_CFG_USE_DYNAMIC=FALSE"
|
||||||
XDEFS="-DCH_CFG_USE_MEMPOOLS=FALSE -DCH_CFG_USE_HEAP=FALSE -DCH_CFG_USE_DYNAMIC=FALSE"
|
XDEFS="-DCH_CFG_USE_MEMPOOLS=FALSE -DCH_CFG_USE_HEAP=FALSE -DCH_CFG_USE_DYNAMIC=FALSE"
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_MEMPOOLS=FALSE"
|
echo "CH_CFG_USE_MEMPOOLS=FALSE"
|
||||||
XDEFS="-DCH_CFG_USE_MEMPOOLS=FALSE"
|
XDEFS="-DCH_CFG_USE_MEMPOOLS=FALSE"
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_HEAP=FALSE"
|
echo "CH_CFG_USE_HEAP=FALSE"
|
||||||
XDEFS="-DCH_CFG_USE_HEAP=FALSE"
|
XDEFS="-DCH_CFG_USE_HEAP=FALSE"
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_CFG_USE_DYNAMIC=FALSE"
|
echo "CH_CFG_USE_DYNAMIC=FALSE"
|
||||||
XDEFS=-DCH_CFG_USE_DYNAMIC=FALSE
|
XDEFS=-DCH_CFG_USE_DYNAMIC=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
#echo "CH_DBG_STATISTICS=TRUE"
|
#echo "CH_DBG_STATISTICS=TRUE"
|
||||||
#XDEFS=-DCH_DBG_STATISTICS=TRUE
|
#XDEFS=-DCH_DBG_STATISTICS=TRUE
|
||||||
#compile
|
#compile
|
||||||
#execute_test
|
#execute_test
|
||||||
|
#misra
|
||||||
|
|
||||||
echo "CH_DBG_SYSTEM_STATE_CHECK=TRUE"
|
echo "CH_DBG_SYSTEM_STATE_CHECK=TRUE"
|
||||||
XDEFS=-DCH_DBG_SYSTEM_STATE_CHECK=TRUE
|
XDEFS=-DCH_DBG_SYSTEM_STATE_CHECK=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_DBG_ENABLE_CHECKS=TRUE"
|
echo "CH_DBG_ENABLE_CHECKS=TRUE"
|
||||||
XDEFS=-DCH_DBG_ENABLE_CHECKS=TRUE
|
XDEFS=-DCH_DBG_ENABLE_CHECKS=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_DBG_ENABLE_ASSERTS=TRUE"
|
echo "CH_DBG_ENABLE_ASSERTS=TRUE"
|
||||||
XDEFS=-DCH_DBG_ENABLE_ASSERTS=TRUE
|
XDEFS=-DCH_DBG_ENABLE_ASSERTS=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_DBG_ENABLE_TRACE=TRUE"
|
echo "CH_DBG_ENABLE_TRACE=TRUE"
|
||||||
XDEFS=-DCH_DBG_ENABLE_TRACE=TRUE
|
XDEFS=-DCH_DBG_ENABLE_TRACE=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
#echo "CH_DBG_ENABLE_STACK_CHECK=TRUE"
|
#echo "CH_DBG_ENABLE_STACK_CHECK=TRUE"
|
||||||
#XDEFS=-DCH_DBG_ENABLE_STACK_CHECK=TRUE
|
#XDEFS=-DCH_DBG_ENABLE_STACK_CHECK=TRUE
|
||||||
#compile
|
#compile
|
||||||
#execute_test
|
#execute_test
|
||||||
|
#misra
|
||||||
|
|
||||||
echo "CH_DBG_FILL_THREADS=TRUE"
|
echo "CH_DBG_FILL_THREADS=TRUE"
|
||||||
XDEFS=-DCH_DBG_FILL_THREADS=TRUE
|
XDEFS=-DCH_DBG_FILL_THREADS=TRUE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_DBG_THREADS_PROFILING=FALSE"
|
echo "CH_DBG_THREADS_PROFILING=FALSE"
|
||||||
XDEFS=-DCH_DBG_THREADS_PROFILING=FALSE
|
XDEFS=-DCH_DBG_THREADS_PROFILING=FALSE
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
||||||
echo "CH_DBG_SYSTEM_STATE_CHECK=TRUE CH_DBG_ENABLE_CHECKS=TRUE CH_DBG_ENABLE_ASSERTS=TRUE CH_DBG_ENABLE_TRACE=TRUE CH_DBG_FILL_THREADS=TRUE"
|
echo "CH_DBG_SYSTEM_STATE_CHECK=TRUE CH_DBG_ENABLE_CHECKS=TRUE CH_DBG_ENABLE_ASSERTS=TRUE CH_DBG_ENABLE_TRACE=TRUE CH_DBG_FILL_THREADS=TRUE"
|
||||||
XDEFS="-DCH_DBG_SYSTEM_STATE_CHECK=TRUE -DCH_DBG_ENABLE_CHECKS=TRUE -DCH_DBG_ENABLE_ASSERTS=TRUE -DCH_DBG_ENABLE_TRACE=TRUE -DCH_DBG_FILL_THREADS=TRUE"
|
XDEFS="-DCH_DBG_SYSTEM_STATE_CHECK=TRUE -DCH_DBG_ENABLE_CHECKS=TRUE -DCH_DBG_ENABLE_ASSERTS=TRUE -DCH_DBG_ENABLE_TRACE=TRUE -DCH_DBG_FILL_THREADS=TRUE"
|
||||||
compile
|
compile
|
||||||
execute_test
|
execute_test
|
||||||
|
misra
|
||||||
|
|
Loading…
Reference in New Issue