Hanno Braun

Results 390 comments of Hanno Braun

Note to anyone looking for a workaround: Tera has the [`trim_start_matches` filter](https://tera.netlify.app/docs/#trim-start-matches). This seems to work: `{{ image.static_path | trim_start_matches(pat="static") }}`

> Perhaps to avoid this it would be better to add a validation that verifies that the objects are of the same dimension before the call to into(), since the...

@japaric wrote this: > Sure you can add `#[ramfunc]` to `bar` if you wrote it but if you are calling third party code, like `libm`, you have pretty much no...

I had the need to run some code from RAM recently and I figured I'd leave my experiences here. Maybe it will inform any future work on this feature, maybe...

> Not sure what you expect us to do about that. I don't expect you to do anything, and I'm sorry if it came off like that. > Indeed if...

@eldruin I posted there and linked to my comment. Not sure what the status of that PR is though.

Now that I think about it, it should also be useful and possible to move resources into the interrupt context, as long as they're moved back out. Something like this:...

There are SVD files in the CMSIS 5 repository: https://github.com/ARM-software/CMSIS_5/tree/develop/Device/ARM/SVD They seem rather incomplete, though.

An update: @docbrown has been working on [an SVD file](https://gist.github.com/docbrown/7bad626215a73a3a533b36d11886edac). He doesn't plan to continue working on this in the foreseeable future, so anyone who's interested, feel free to pick...

I've come to the conclusion that it's a good idea to run the Export Validator for all platforms on the CI build, not just Linux. I tried to implement this...