Select one of the symbols to view example projects that use it.
 
Outline
#include "config.h"
#include "log.h"
#include "time_support.h"
#include "util.h"
handler_util_ms(struct command_invocation *)
util_command_handlers
util_init(struct command_context *)
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/helper/util.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
// SPDX-License-Identifier: GPL-2.0-or-later /*************************************************************************** * Copyright (C) 2010 by Øyvind Harboe * ***************************************************************************//* ... */ /* this file contains various functionality useful to standalone systems */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "log.h" #include "time_support.h" #include "util.h" COMMAND_HANDLER(handler_util_ms) { if (CMD_ARGC != 0) return ERROR_COMMAND_SYNTAX_ERROR; command_print(CMD, "%" PRId64, timeval_ms()); return ERROR_OK; }{ ... } static const struct command_registration util_command_handlers[] = { { .name = "ms", .mode = COMMAND_ANY, .handler = handler_util_ms, .help = "Returns ever increasing milliseconds. Used to calculate differences in time.", .usage = "", ...}, COMMAND_REGISTRATION_DONE ...}; int util_init(struct command_context *cmd_ctx) { return register_commands(cmd_ctx, NULL, util_command_handlers); }{ ... }