alpha
Login
or
Join now
arthomnix.dev
/
eepy
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fw16-epd-bsp: migrate to rust 2024
author
arthomnix
date
1 year ago
(Mar 23, 2025, 8:17 PM UTC)
commit
7fe906f0
7fe906f0eecc242a22f5a79e14517dec80be4b9c
parent
4bc80103
4bc8010345991824b032c4ffc764a6babc61a3c9
+3
-3
2 changed files
Expand all
Collapse all
Unified
Split
fw16-epd-bsp
Cargo.toml
src
lib.rs
+1
-1
fw16-epd-bsp/Cargo.toml
Reviewed
···
2
2
name = "fw16-epd-bsp"
3
3
version = "0.1.0"
4
4
authors = ["arthomnix"]
5
5
-
edition = "2021"
5
5
+
edition = "2024"
6
6
description = "Board Support Package for arthomnix's touchscreen e-paper input module for the Framework 16"
7
7
license = "MIT"
8
8
+2
-2
fw16-epd-bsp/src/lib.rs
Reviewed
···
8
8
pub use rp2040_hal::entry;
9
9
10
10
#[cfg(feature = "boot2")]
11
11
-
#[link_section = ".boot2"]
12
12
-
#[no_mangle]
11
11
+
#[unsafe(link_section = ".boot2")]
12
12
+
#[unsafe(no_mangle)]
13
13
#[used]
14
14
pub static BOOT2_FIRMWARE: [u8; 256] = rp2040_boot2::BOOT_LOADER_W25Q080;
15
15