mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-09 07:31:08 +08:00
12 lines
172 B
C
12 lines
172 B
C
|
#ifndef DEBUG_H__
|
||
|
#define DEBUG_H__
|
||
|
|
||
|
#include "arch.h"
|
||
|
|
||
|
#define software_break(...) \
|
||
|
do { \
|
||
|
arch_break(); \
|
||
|
} while(0)
|
||
|
|
||
|
#endif
|