Files
stm32-cnn/PORTING/CNN/debug.h
Qiea 27b41dcd56 精简项目
删除了不需要的文件,并整理了文件夹
2024-11-08 21:40:34 +08:00

16 lines
276 B
C

#ifndef _DEBUG_H_
#define _DEBUG_H_
#include <sys.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include "malloc.h"
void DEBUG(void);
void DEBUG_PRINTF(const char *fmt, ...);
void SDRAM_USED(void);
void TIM3_Init(u16 arr,u16 psc);
#endif