git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2997 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2011-05-22 11:51:17 +00:00
parent 2a6ece58ea
commit ee268d12c2
4 changed files with 55 additions and 15 deletions

View File

@ -54,6 +54,16 @@
*/ */
#define CH_CORE_VARIANT_NAME "MegaAVR" #define CH_CORE_VARIANT_NAME "MegaAVR"
/**
* @brief Name of the compiler supported by this port.
*/
#define CH_COMPILER_NAME "GCC "__VERSION__
/**
* @brief Port-specific information string.
*/
#define CH_PORT_INFO "None"
/** /**
* @brief 8 bits stack and memory alignment enforcement. * @brief 8 bits stack and memory alignment enforcement.
*/ */

View File

@ -54,6 +54,16 @@
*/ */
#define CH_CORE_VARIANT_NAME "MSP430" #define CH_CORE_VARIANT_NAME "MSP430"
/**
* @brief Name of the compiler supported by this port.
*/
#define CH_COMPILER_NAME "GCC "__VERSION__
/**
* @brief Port-specific information string.
*/
#define CH_PORT_INFO "None"
/** /**
* @brief 16 bits stack and memory alignment enforcement. * @brief 16 bits stack and memory alignment enforcement.
*/ */

View File

@ -61,7 +61,7 @@
/** /**
* @brief Name of the implemented architecture. * @brief Name of the implemented architecture.
*/ */
#define CH_ARCHITECTURE_NAME "PowerPC" #define CH_ARCHITECTURE_NAME "Power Architecture"
/** /**
* @brief Name of the architecture variant. * @brief Name of the architecture variant.
@ -74,6 +74,16 @@
#error "unknown or unsupported PowerPC variant specified" #error "unknown or unsupported PowerPC variant specified"
#endif #endif
/**
* @brief Name of the compiler supported by this port.
*/
#define CH_COMPILER_NAME "GCC "__VERSION__
/**
* @brief Port-specific information string.
*/
#define CH_PORT_INFO "None"
/** /**
* @brief Base type for stack and memory alignment. * @brief Base type for stack and memory alignment.
*/ */

View File

@ -41,6 +41,16 @@
*/ */
#define CH_CORE_VARIANT_NAME "x86 (integer only)" #define CH_CORE_VARIANT_NAME "x86 (integer only)"
/**
* @brief Name of the compiler supported by this port.
*/
#define CH_COMPILER_NAME "GCC "__VERSION__
/**
* @brief Port-specific information string.
*/
#define CH_PORT_INFO "No preemption"
/** /**
* 16 bytes stack alignment. * 16 bytes stack alignment.
*/ */