Paul Sajna
Paul Sajna
Oh, yeah, I know, I'm just saying adding the dep to the default linker script might be slightly annoying and I don't think it can be feature gated. But it's...
Maybe this is too big to be an example and should be a separate crate? Should we have links off to other repos or a monorepo? Open for discussion
It looks like I should be using `from_fd` instead of `from_bytes`
Reopening, from_fd doesn't work either. ```rust use std::{fs::File, io::{Seek, SeekFrom}}; use goblin::elf32::{header::Header, section_header::SectionHeader, section_header::SHT_REL}; fn main() { let mut fd = File::open("psp-cube-example").unwrap(); let header = Header::from_fd(&mut fd).unwrap(); println!("header: {:?}" ,...
Rebooting triggered the bar windows to be recalculated, so I'm unblocked, but I suggest changing this code to not have a fixed value of 1MB. ``` -rw------- 1 root root...
Based upon your work, I updated to a newer kernel version (6.11.5). I tested that it compiles but haven't tested it on hardware. https://github.com/sajattack/mcp2210-linux
I don't know what you mean. The master branch has no timer support.
I see, thanks for clarifying. However, there are settings that apply to the peripheral as a whole (see `set_config`), and settings that apply to individual pins, so I'm not sure...
I think the TMRx pwm is pretty different, but I haven't explored it.
Ok yeah I'll admit I didn't spend a lot of time designing this or absorbing the existing structure in this HAL. I've been out of the loop on actively using...