mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
483 B
16 lines
483 B
define: DUK_USE_TARGET_INFO
|
|
feature_snippet: |
|
|
#if defined(DUK_OPT_TARGET_INFO)
|
|
#define DUK_USE_TARGET_INFO DUK_OPT_TARGET_INFO
|
|
#else
|
|
#define DUK_USE_TARGET_INFO "unknown"
|
|
#endif
|
|
introduced: 1.2.0
|
|
default:
|
|
string: "unknown"
|
|
tags:
|
|
- debugger
|
|
description: >
|
|
Define a freeform human readable string to describe the target device (e.g.
|
|
"Arduino Yun"). This string will be sent as part of version/target info in
|
|
the debugger protocol and shows up in the debugger UI.
|
|
|