Files
stm32-cnn/PORTING/CNN/cnn.h
Qiea 15e6a6e1dc 添加功能:sendblock
验证通过
2024-11-12 10:59:42 +08:00

15 lines
199 B
C

#ifndef _CNN_H_
#define _CNN_H_
#include "cnn_model.h"
#include "malloc.h"
#include <stdio.h>
#include <math.h>
#include "tools.h"
void cnn_run(void);
void _cnn_run(void);
extern u8 isrun;
#endif