bcm #1

Merged
Kaonnull merged 8 commits from bcm into master 2022-03-03 18:31:07 +01:00
5 changed files with 4443 additions and 0 deletions
Showing only changes of commit 183e9cf80c - Show all commits

2
.gitignore vendored
View File

@@ -66,3 +66,5 @@ build/frame/CMakeFiles/frame.dir/intermediate.manifest
build/frame/CMakeFiles/frame.dir/manifest.rc build/frame/CMakeFiles/frame.dir/manifest.rc
build/frame/CMakeFiles/frame.dir/manifest.res build/frame/CMakeFiles/frame.dir/manifest.res
build/frame/CMakeFiles/frame.dir/vc140.pdb build/frame/CMakeFiles/frame.dir/vc140.pdb
build/.cmake/api/v1/reply/cache-v2-dd95df14d5968b8bc03c.json
build/.cmake/api/v1/reply/index-2022-02-12T19-46-35-0149.json

View File

@@ -5,4 +5,10 @@ project(Frame)
set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD 17)
if (UNIX)
add_subdirectory(bcm2835)
endif (UNIX)
add_subdirectory(frame) add_subdirectory(frame)

4
bcm2835/CMakeLists.txt Normal file
View File

@@ -0,0 +1,4 @@
add_library(bcm2835 STATIC include/bcm2836.h src/bcm2836.c)
target_include_directories(bcm2835 PUBLIC include/)

2188
bcm2835/include/bcm2835.h Normal file

File diff suppressed because it is too large Load Diff

2243
bcm2835/src/bcm2835.c Normal file

File diff suppressed because it is too large Load Diff