11 lines
161 B
C
11 lines
161 B
C
|
|
#ifndef _APP_COMM_H_
|
||
|
|
#define _APP_COMM_H_
|
||
|
|
|
||
|
|
#include "rtthread.h"
|
||
|
|
|
||
|
|
#define BSP_LOG(format,...) do { \
|
||
|
|
rt_kprintf(format, ##__VA_ARGS__); \
|
||
|
|
} while (0)
|
||
|
|
|
||
|
|
#endif
|