Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[driver] Ili9341 support Resumable Functions #664

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
346 changes: 117 additions & 229 deletions src/modm/driver/display/ili9341.hpp

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions src/modm/driver/display/ili9341.lb
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,19 @@ def init(module):
module.name = ":driver:ili9341"
module.description = "ILI9341 Display with parallel and SPI bus transports"


def prepare(module, options):
module.depends(
":architecture:delay",
":architecture:spi.device",
":ui:display")
return True


def build(env):
env.outbasepath = "modm/src/modm/driver/display"
env.copy("ili9341.hpp")
env.copy("ili9341_register.hpp")
env.copy("ili9341_impl.hpp")
env.copy("ili9341_spi.hpp")
env.copy("ili9341_parallel.hpp")
env.copy("ili9341_interface_spi.hpp")
env.copy("ili9341_interface_parallel.hpp")
Loading