Imported from GitHub PR https://github.com/tensorflow/tensorflow/pull/46195 Add build terget on Sony Spresense board. To build it, Spresense SDK is required. And hello_world, micro_speech and preson_detection are added for the board. The related issue is #46240 Copybara import of the project: -- bff4913f03be75a368c6845c448fdd2fe5624bb1 by Takayoshi Koizumi <takayoshi.koizumi@gmail.com>: Add Sony Spresense board target Add build terget on Sony Spresense board. To build it, Spresense SDK is required. And hello_world, micro_speech and preson_detection are added for the board. COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/tensorflow/pull/46195 from takayoshi-k:add_spresense_target bff4913f03be75a368c6845c448fdd2fe5624bb1 PiperOrigin-RevId: 356357681 Change-Id: I4b62059ef27b47775431168536da563a56343a6d
21 lines
791 B
C++
21 lines
791 B
C++
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
#include "tensorflow/lite/micro/debug_log.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
extern "C" void DebugLog(const char* s) { printf(s); }
|