Skip to content
Open
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
8 changes: 0 additions & 8 deletions docs/DEVELOPER/debugging/socket-based-debugger.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ struct HandshakeFromDVP {
};
```

<HTMLBlock>{`
<table>
<thead>
<tr>
Expand Down Expand Up @@ -141,7 +140,6 @@ struct HandshakeFromDVP {
</tr>
</tbody>
</table>
`}</HTMLBlock>

The behavior after the handshake has been executed, depends on the version of the BrightScript debug protocol being used:

Expand All @@ -161,7 +159,6 @@ struct DebuggerRequest {
};
```

<HTMLBlock>{`
<table>
<thead>
<tr>
Expand Down Expand Up @@ -262,7 +259,6 @@ struct DebuggerRequest {
</tr>
</tbody>
</table>
`}</HTMLBlock>

## Debugger Response Format

Expand All @@ -279,7 +275,6 @@ struct DebuggerResponse {
};
```

<HTMLBlock>{`
<table>
<thead>
<tr>
Expand Down Expand Up @@ -380,7 +375,6 @@ struct DebuggerResponse {
</tr>
</tbody>
</table>
`}</HTMLBlock>

<br />

Expand All @@ -398,7 +392,6 @@ struct DebuggerUpdate {
};
```

<HTMLBlock>{`
<table>
<thead>
<tr>
Expand Down Expand Up @@ -547,7 +540,6 @@ struct DebuggerUpdate {
</tr>
</tbody>
</table>
`}</HTMLBlock>

### AllThreadsStopped

Expand Down
2 changes: 0 additions & 2 deletions docs/DEVELOPER/dev-tools/external-control-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ commands to the Roku device.

### General ECP commands

<HTMLBlock>{`
<table>
<thead>
<tr><th class="short-line">Command</th><th class="short-line">Description</th><th class="short-line">Required Device Settings</th></tr>
Expand Down Expand Up @@ -179,7 +178,6 @@ commands to the Roku device.
<tr><td class="short-line">input</td><td class="long-line">Sends custom events to the current application. It takes a user defined list of name-value pairs sent as query string URI parameters. The external control server places these name-value pairs into an associative array, and passes them directly through to the currently executing app script using a Message Port attached to a created roInput object.<br /><br />[Input Command Conventions](doc:external-control-api#input-command-conventions) includes detailed recommendations on how to pass your data.<br /><br />Messages of type [roInputEvent](doc:roinputevent) have a GetInfo() method that will obtain the associative array. The arguments must be URL-encoded. <br /><br />This command is sent using an HTTP POST with no body. Example: <code>POST /input?acceleration.x=0.0&acceleration.y=0.0&acceleration.z=9.8</code></td><td class="short-line" /></tr>
</tbody>
</table>
`}</HTMLBlock>

## Input command conventions

Expand Down
Loading