mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
14dabf523a
* changes for xPack 12.3 * support for gcc 13.2 * Update tools name * Add new linux toolchain * Fixed copro submodule * Fix gdb-py * Fixes for c++ apps * Fix gdb-py3, add udev rules * Fixed udev rules location * Add MacOS arm, fix fbt toolchain download * Fixed downloading error file * fbt: fixed linker warnings; removed gcc 10 from list of supported toolchains * ufbt: fixed supported toolchain versions * nfc: replaced local malloc with calloc * restored code with Warray-bounds to older state * Update fbtenv.cmd * Suppressing warnings * Bump to 25 * Bump to 26 * lint: reformatted macros for new clang-format * Bump to 27 * Fix m type word * Bump to 28 * furi: added FURI_DEPRECATED macro * scripts: toolchain download on Windows: fixing partially extracted cases Co-authored-by: DrunkBatya <drunkbatya.js@gmail.com>
116 lines
2.3 KiB
C
116 lines
2.3 KiB
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define FURI_RETURNS_NONNULL __attribute__((returns_nonnull))
|
|
|
|
#ifndef MAX
|
|
#define MAX(a, b) \
|
|
({ \
|
|
__typeof__(a) _a = (a); \
|
|
__typeof__(b) _b = (b); \
|
|
_a > _b ? _a : _b; \
|
|
})
|
|
#endif
|
|
|
|
#ifndef MIN
|
|
#define MIN(a, b) \
|
|
({ \
|
|
__typeof__(a) _a = (a); \
|
|
__typeof__(b) _b = (b); \
|
|
_a < _b ? _a : _b; \
|
|
})
|
|
#endif
|
|
|
|
#ifndef ABS
|
|
#define ABS(a) ({ (a) < 0 ? -(a) : (a); })
|
|
#endif
|
|
|
|
#ifndef ROUND_UP_TO
|
|
#define ROUND_UP_TO(a, b) \
|
|
({ \
|
|
__typeof__(a) _a = (a); \
|
|
__typeof__(b) _b = (b); \
|
|
_a / _b + !!(_a % _b); \
|
|
})
|
|
#endif
|
|
|
|
#ifndef CLAMP
|
|
#define CLAMP(x, upper, lower) (MIN(upper, MAX(x, lower)))
|
|
#endif
|
|
|
|
#ifndef COUNT_OF
|
|
#define COUNT_OF(x) (sizeof(x) / sizeof(x[0]))
|
|
#endif
|
|
|
|
#ifndef FURI_SWAP
|
|
#define FURI_SWAP(x, y) \
|
|
do { \
|
|
typeof(x) SWAP = x; \
|
|
x = y; \
|
|
y = SWAP; \
|
|
} while(0)
|
|
#endif
|
|
|
|
#ifndef PLACE_IN_SECTION
|
|
#define PLACE_IN_SECTION(x) __attribute__((section(x)))
|
|
#endif
|
|
|
|
#ifndef ALIGN
|
|
#define ALIGN(n) __attribute__((aligned(n)))
|
|
#endif
|
|
|
|
#ifndef __weak
|
|
#define __weak __attribute__((weak))
|
|
#endif
|
|
|
|
#ifndef UNUSED
|
|
#define UNUSED(X) (void)(X)
|
|
#endif
|
|
|
|
#ifndef STRINGIFY
|
|
#define STRINGIFY(x) #x
|
|
#endif
|
|
|
|
#ifndef TOSTRING
|
|
#define TOSTRING(x) STRINGIFY(x)
|
|
#endif
|
|
|
|
#ifndef CONCATENATE
|
|
#define CONCATENATE(a, b) CONCATENATE_(a, b)
|
|
#define CONCATENATE_(a, b) a##b
|
|
#endif
|
|
|
|
#ifndef REVERSE_BYTES_U32
|
|
#define REVERSE_BYTES_U32(x) \
|
|
((((x) & 0x000000FF) << 24) | (((x) & 0x0000FF00) << 8) | (((x) & 0x00FF0000) >> 8) | \
|
|
(((x) & 0xFF000000) >> 24))
|
|
#endif
|
|
|
|
#ifndef FURI_BIT
|
|
#define FURI_BIT(x, n) (((x) >> (n)) & 1)
|
|
#endif
|
|
|
|
#ifndef FURI_BIT_SET
|
|
#define FURI_BIT_SET(x, n) \
|
|
({ \
|
|
__typeof__(x) _x = (1); \
|
|
(x) |= (_x << (n)); \
|
|
})
|
|
#endif
|
|
|
|
#ifndef FURI_BIT_CLEAR
|
|
#define FURI_BIT_CLEAR(x, n) \
|
|
({ \
|
|
__typeof__(x) _x = (1); \
|
|
(x) &= ~(_x << (n)); \
|
|
})
|
|
#endif
|
|
|
|
#define FURI_SW_MEMBARRIER() asm volatile("" : : : "memory")
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|