diff options
author | edolomb <none@example.com> | 2017-08-10 12:36:46 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2017-08-10 12:36:46 +0000 |
commit | c8b1c0c45ed1dc43a9e1ad85e64734cbe5ccc504 (patch) | |
tree | 5d4e73f924a162d96d4c4ada7eac38c0161bbae4 | |
parent | b4b855bd44517bf7ce0211c3d841f847162c2f0d (diff) | |
download | ChibiOS-c8b1c0c45ed1dc43a9e1ad85e64734cbe5ccc504.tar.gz ChibiOS-c8b1c0c45ed1dc43a9e1ad85e64734cbe5ccc504.tar.bz2 ChibiOS-c8b1c0c45ed1dc43a9e1ad85e64734cbe5ccc504.zip |
Added aicInit() function
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10384 35acf78f-673a-0410-8e92-d51de3d6d3f4
-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 ed647aecb..e71e082ed 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
+ /* Advanced interrupt controller init */
aicInit();
}
|