git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2997 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
2a6ece58ea
commit
ee268d12c2
|
@ -54,6 +54,16 @@
|
|||
*/
|
||||
#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.
|
||||
*/
|
||||
|
|
|
@ -54,6 +54,16 @@
|
|||
*/
|
||||
#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.
|
||||
*/
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
/**
|
||||
* @brief Name of the implemented architecture.
|
||||
*/
|
||||
#define CH_ARCHITECTURE_NAME "PowerPC"
|
||||
#define CH_ARCHITECTURE_NAME "Power Architecture"
|
||||
|
||||
/**
|
||||
* @brief Name of the architecture variant.
|
||||
|
@ -74,6 +74,16 @@
|
|||
#error "unknown or unsupported PowerPC variant specified"
|
||||
#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.
|
||||
*/
|
||||
|
|
|
@ -41,6 +41,16 @@
|
|||
*/
|
||||
#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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue