12 lines
232 B
C
12 lines
232 B
C
#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);
|