diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-14 13:40:53 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-14 13:40:53 +0000 |
commit | 1d962813e838255e2cfc548fc1865d173ea9e3b2 (patch) | |
tree | d90e6df66e79d6960198598c2c848ca848e141d2 /os/hal/platforms | |
parent | 0e99a936f7896971f736cc7890fba398799cf4e2 (diff) | |
download | ChibiOS-1d962813e838255e2cfc548fc1865d173ea9e3b2.tar.gz ChibiOS-1d962813e838255e2cfc548fc1865d173ea9e3b2.tar.bz2 ChibiOS-1d962813e838255e2cfc548fc1865d173ea9e3b2.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4913 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms')
-rw-r--r-- | os/hal/platforms/SPC563Mxx/hal_lld.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/platforms/SPC563Mxx/hal_lld.h b/os/hal/platforms/SPC563Mxx/hal_lld.h index cd86e9deb..5e8296a22 100644 --- a/os/hal/platforms/SPC563Mxx/hal_lld.h +++ b/os/hal/platforms/SPC563Mxx/hal_lld.h @@ -150,7 +150,7 @@ * value.
*/
#if !defined(SPC5_FLASH_BIUCR) || defined(__DOXYGEN__)
-#define SPC5_FLASH_BIUCR (BIUCR_BANK1_TOO | \
+#define SPC5_FLASH_BIUCR (BIUCR_BANK1_TOO | \
BIUCR_MASTER4_PREFETCH | \
BIUCR_MASTER0_PREFETCH | \
BIUCR_DPFEN | \
@@ -207,9 +207,9 @@ * @brief PLL output clock.
*/
#if !SPC5_CLK_BYPASS || defined(__DOXYGEN__)
-#define SPC5_SYSCLK (SPC5_PLLCLK / (1 << (SPC5_CLK_RFD + 1)))
+#define SPC5_SYSCLK (SPC5_PLLCLK / (1 << (SPC5_CLK_RFD + 1)))
#else
-#define SPC5_SYSCLK SPC5_XOSC_CLK
+#define SPC5_SYSCLK SPC5_XOSC_CLK
#endif
#if (SPC5_SYSCLK > 80000000) && !SPC5_ALLOW_OVERCLOCK
|