mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-29 10:00:51 +00:00
This chip got small flash and RAM, so the common runtime is disabled. Now the code only boots and print something every second to check debug console and timer are good. BUG=None TEST=Boot and see console output TEST=make buildall BRANCH=None Change-Id: I01150e8250a404628d1a3b81e677ac4c29782d7f Signed-off-by: Vic (Chun-Ju) Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/195382 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
17 lines
419 B
C
17 lines
419 B
C
/* 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.
|
|
*/
|
|
/* GPIO UART debug printf */
|
|
|
|
#ifndef __BOARD_KEYBORG_DEBUG_H
|
|
#define __BOARD_KEYBORG_DEBUG_H
|
|
|
|
#ifdef CONFIG_DEBUG_PRINTF
|
|
void debug_printf(const char *format, ...);
|
|
#else
|
|
#define debug_printf(...)
|
|
#endif
|
|
|
|
#endif /* __BOARD_KEYBORG_DEBUG_H */
|