-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsidebars.omega4.js
More file actions
63 lines (60 loc) · 1.3 KB
/
sidebars.omega4.js
File metadata and controls
63 lines (60 loc) · 1.3 KB
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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [
{
type: 'doc',
id: 'overview',
label: '🔍 Overview',
},
{
type: 'doc',
id: 'getting-started',
label: '🚀 Getting Started',
},
{
type: 'doc',
id: 'hw-design-guide/omega4-hardware-design-guide',
label: '📐 Hardware Design Guide',
},
{
type: 'category',
label: '💾 Software',
items: [
'software/flashing',
],
},
{
type: 'category',
label: '📶 Networking',
items: [
'networking/wifi_ap',
'networking/wifi_sta',
'networking/bluetooth',
'networking/bluetooth-gatt-provisioning',
],
},
{
type: 'category',
label: '🔌 Hardware Interfaces',
items: [
'hardware/spi-nand-flash',
'hardware/sd-card',
'hardware/i2c',
'hardware/spi',
'hardware/pwm',
{
type: 'doc',
id: 'hardware/rtc',
label: 'RTC',
},
'hardware/hpmcu',
'hardware/audio-voice-input',
'hardware/camera-csi',
'hardware/usb-host',
'hardware/usb-device-gadget',
],
},
],
};
module.exports = sidebars;