This repository was archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtarget.json
More file actions
80 lines (80 loc) · 2.02 KB
/
target.json
File metadata and controls
80 lines (80 loc) · 2.02 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"platform": {
"name": "tm4c",
"device": "TM4C123GH6PM",
"console": "UART0",
"uart": [
{
"id": "UART0",
"comment": "UART-over-USB console output"
}
],
"spi": [
{
"id": "SPI3",
"cpol": "high",
"cpha": "high",
"type": "master",
"clk_div": 8
}
],
"pinmux": [
{
"ids": [ "PA0", "PA1" ],
"dir": "hw",
"hws": { "PA0": "UART0_RX", "PA1": "UART0_TX" },
"comment": "UART0 console pins"
},
{
"ids": [ "PD0", "PD3" ],
"dir": "hw",
"hws": { "PD0": "SPI3_CLK", "PD3": "SPI3_TX" },
"comment": "SPI3 (SSI3) CLK and MOSI pins"
},
{
"ids": [ "PD2" ],
"dir": "hw",
"pin_type": "push",
"hws": { "PD2": "SPI3_RX" },
"comment": "SPI3 (SSI3) MISO pin, push (pull-up)"
},
{
"ids": [ "PD1" ],
"dir": "out",
"comment": "SPI3 CS pin"
}
],
"gpio_alias": [
{
"id": "PD1",
"alias": "sdspi_ss",
"comment": "SDSPI SPI3 slave select"
}
]
},
"device": {
"sdspi": [
{
"id": "fatfs_sdspi",
"cs_gpio": "PD1",
"spi": "SPI3"
}
]
},
"lib": {
"fs": [
{
"type": "fat",
"dev": [
{
"id": "fatfs_sdspi",
"mountpoint": "sdcard"
}
],
"readonly": false,
"enable_seek": true,
"enable_lowercase": false
}
]
}
}