mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-10 23:08:34 +00:00
[feat] add tensorflowlite component and demo
This commit is contained in:
parent
57bda6c48b
commit
a65f86a713
576 changed files with 175425 additions and 0 deletions
32
examples/tensorflowlite/sinx/main.c
Normal file
32
examples/tensorflowlite/sinx/main.c
Normal file
|
@ -0,0 +1,32 @@
|
|||
/* Copyright 2019 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 "main_functions.h"
|
||||
#include "board.h"
|
||||
#include "bflb_uart.h"
|
||||
|
||||
/// Global Destructor for C++, which we're not using.
|
||||
/// See https://alex-robenko.gitbook.io/bare_metal_cpp/compiler_output/static#custom-destructors
|
||||
void *__dso_handle = NULL;
|
||||
|
||||
int main()
|
||||
{
|
||||
board_init();
|
||||
setup();
|
||||
printf("model load successfully!!\r\n");
|
||||
|
||||
while (1) {
|
||||
loop();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue