Files
stm32-cnn/PORTING/CNN/debug.h
Qiea 5ee5304676 添加功能
scan_files:扫描目录
2024-11-13 00:38:53 +08:00

17 lines
304 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 scan_files(u8 * path);
void TIM3_Init(u16 arr,u16 psc);
#endif