Skip to content

Commit 759014a

Browse files
committed
ili9341 Resumable Functions
1 parent 0cdc749 commit 759014a

22 files changed

+999
-1037
lines changed

src/modm/driver/display/ili9341.hpp

Lines changed: 117 additions & 229 deletions
Large diffs are not rendered by default.

src/modm/driver/display/ili9341.lb

Lines changed: 5 additions & 2 deletions
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",
2223
":ui:display")
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)