Matthias Pronk
Matthias Pronk
I'm currently using some code in my project. If you are interested I can polish it up and create a pull request. I currently have this API: ```rust #[derive(PartialEq)] enum...
I've some code for this in my [clone](https://github.com/mjepronk/stm32f1xx-hal/tree/sleep-mode) of this repository. However, there are some problems: - I can't wake up from Sleep and Stop mode when entered using WFI...
> Sorry for the delayed reply. No problem! > It has been a while since I had a look at the sleep functions so I can't comment that much on...
Euhm, I'm pretty sure it does. Please see [examples/sleep.rs](https://github.com/mjepronk/stm32f1xx-hal/blob/sleep-mode/examples/sleep.rs)... I'm still wondering why STOP mode does not wake-up when entering using WFI though... still working on that.
Yes, that's true. It may be unexpected behavior, though at the same time I think it will be rare to actually cause a real problem. I don't see how we...
Yeah, I'll start a new branch and change properties to snake_case. I will also try out refactoring the code to be more OOP style. If that doesn't work out, I'll...
> I should probably put together a demo .blend file that we can use as a baseline to test against when refactoring to make sure dimension drawing and positioning behavior...
I did it in the template: ```python from django import template from bs4 import BeautifulSoup register = template.Library() @register.filter def absolutize_urls(value, request): """ Absolutize URL's in the given content using...