Tristan Lostroh
Tristan Lostroh
#### Memory space API I am thinking of writing a storage embedded hal trait. The current interface in my head is ```read(usize) -> Word```, ```write(usize, Word)```, ```read_slice(usize, [Word])```, ```write_slice(usize,[Word])```. So...
> > #### Memory space API > > I am thinking of writing a storage embedded hal trait. The current interface in my head is `read(usize) -> Word`, `write(usize, Word)`,...
Sorry, I am talking middleware service added via ```App::new().wrap(Middleware::new())```
After having a play, if I have to use scopes to access the path in the middleware, then I don't think what I want to do will work. Basically I...
2 fairly common things that I remember doing when I was using ADCs in PICs was setting the sample rate and the analogue reference. Those are more configuration options, so...
A few Friday afternoon thoughts: Probably one of the things that need to be added is arbitrary button shapes. This would probably solve the first issue. Input events should be...
I did find a solution, but it wasn't obvious. I will pull out some code that shows the problem and how I managed to solve it.
``` let tz: FixedOffset; let date_naive: Date = Utc::today(); if let Some(ref user) = self.authorization { //Extract the timezone if let Some(local_timezone) = self.current_timezone.clone() { tz = local_timezone; } else...
As promised may moons ago, here is an example layout that I think will work (hopefully this job is still relevant). I am not 100% certain of the actual parameters...
Your completely correct. I should have reread everything before posting. Let me have a think and see if I can abuse macros/types some more.