Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/utilities/ulog/ulog.c
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ static void ulog_filter(uint8_t argc, char **argv)
}
}
MSH_CMD_EXPORT(ulog_filter, Show ulog filter settings);
#endif defined(RT_USING_FINSH)
#endif /* RT_USING_FINSH */
#endif /* ULOG_USING_FILTER */

rt_err_t ulog_backend_register(ulog_backend_t backend, const char *name, rt_bool_t support_color)
Expand Down
5 changes: 5 additions & 0 deletions components/utilities/ulog/ulog_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
#ifndef _ULOG_DEF_H_
#define _ULOG_DEF_H_

#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <rtdef.h>

#ifdef __cplusplus
extern "C" {
#endif
Expand Down