mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
Use our newly-created chip_pre_init() for doing JTAG initialization. BUG=chromium:747629 BRANCH=None TEST=`make buildall -j` Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Change-Id: Ic5771895a214a9f1aa9bd289eef576f52adf973f Reviewed-on: https://chromium-review.googlesource.com/629676 Commit-Ready: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
21 lines
608 B
Makefile
21 lines
608 B
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# nRF51822 chip specific files build
|
|
#
|
|
|
|
CORE:=cortex-m0
|
|
# Force ARMv6-M ISA used by the Cortex-M0
|
|
CFLAGS_CPU+=-march=armv6-m -mcpu=cortex-m0
|
|
|
|
chip-y+=gpio.o system.o uart.o
|
|
chip-y+=watchdog.o ppi.o
|
|
|
|
chip-$(CONFIG_BLUETOOTH_LE)+=radio.o bluetooth_le.o
|
|
chip-$(CONFIG_BLUETOOTH_LE_RADIO_TEST)+=radio_test.o
|
|
chip-$(CONFIG_COMMON_TIMER)+=hwtimer.o clock.o
|
|
chip-$(CONFIG_I2C)+=i2c.o
|
|
chip-$(HAS_TASK_KEYSCAN)+=keyboard_raw.o
|