mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
35 lines
774 B
C
35 lines
774 B
C
#pragma once
|
|
|
|
#include "CoreExtraDefines.h"
|
|
|
|
#ifdef ESP_PLATFORM
|
|
#include "freertos/portmacro.h"
|
|
#else
|
|
#include "portmacro.h"
|
|
#endif
|
|
|
|
#define TT_RETURNS_NONNULL __attribute__((returns_nonnull))
|
|
|
|
#define TT_WARN_UNUSED __attribute__((warn_unused_result))
|
|
|
|
#define TT_UNUSED __attribute__((unused))
|
|
|
|
#define TT_WEAK __attribute__((weak))
|
|
|
|
#define TT_PACKED __attribute__((packed))
|
|
|
|
#define TT_PLACE_IN_SECTION(x) __attribute__((section(x)))
|
|
|
|
#define TT_ALIGN(n) __attribute__((aligned(n)))
|
|
|
|
// Used by portENABLE_INTERRUPTS and portDISABLE_INTERRUPTS?
|
|
#ifdef ESP_TARGET
|
|
#define TT_IS_IRQ_MODE() (xPortInIsrContext() == pdTRUE)
|
|
#else
|
|
#define TT_IS_IRQ_MODE() false
|
|
#endif
|
|
|
|
#define TT_IS_ISR() (TT_IS_IRQ_MODE())
|
|
|
|
#define TT_CHECK_RETURN __attribute__((__warn_unused_result__))
|