Skip to content

Convert stm32-lcd-logo to use mmio #100

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

Merged
merged 1 commit into from
Mar 27, 2025
Merged
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
1 change: 1 addition & 0 deletions .swiftformatignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
./harmony/*
./stm32-lcd-logo/Sources/Application/Registers/*
./stm32-neopixel/Sources/Application/Registers/*
./stm32-uart-echo/Sources/Application/Registers/*
33 changes: 33 additions & 0 deletions stm32-lcd-logo/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions stm32-lcd-logo/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ let package = Package(
.executable(name: "Application", targets: ["Application"])
],
dependencies: [
// .package(url: "https://github.com/apple/swift-mmio", branch: "main")
.package(url: "https://github.com/apple/swift-mmio", branch: "main")
],
targets: [
// SVD2Swift \
// --input Tools/SVDs/stm32f7x6.patched.svd \
// --output stm32-lcd-logo/Sources/STM32F7x6 \
// --peripherals LTDC RCC GPIOA GPIOB GPIOC GPIOD GPIOE GPIOF GPIOG GPIOH GPIOI GPIOJ GPIOK
// --peripherals FLASH GPIOA GPIOB GPIOC GPIOD GPIOE GPIOF GPIOG GPIOH GPIOI GPIOJ GPIOK LTDC RCC
.executableTarget(
name: "Application",
dependencies: [
// .product(name: "MMIO", package: "swift-mmio"),
"Support"
.product(name: "MMIO", package: "swift-mmio"),
"Support",
]),
.target(name: "Support"),
])
81 changes: 0 additions & 81 deletions stm32-lcd-logo/Sources/Application/Board.swift

This file was deleted.

Loading
Loading