1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-25 17:25:13 +03:00

Stack alignment change doesn't compile on VC++

This commit is contained in:
bsongis 2014-06-26 18:08:09 +02:00
parent bd4a85c6a7
commit 1dd47484d4

View file

@ -43,15 +43,16 @@
#define BT_STACK_SIZE 500
#define DEBUG_STACK_SIZE 500
OS_TID menusTaskId;
#if !defined(SIMU)
// stack must be alligned to 8 bytes otherwise printf for %f does not work!
OS_STK __attribute__((aligned(8))) menusStack[MENUS_STACK_SIZE];
#else
// but VC++ doesn't like the aligned keyword, so keep it as is on simu (which works)
OS_STK menusStack[MENUS_STACK_SIZE];
#if defined(_MSC_VER)
#define _ALIGNED(x) __declspec(align(x))
#elif defined(__GNUC__)
#define _ALIGNED(x) __attribute__ ((aligned(x)))
#endif
OS_TID menusTaskId;
// stack must be aligned to 8 bytes otherwise printf for %f does not work!
OS_STK _ALIGNED(8) menusStack[MENUS_STACK_SIZE];
OS_TID mixerTaskId;
OS_STK mixerStack[MIXER_STACK_SIZE];