Files
stm32-cnn/PORTING/CNN/cnn.h
2024-11-11 18:17:48 +08:00

14 lines
180 B
C

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