mirror of https://github.com/arendst/Tasmota.git
22 lines
573 B
C
22 lines
573 B
C
#include "be_constobj.h"
|
|
|
|
static be_define_const_map_slots(m_libdebug_map) {
|
|
{ be_const_key(traceback, -1), be_const_func(m_traceback) },
|
|
{ be_const_key(codedump, -1), be_const_func(m_codedump) },
|
|
{ be_const_key(calldepth, -1), be_const_func(m_calldepth) },
|
|
{ be_const_key(top, -1), be_const_func(m_top) },
|
|
{ be_const_key(attrdump, 0), be_const_func(m_attrdump) },
|
|
};
|
|
|
|
static be_define_const_map(
|
|
m_libdebug_map,
|
|
5
|
|
);
|
|
|
|
static be_define_const_module(
|
|
m_libdebug,
|
|
"debug"
|
|
);
|
|
|
|
BE_EXPORT_VARIABLE be_define_const_native_module(debug, NULL);
|