Jim Mussared

Results 211 comments of Jim Mussared

@smurfix Which architectures do you need to support this on? On our arm targets, if you enable `-fp16-format=ieee` then you get the `_Float16` type. On Cortex-M4 (with floating point, e.g....

@OlivierLenoir This might help: https://github.com/jimmo/git-and-micropython Basically if you do a `rebase -i` and remove all the lines for commits that aren't relevant to your PR.

@Omid888 Which UART interrupt(s) specifically are you interested in? In many cases the "receive data available" (or equivalent) is just used to fill a buffer, which MicroPython's `machine.UART` does for...

@Omid888 > Is what you're suggesting applicable to that? Yes. The rp2 port supports the `rxbuf` kwarg to configure buffering on the UART. > I need RX UART interrupt handler....

Yeah that's the main thing I'm curious about -- the RX IRQ will tell you there's bytes available, not that your specific message is ready (the hardware IRQ trigger has...

Thanks for the update @iabdalkader -- I will reply with more comments, but wanted to specifically address the libmetal submodule first. Here's an attempt at a very basic implementation of...

> You missed a few files, for example [OpenAMP/[email protected]:libmetal:v2023.10.0-micropython#diff-1def8da686dc921f56f400212059bf90033737f5d7928085c7bd98a5a278c188](https://github.com/OpenAMP/libmetal/compare/main...iabdalkader:libmetal:v2023.10.0-micropython#diff-1def8da686dc921f56f400212059bf90033737f5d7928085c7bd98a5a278c188) > > I'm going to add them back, did you remove them for a reason ? @iabdalkader There's no diff from...

> Re endpoint management, I've added support for both endpoint use cases; you can either create the channel in the announcement callback (if one is provided), or register the endpoint...

> I think `RProc` maybe should also be renamed to `Remote` or `RemoteProc` @jimmo any thoughts on this ? @iabdalkader Yes this sounds good. Thanks

See also https://github.com/micropython/micropython/pull/12807