diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-10-02 06:40:57 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-10-02 06:40:57 +0000 |
commit | 98cf4e16e8d9f6a2ed107ad1bb5a06b8f61fbf41 (patch) | |
tree | 2ee04266d44414c946b265931e30d9f57f222de0 /os/common/startup | |
parent | 296806b9a582123f694d35fd928a3a3c1f1b8646 (diff) | |
download | ChibiOS-98cf4e16e8d9f6a2ed107ad1bb5a06b8f61fbf41.tar.gz ChibiOS-98cf4e16e8d9f6a2ed107ad1bb5a06b8f61fbf41.tar.bz2 ChibiOS-98cf4e16e8d9f6a2ed107ad1bb5a06b8f61fbf41.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9836 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/startup')
-rw-r--r-- | os/common/startup/ARMCMx/compilers/GCC/vectors.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/os/common/startup/ARMCMx/compilers/GCC/vectors.h b/os/common/startup/ARMCMx/compilers/GCC/vectors.h index a793a26bf..3a76aaab3 100644 --- a/os/common/startup/ARMCMx/compilers/GCC/vectors.h +++ b/os/common/startup/ARMCMx/compilers/GCC/vectors.h @@ -27,6 +27,16 @@ #include "cmparams.h"
+/* This inclusion can be used to remap vectors using different names.
+ * Example:
+ * #define Vector7C UartRX_Handler
+ * This can be useful when using 3rd part libraries that assume specific
+ * vector names.
+ */
+#if defined(VECTORS_USE_CONF)
+#include "vectorsconf.h"
+#endif
+
/*===========================================================================*/
/* Module constants. */
/*===========================================================================*/
|