X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Ftypes.h;h=ebd341718c9efdc876f8cc67b4ca4d5e654941e9;hb=a3ffb42b8a665abcbc54d8cfd290c368ab5f083c;hp=cbef8c4126f38916d0d8e158ff36b2d9b34fced2;hpb=0d4c0c64f736f37dba565aa9e113d3920ef905f9;p=bertos.git diff --git a/bertos/cpu/types.h b/bertos/cpu/types.h index cbef8c41..ebd34171 100644 --- a/bertos/cpu/types.h +++ b/bertos/cpu/types.h @@ -120,6 +120,14 @@ #define SIZEOF_CPUSTACK_T 1 #define SIZEOF_CPUALIGNED_T SIZEOF_CPUSTACK_T +#elif CPU_MSP430 + + typedef uint16_t cpu_flags_t; + typedef uint16_t cpu_stack_t; + typedef cpu_stack_t cpu_aligned_stack_t; + #define SIZEOF_CPUSTACK_T 2 + #define SIZEOF_CPUALIGNED_T SIZEOF_CPUSTACK_T + #else #error No CPU_... defined. #endif