Danilo Bargen
Danilo Bargen
Ah, thanks! I only looked inside the `micropython-lib` repo :) So when porting, would it make sense to use the current 3.6 backport directly? I could probably give it a...
I just checked. The module makes a lot of use of the `abc` module which is not supported yet by micropython (and is probably not that easy to port). It...
@stlehmann yes, I agree (as already suggested in my [older comment](https://github.com/micropython/micropython-lib/issues/190#issuecomment-310976000)). Stubs would be sufficient, you don't want to do typechecking on the target platform.
In case this is useful to others, I wrote this script, which launches multiple sessions in tmux: ```bash #!/usr/bin/env bash # # Requirements: # # - nproc # - tmux...
:+1:
@Dirbaio same issue here, with an STM32F411 blackpill from WeAct. Did you resolve your issue?
Ohh, never mind, I'm an idiot. I accidentally swapped SWDIO and SWCLK pins on my JLink 🙈🤦🏻♂️ With the proper connections I can flash the MiniF4 / Black Pill.
I just stumbled over this. Is there any workaround that we can use in the meantime? In the worst case I could wrapp all 3rd party functions with my own:...
@Michael-F-Bryan thanks. yeah, there's probably currently no way around wrapping these functions. by the way, you should try to avoid two `#[no_mangle]` functions with the same name, even across crate...
It doesn't happen when linking together two libraries with rustc, but it happened to me when trying to link two independent shared libraries (compiled from Rust) into an iOS app....