diff options
author | isiora <none@example.com> | 2018-01-18 09:34:33 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2018-01-18 09:34:33 +0000 |
commit | b641871b1d1eb800dc729e9d27c66ee71c10b93e (patch) | |
tree | f5786e36efa0dedc4e1a9a4433325e8a33fa731b /os | |
parent | 16c0ec2cfb97a78550ab9e7a304a74bc8ece4df1 (diff) | |
download | ChibiOS-b641871b1d1eb800dc729e9d27c66ee71c10b93e.tar.gz ChibiOS-b641871b1d1eb800dc729e9d27c66ee71c10b93e.tar.bz2 ChibiOS-b641871b1d1eb800dc729e9d27c66ee71c10b93e.zip |
Fixed ARM_IRQ_VECTOR_REG address.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11315 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rwxr-xr-x | os/common/startup/ARM/devices/SAMA5D2/armparams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/common/startup/ARM/devices/SAMA5D2/armparams.h b/os/common/startup/ARM/devices/SAMA5D2/armparams.h index 29e6613fe..d402295fa 100755 --- a/os/common/startup/ARM/devices/SAMA5D2/armparams.h +++ b/os/common/startup/ARM/devices/SAMA5D2/armparams.h @@ -82,9 +82,9 @@ /**
* @brief Address of the IRQ vector register in the interrupt controller.
*/
-#define ARM_IRQ_VECTOR_REG 0xF803C010U
+#define ARM_IRQ_VECTOR_REG 0xFC020010U
#else
-#define ARM_IRQ_VECTOR_REG 0xF803C010
+#define ARM_IRQ_VECTOR_REG 0xFC020010
#endif
#endif /* ARMPARAMS_H */
|