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

St7789 async dma and partial update #593

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7723936
Initial Commit
AndrewCapon Dec 3, 2022
f2dd056
Initial Commit
AndrewCapon Dec 3, 2022
c80c263
Tidy up
AndrewCapon Dec 3, 2022
ac5e428
Make sure all examples build.
AndrewCapon Dec 3, 2022
b40bc41
Missing line. Not sure, git issue maybe.
AndrewCapon Dec 3, 2022
9a6687e
Tidy method name
AndrewCapon Dec 3, 2022
c642397
dma_control_chain_blocks was not being deleted.
AndrewCapon Dec 8, 2022
5a3cfc5
Fix spelling mistake
AndrewCapon Dec 8, 2022
d382f95
Add pico_display_2_async_region example.
AndrewCapon Dec 8, 2022
e3b75a1
fix cmake issue
AndrewCapon Dec 8, 2022
18a8875
Add USE_ASYNC_INTERRUPTS define
AndrewCapon Feb 27, 2023
284377d
Merge branch 'main' into st7789_async_dma_and_partial_update
AndrewCapon Aug 11, 2024
4f1d7b5
Fix spi speed for pico 2
AndrewCapon Aug 14, 2024
7ee35b4
add pico_plus_2_psram example
AndrewCapon Aug 14, 2024
8da14e1
Add simple c++ object test
AndrewCapon Aug 14, 2024
a81de9d
Add LwmemAllocator and c++ test
AndrewCapon Aug 14, 2024
8794618
Add readme
AndrewCapon Aug 14, 2024
dd244c5
typo
AndrewCapon Aug 14, 2024
6935c46
merge
AndrewCapon Aug 14, 2024
c3f0b40
modules?
AndrewCapon Aug 14, 2024
14a1238
Fic merge issue
AndrewCapon Aug 14, 2024
5188c08
Attempts at looking at speed of ram.
AndrewCapon Aug 14, 2024
532151b
back to -og
AndrewCapon Aug 14, 2024
87768fa
Fix silly bugs, unroll loop a bit
AndrewCapon Aug 14, 2024
b340519
Git arseup
AndrewCapon Aug 14, 2024
5623b90
fix the stupid size bugs, new logging.
AndrewCapon Aug 14, 2024
1c103dc
.
AndrewCapon Aug 16, 2024
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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@
[submodule "drivers/mlx90640/src"]
path = drivers/mlx90640/src
url = https://github.com/melexis/mlx90640-library
[submodule "examples/pico_plus_2_psram/lwmem"]
path = examples/pico_plus_2_psram/lwmem
url = https://github.com/MaJerle/lwmem
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.12)

# Pull in PICO SDK (must be before project)
include(pico_sdk_import.cmake)

Expand Down
Loading
Loading