diff options
author | Vincent Palatin <vpalatin@chromium.org> | 2013-08-22 14:10:38 -0700 |
---|---|---|
committer | chrome-internal-fetch <chrome-internal-fetch@google.com> | 2013-09-28 03:21:00 +0000 |
commit | f1d0d8b2dbc688730b5712c783550662f55fbffc (patch) | |
tree | a189edcc4ea39da45d2c293d4d43c3b697564029 /board/discovery/build.mk | |
parent | 84ba1881208aa0fe56e7775958d95a8fa78f93c4 (diff) | |
download | chrome-ec-f1d0d8b2dbc688730b5712c783550662f55fbffc.tar.gz |
basic support for STM32L-Discovery board
Support for the basic development board built by STmicro with STM32L152
chip.
Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
BUG=none
TEST=See that LEDs can be driven from the console, button can be read. With
additional print statement, see that button hook is called.
BRANCH=none
Change-Id: I494ab525f17e08b57595ee49489ade63b3305f2a
Reviewed-on: https://chromium-review.googlesource.com/170920
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Commit-Queue: Jeremy Thorpe <jeremyt@chromium.org>
Tested-by: Jeremy Thorpe <jeremyt@chromium.org>
Diffstat (limited to 'board/discovery/build.mk')
-rw-r--r-- | board/discovery/build.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/board/discovery/build.mk b/board/discovery/build.mk new file mode 100644 index 0000000000..8de1b957d3 --- /dev/null +++ b/board/discovery/build.mk @@ -0,0 +1,13 @@ +# -*- makefile -*- +# Copyright (c) 2013 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. +# +# Board specific files build + +# the IC is STmicro STM32L151R8H6 +CHIP:=stm32 +CHIP_FAMILY:=stm32l +CHIP_VARIANT:=stm32l15x + +board-y=board.o |