diff options
author | edolomb <none@example.com> | 2017-08-10 12:27:16 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2017-08-10 12:27:16 +0000 |
commit | b4b855bd44517bf7ce0211c3d841f847162c2f0d (patch) | |
tree | 4ca35af5f0faf69a288328199fff988dfba68628 /os/hal/ports/SAMA | |
parent | d63dbb9e383589a44d0823fd97feb6a5fa22e747 (diff) | |
download | ChibiOS-b4b855bd44517bf7ce0211c3d841f847162c2f0d.tar.gz ChibiOS-b4b855bd44517bf7ce0211c3d841f847162c2f0d.tar.bz2 ChibiOS-b4b855bd44517bf7ce0211c3d841f847162c2f0d.zip |
add aic init
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10383 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/SAMA')
-rw-r--r-- | os/hal/ports/SAMA/SAMA5D2x/hal_lld.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c b/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c index c852d44b6..ed647aecb 100644 --- a/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c +++ b/os/hal/ports/SAMA/SAMA5D2x/hal_lld.c @@ -62,6 +62,7 @@ void hal_lld_init(void) { #if defined(SAMA5_DMA_REQUIRED)
dmaInit();
#endif
+ aicInit();
}
/**
|