-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathlibrary.json
executable file
·104 lines (104 loc) · 2.71 KB
/
library.json
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
{
"name": "no-OS-FatFS-SD-SDIO-SPI-RPi-Pico",
"version": "3.5.1",
"description": "Library for SD Cards on the RP2040",
"keywords": ["Data Storage", "FatFs", "SD card", "Secure Digital card", "SPI", "SDIO"],
"repository":
{
"type": "git",
"url": "https://github.com/carlk3/no-OS-FatFS-SD-SDIO-SPI-RPi-Pico.git"
},
"authors":
[
{
"name": "Carl Kugler",
"email": "[email protected]"
}
],
"license": "Apache-2.0 AND MIT-Modern-Variant",
"frameworks": "arduino",
"platforms": "raspberrypi",
"examples": [
{
"name": "Example1_one_SD_card_on_SPI",
"base": "examples/PlatformIO/one_SPI.C++",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "Example2_one_SD_card_on_SDIO",
"base": "examples/PlatformIO/one_SDIO",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "Example3_one_SPI_one_SDIO",
"base": "examples/PlatformIO/one_SPI_one_SDIO",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "Example4_data_logger",
"base": "examples/PlatformIO/data_logger",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "Example5_bench",
"base": "examples/PlatformIO/bench2",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "Example6_hw_debug",
"base": "examples/PlatformIO/hw_debug",
"files": [
"platformio.ini",
"src/main.cpp"
]
}
],
"build": {
"srcFilter": [
"-<.git/> -<.svn/>",
"+<ff15/source/ff.c>",
"+<ff15/source/ffsystem.c>",
"+<ff15/source/ffunicode.c>",
"+<sd_driver/dma_interrupts.c>",
"+<sd_driver/sd_card.c>",
"+<sd_driver/sd_timeouts.c>",
"+<sd_driver/SDIO/rp2040_sdio.c>",
"+<sd_driver/SDIO/sd_card_sdio.c>",
"+<sd_driver/SPI/crc.c>",
"+<sd_driver/SPI/sd_card_spi.c>",
"+<sd_driver/SPI/sd_spi.c>",
"+<sd_driver/SPI/my_spi.c>",
"+<src/crash.c>",
"+<src/crc.c>",
"+<src/f_util.c>",
"+<src/FatFsSd.cpp>",
"+<src/glue.c>",
"+<src/my_debug.c>",
"+<src/my_rtc.c>",
"+<src/util.c>"
],
"flags": [
"-I include",
"-I src/sd_driver",
"-I src/include",
"-I src/ff15/source",
"-Wno-psabi",
"-D PICO_MAX_SHARED_IRQ_HANDLERS=8u"
]
}
}