mirror of
https://github.com/sipeed/MaixCDK.git
synced 2026-09-11 06:09:42 -05:00
34 lines
679 B
C++
34 lines
679 B
C++
/**
|
|
* @author neucrack@sipeed
|
|
* @copyright Sipeed Ltd 2023-
|
|
* @license Apache 2.0
|
|
* @update 2023.9.8: Add framework, create this file.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "signal.h"
|
|
#include "stdio.h"
|
|
#include "stdlib.h"
|
|
#include "string.h"
|
|
#include "stdint.h"
|
|
#include "stdbool.h"
|
|
|
|
#include "global_config.h"
|
|
#include "global_build_info_version.h"
|
|
|
|
#include "maix_type.hpp"
|
|
#include "maix_err.hpp"
|
|
#include "maix_fs.hpp"
|
|
#include "maix_thread.hpp"
|
|
#include "maix_time.hpp"
|
|
#include "maix_tensor.hpp"
|
|
#include "maix_i18n.hpp"
|
|
#include "maix_log.hpp"
|
|
#include "maix_comm_base.hpp"
|
|
#include "maix_protocol.hpp"
|
|
#include "maix_app.hpp"
|
|
#include "maix_util.hpp"
|
|
#include "maix_sys.hpp"
|
|
|