aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src
diff options
context:
space:
mode:
authortheshed <theshed@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-03-01 21:27:40 +0000
committertheshed <theshed@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-03-01 21:27:40 +0000
commit3565edd4cd06559b7fe563c73cd25f864f9f18bf (patch)
tree7eeba0aa771fb4a5ac8b2b5ec1babafa31333910 /os/hal/src
parent8d356f98e72be582fbcf815ed2668f29740e08f5 (diff)
downloadChibiOS-3565edd4cd06559b7fe563c73cd25f864f9f18bf.tar.gz
ChibiOS-3565edd4cd06559b7fe563c73cd25f864f9f18bf.tar.bz2
ChibiOS-3565edd4cd06559b7fe563c73cd25f864f9f18bf.zip
LPC17xx DAC driver added, DMA lli fixed.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6737 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src')
-rw-r--r--os/hal/src/hal.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/os/hal/src/hal.c b/os/hal/src/hal.c
index 974a8854b..d7a088ec9 100644
--- a/os/hal/src/hal.c
+++ b/os/hal/src/hal.c
@@ -74,6 +74,9 @@ void halInit(void) {
#if HAL_USE_CAN || defined(__DOXYGEN__)
canInit();
#endif
+#if HAL_USE_DAC || defined(__DOXYGEN__)
+ dacInit();
+#endif
#if HAL_USE_EXT || defined(__DOXYGEN__)
extInit();
#endif