diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-05-18 09:03:50 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-05-18 09:03:50 +0000 |
commit | b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad (patch) | |
tree | fc775ac9004d2808a72e644c28629f53c4767411 /demos/ARM7-LPC214x-G++/chconf.h | |
parent | ade5cc3c6fdb41270ff0f483a8daa44d28d1064c (diff) | |
download | ChibiOS-b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad.tar.gz ChibiOS-b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad.tar.bz2 ChibiOS-b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2971 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-G++/chconf.h')
-rw-r--r-- | demos/ARM7-LPC214x-G++/chconf.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/demos/ARM7-LPC214x-G++/chconf.h b/demos/ARM7-LPC214x-G++/chconf.h index 14109b635..ccde82347 100644 --- a/demos/ARM7-LPC214x-G++/chconf.h +++ b/demos/ARM7-LPC214x-G++/chconf.h @@ -123,26 +123,6 @@ #define CH_OPTIMIZE_SPEED TRUE
#endif
-/**
- * @brief Exotic optimization.
- * @details If defined then a CPU register is used as storage for the global
- * @p currp variable. Caching this variable in a register greatly
- * improves both space and time OS efficiency. A side effect is that
- * one less register has to be saved during the context switch
- * resulting in lower RAM usage and faster context switch.
- *
- * @note This option is only usable with the GCC compiler and is only useful
- * on processors with many registers like ARM cores.
- * @note If this option is enabled then ALL the libraries linked to the
- * ChibiOS/RT code <b>must</b> be recompiled with the GCC option @p
- * -ffixed-@<reg@>.
- * @note This option must be enabled in the Makefile, it is listed here for
- * documentation only.
- */
-#if defined(__DOXYGEN__)
-#define CH_CURRP_REGISTER_CACHE "reg"
-#endif
-
/*===========================================================================*/
/* Subsystem options. */
/*===========================================================================*/
|