diff options
author | Craig Hesling <hesling@chromium.org> | 2019-12-16 18:57:15 -0800 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2020-03-24 21:05:24 +0000 |
commit | 6307a07a599d7f03f1748286c5d7254c991f0ebc (patch) | |
tree | 50021bdcbcbc1eeb0cf87c94a1c05b092b2e2135 /baseboard/nucleo-f412zg/build.mk | |
parent | ff896db8208e2b670f0d1e6b2c510593c4f78191 (diff) | |
download | chrome-ec-6307a07a599d7f03f1748286c5d7254c991f0ebc.tar.gz |
nucleo-f412zg: Initial board offering
This brings initial support for the Nucleo-F412ZG
development board.
This configuration is similar to bloonchipper, but without
fingerprint sensor support, without rollback secret
support, and with an adjusted console USART selection.
The included README.md shows some quick steps to
get a Nucleo-F412ZG up and running EC.
Note that the RSA key included is only for test builds.
It should not be used for any production builds.
BRANCH=none
BUG=none
TEST=make BOARD=nucleo-f412zg
make BOARD=nucleo-f412zg flash
minicom -D/dev/ttyACM0
Change-Id: Ic1150152adbef9ed3f81aafb007be747b2c436af
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1970642
Reviewed-by: Jett Rink <jettrink@chromium.org>
Commit-Queue: Craig Hesling <hesling@chromium.org>
Tested-by: Craig Hesling <hesling@chromium.org>
Diffstat (limited to 'baseboard/nucleo-f412zg/build.mk')
-rw-r--r-- | baseboard/nucleo-f412zg/build.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/baseboard/nucleo-f412zg/build.mk b/baseboard/nucleo-f412zg/build.mk new file mode 100644 index 0000000000..1456331fec --- /dev/null +++ b/baseboard/nucleo-f412zg/build.mk @@ -0,0 +1,14 @@ +# -*- makefile -*- +# Copyright 2020 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. +# +# Nucleo-F412ZG baseboard specific files build +# + +# the IC is STmicro STM32F412 +CHIP:=stm32 +CHIP_FAMILY:=stm32f4 +CHIP_VARIANT:=stm32f412 + +baseboard-y=base-board.o |