-
Notifications
You must be signed in to change notification settings - Fork 9
/
sidebars-chester.js
121 lines (119 loc) · 2.98 KB
/
sidebars-chester.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'introduction',
{
type: 'category',
label: 'Platform Management',
link: {
type: 'generated-index',
},
collapsed: false,
items: [
'platform-management/hardwario-manager',
'platform-management/cellular-networks',
],
},
{
type: 'category',
label: 'Hardware Description',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'hardware-description/basic-parameters',
'hardware-description/block-diagram',
'hardware-description/connector-description',
'hardware-description/i2c-address-space',
'hardware-description/enclosures',
],
},
'power-mgmt',
{
type: 'category',
label: 'Extension Modules',
link: {
type: 'doc',
id: 'extension-modules/index',
},
collapsed: false,
items: [
'extension-modules/chester-x0',
'extension-modules/chester-x2',
'extension-modules/chester-x3',
'extension-modules/chester-x4',
'extension-modules/chester-x6',
'extension-modules/chester-x7',
'extension-modules/chester-x8',
'extension-modules/chester-x9',
],
},
{
type: 'category',
label: 'Catalog Applications',
link: {
type: 'doc',
id: 'catalog-applications/index',
},
collapsed: true,
items: [
'catalog-applications/chester-clime',
'catalog-applications/chester-current',
'catalog-applications/chester-input',
'catalog-applications/chester-push'
],
},
{
type: 'category',
label: 'Firmware Flashing',
link: {
type: 'doc',
id: 'firmware-flashing/index',
},
collapsed: false,
items: [
'firmware-flashing/app-j-link',
'firmware-flashing/app-bluetooth',
'firmware-flashing/lte-j-link',
'firmware-flashing/lrw-j-link',
'firmware-flashing/chester-z-j-link',
],
},
{
type: 'category',
label: 'Developer Tools',
link: {
type: 'generated-index',
},
collapsed: false,
items: [
'developer-tools/command-line-tools',
'developer-tools/segger-j-link',
'developer-tools/power-profiler-kit-ii'
],
},
{
type: 'category',
label: 'Firmware SDK',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'firmware-sdk/requirements',
'firmware-sdk/j-link-installation',
'firmware-sdk/install-ubuntu',
'firmware-sdk/install-macos',
'firmware-sdk/install-windows',
'firmware-sdk/build-and-deploy',
'firmware-sdk/how-to-i2c-bus',
'firmware-sdk/how-to-kconfig',
],
},
'ordering-codes',
'product-certification',
],
};
module.exports = sidebars;