Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ae52add6e98401d6ce3e5fcf601411dfe67ea09e (plain) (blame)
1
2
3
4
5
6
7
8
9
Naming convention for platforms:
<threading-type>_<processor-family and/or operating-system>_<processor or operating-system derivative>_<compiler>(_<board or application type>)

<threading-type> : ST(single treaded) MT(multi-threaded)

Examples:
ST_MSP430_F5438_CCS5_EXP430F5438 : single threaded, processor-family:TI-MSP430, derivative:F5438, compiler: Code Composer Studio 5, board: EXP430F5438
MT_POSIX_GENERIC_GCC : multi threaded, operation-system: POSIX, derivative: GENERIC, compiler:  Gnu C++ Compiler

Back to the top