From: batt Date: Mon, 12 Apr 2010 21:32:25 +0000 (+0000) Subject: LPC2xxx: Add VIC sources to common cdef file. X-Git-Tag: 2.5.0~490 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=c8001fa603c0d544f013584f3c8cbb828da71de1;p=bertos.git LPC2xxx: Add VIC sources to common cdef file. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3418 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cpu/arm/info/lpc2.common b/bertos/cpu/arm/info/lpc2.common index 3e62b877..0577347e 100644 --- a/bertos/cpu/arm/info/lpc2.common +++ b/bertos/cpu/arm/info/lpc2.common @@ -66,6 +66,7 @@ CPU_TAGS = ["lpc2", CORE_CPU] # Where are locate the bertos directories SCRIPT_DIR = CPU_DIR + "arm/scripts/" HW_DIR = CPU_DIR + "arm/hw/" +DRV_DIR = CPU_DIR + "arm/drv/" MK_FLASH_SCRIPT = PRG_SCRIPTS_DIR + "arm/flash.sh" MK_STOPFLASH_SCRIPT = PRG_SCRIPTS_DIR + "arm/stopopenocd.sh" @@ -81,4 +82,4 @@ MK_CPU_LDFLAGS = "-nostartfiles -Wl,--no-warn-mismatch" # CRT files. MK_CPU_CPPASRC = HW_DIR + "crt_arm7tdmi.S " + HW_DIR + "vectors_lpc2.S" -MK_CPU_CSRC = HW_DIR + "init_lpc2.c" +MK_CPU_CSRC = HW_DIR + "init_lpc2.c " + DRV_DIR + "vic_lpc2.c"