Skip to content

Commit f2326c6

Browse files
committed
rewrite-graphics-API
1 parent 0cdc749 commit f2326c6

File tree

120 files changed

+4151
-13302
lines changed

Some content is hidden

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

120 files changed

+4151
-13302
lines changed

Diff for: src/modm/driver/display/ili9341.hpp

+119-258
Large diffs are not rendered by default.

Diff for: src/modm/driver/display/ili9341.lb

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,19 @@ def init(module):
1515
module.name = ":driver:ili9341"
1616
module.description = "ILI9341 Display with parallel and SPI bus transports"
1717

18+
1819
def prepare(module, options):
1920
module.depends(
2021
":architecture:delay",
2122
":architecture:spi.device",
22-
":ui:display")
23+
":ui:graphic")
2324
return True
2425

26+
2527
def build(env):
2628
env.outbasepath = "modm/src/modm/driver/display"
2729
env.copy("ili9341.hpp")
30+
env.copy("ili9341_register.hpp")
2831
env.copy("ili9341_impl.hpp")
29-
env.copy("ili9341_spi.hpp")
30-
env.copy("ili9341_parallel.hpp")
32+
env.copy("ili9341_interface_spi.hpp")
33+
env.copy("ili9341_interface_parallel.hpp")

0 commit comments

Comments
 (0)