mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
917410a0a8
* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
138 lines
3.3 KiB
C
138 lines
3.3 KiB
C
#pragma once
|
|
|
|
#ifndef __PACKED_STRUCT
|
|
#define __PACKED_STRUCT PACKED(struct)
|
|
#endif
|
|
|
|
#ifndef __PACKED_UNION
|
|
#define __PACKED_UNION PACKED(union)
|
|
#endif
|
|
|
|
/**
|
|
* @brief This is the section dedicated to IAR toolchain
|
|
*/
|
|
#if defined(__ICCARM__) || defined(__IAR_SYSTEMS_ASM__)
|
|
|
|
#ifndef __WEAK
|
|
#define __WEAK __weak
|
|
#endif
|
|
|
|
#define QUOTE_(a) #a
|
|
|
|
/**
|
|
* @brief PACKED
|
|
* Use the PACKED macro for variables that needs to be packed.
|
|
* Usage: PACKED(struct) myStruct_s
|
|
* PACKED(union) myStruct_s
|
|
*/
|
|
#define PACKED(decl) __packed decl
|
|
|
|
/**
|
|
* @brief SECTION
|
|
* Use the SECTION macro to assign data or code in a specific section.
|
|
* Usage: SECTION(".my_section")
|
|
*/
|
|
#define SECTION(name) _Pragma(QUOTE_(location = name))
|
|
|
|
/**
|
|
* @brief ALIGN_DEF
|
|
* Use the ALIGN_DEF macro to specify the alignment of a variable.
|
|
* Usage: ALIGN_DEF(4)
|
|
*/
|
|
#define ALIGN_DEF(v) _Pragma(QUOTE_(data_alignment = v))
|
|
|
|
/**
|
|
* @brief NO_INIT
|
|
* Use the NO_INIT macro to declare a not initialized variable.
|
|
* Usage: NO_INIT(int my_no_init_var)
|
|
* Usage: NO_INIT(uint16_t my_no_init_array[10])
|
|
*/
|
|
#define NO_INIT(var) __no_init var
|
|
|
|
/**
|
|
* @brief This is the section dedicated to GNU toolchain
|
|
*/
|
|
#else
|
|
#ifdef __GNUC__
|
|
|
|
#ifndef __WEAK
|
|
#define __WEAK __attribute__((weak))
|
|
#endif
|
|
|
|
/**
|
|
* @brief PACKED
|
|
* Use the PACKED macro for variables that needs to be packed.
|
|
* Usage: PACKED(struct) myStruct_s
|
|
* PACKED(union) myStruct_s
|
|
*/
|
|
#define PACKED(decl) decl __attribute__((packed))
|
|
|
|
/**
|
|
* @brief SECTION
|
|
* Use the SECTION macro to assign data or code in a specific section.
|
|
* Usage: SECTION(".my_section")
|
|
*/
|
|
#define SECTION(name) __attribute__((section(name)))
|
|
|
|
/**
|
|
* @brief ALIGN_DEF
|
|
* Use the ALIGN_DEF macro to specify the alignment of a variable.
|
|
* Usage: ALIGN_DEF(4)
|
|
*/
|
|
#define ALIGN_DEF(N) __attribute__((aligned(N)))
|
|
|
|
/**
|
|
* @brief NO_INIT
|
|
* Use the NO_INIT macro to declare a not initialized variable.
|
|
* Usage: NO_INIT(int my_no_init_var)
|
|
* Usage: NO_INIT(uint16_t my_no_init_array[10])
|
|
*/
|
|
#define NO_INIT(var) var __attribute__((section(".noinit")))
|
|
|
|
/**
|
|
* @brief This is the section dedicated to Keil toolchain
|
|
*/
|
|
#else
|
|
#ifdef __CC_ARM
|
|
|
|
#ifndef __WEAK
|
|
#define __WEAK __weak
|
|
#endif
|
|
|
|
/**
|
|
* @brief PACKED
|
|
* Use the PACKED macro for variables that needs to be packed.
|
|
* Usage: PACKED(struct) myStruct_s
|
|
* PACKED(union) myStruct_s
|
|
*/
|
|
#define PACKED(decl) decl __attribute__((packed))
|
|
|
|
/**
|
|
* @brief SECTION
|
|
* Use the SECTION macro to assign data or code in a specific section.
|
|
* Usage: SECTION(".my_section")
|
|
*/
|
|
#define SECTION(name) __attribute__((section(name)))
|
|
|
|
/**
|
|
* @brief ALIGN_DEF
|
|
* Use the ALIGN_DEF macro to specify the alignment of a variable.
|
|
* Usage: ALIGN_DEF(4)
|
|
*/
|
|
#define ALIGN_DEF(N) __attribute__((aligned(N)))
|
|
|
|
/**
|
|
* @brief NO_INIT
|
|
* Use the NO_INIT macro to declare a not initialized variable.
|
|
* Usage: NO_INIT(int my_no_init_var)
|
|
* Usage: NO_INIT(uint16_t my_no_init_array[10])
|
|
*/
|
|
#define NO_INIT(var) var __attribute__((section("NoInit")))
|
|
|
|
#else
|
|
|
|
#error Neither ICCARM, CC ARM nor GNUC C detected. Define your macros.
|
|
|
|
#endif
|
|
#endif
|
|
#endif
|