Skip to content

Commit 3f7e073

Browse files
committed
Add the debugging tool user manual
1 parent 1977a12 commit 3f7e073

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+870
-0
lines changed

website/docs/products/software/dm-debugging-tool.mdx

Lines changed: 833 additions & 0 deletions

website/sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const sidebars: SidebarsConfig = {
5353
},
5454
items: [
5555
'products/software/usb-can-conversion-software',
56+
'products/software/dm-debugging-tool',
5657
],
5758
},
5859
],
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// Copyright 2026 Enactic, Inc.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
import React, {
16+
type ReactNode
17+
} from 'react';
18+
19+
export interface InlineImageProps {
20+
src: string;
21+
alt: string;
22+
width: string;
23+
}
24+
25+
export default function BlockImage({ src, alt, width }: InlineImageProps): ReactNode {
26+
return (
27+
<img
28+
src={require(`@site/static/img/${src}`).default}
29+
alt={alt}
30+
style={{
31+
display: 'inline',
32+
width: width,
33+
}}
34+
/>
35+
);
36+
}
55.5 KB
1.94 KB
1.96 KB
2.27 KB
3.07 KB
1.95 KB
2.17 KB

0 commit comments

Comments
 (0)