diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-11-10 08:20:40 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-11-10 08:20:40 +0000 |
commit | 1245e8e3c2198d529263b01fd5dd215a3b84b4d5 (patch) | |
tree | c70b6f30da471b782fb55ac0cd155ee54b0259a2 /demos/MSP430-MSP430F5437/mcuconf.h | |
parent | 5510f99b9985de5f926a53341a7b03f7d0639b37 (diff) | |
download | ChibiOS-1245e8e3c2198d529263b01fd5dd215a3b84b4d5.tar.gz ChibiOS-1245e8e3c2198d529263b01fd5dd215a3b84b4d5.tar.bz2 ChibiOS-1245e8e3c2198d529263b01fd5dd215a3b84b4d5.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4807 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/MSP430-MSP430F5437/mcuconf.h')
-rw-r--r-- | demos/MSP430-MSP430F5437/mcuconf.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/demos/MSP430-MSP430F5437/mcuconf.h b/demos/MSP430-MSP430F5437/mcuconf.h new file mode 100644 index 000000000..feab7d1e6 --- /dev/null +++ b/demos/MSP430-MSP430F5437/mcuconf.h @@ -0,0 +1,58 @@ +/*
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
+ 2011,2012 Giovanni Di Sirio.
+
+ This file is part of ChibiOS/RT.
+
+ ChibiOS/RT is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ ChibiOS/RT is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+/*
+ * MSP430 drivers configuration.
+ * The following settings override the default settings present in
+ * the various device driver implementation headers.
+ * Note that the settings for each driver only have effect if the driver
+ * is enabled in halconf.h.
+ */
+
+/*
+ * HAL driver system settings.
+ */
+#define MSP430_USE_CLOCK MSP430_CLOCK_SOURCE_DCOCLK
+
+/*
+ * ADC driver system settings.
+ */
+
+/*
+ * CAN driver system settings.
+ */
+
+/*
+ * MAC driver system settings.
+ */
+
+/*
+ * PWM driver system settings.
+ */
+
+/*
+ * SERIAL driver system settings.
+ */
+#define USE_MSP430_USART0 TRUE
+#define USE_MSP430_USART1 TRUE
+
+/*
+ * SPI driver system settings.
+ */
|