<phcoder_cat[m]>
Hello, all. I try to generate code for Loongson-2E/2F which implement mips3 but not mips32r2. I try -C target-feature=+mips1 -C target-cpu=mips1 and -C target-feature=+mips1,-mips32r2 -C target-cpu=mips1 but rust still emits an "ins" instruction that appeared in mips32r2
phcoder_cat[m] has joined #rust-embedded
pcs38 has joined #rust-embedded
M9names[m] has joined #rust-embedded
<M9names[m]>
mips32 pre r2 is not well supported in LLVM, and mips in general is not well supported by by either LLVM or rust (the rust project dropped tier 2 support due broken codegen and lack of maintainers, see https://github.com/rust-lang/compiler-team/issues/648)
agodard has joined #rust-embedded
dngrs[m] has quit [Quit: Idle timeout reached: 172800s]
<agodard>
hi, anyone happen to know the state of github.com/rust-embedded/meta-rust-bin? there are hanging PRs there, especially #202 which is quite blocking
<phcoder_cat[m]>
<M9names[m]> "mips32 pre r2 is not well..." <- Do I understand it correctly that it's likely a bug with llvm and that if I want it fixed I have to do it myself?
<M9names[m]>
phcoder_cat[m]: yes on both counts
<phcoder_cat[m]>
More digging revealed that creating custom target json fixes my problem
ouilemur has quit [Quit: WeeChat 4.5.2]
ouilemur has joined #rust-embedded
cinemaSundays has joined #rust-embedded
Foxyloxy has quit [Read error: Connection reset by peer]
TomB[m] has quit [Quit: Idle timeout reached: 172800s]
kevinmehall[m] has quit [Quit: Idle timeout reached: 172800s]
dirbaio[m] has quit [Quit: Idle timeout reached: 172800s]
dygear[m] has quit [Quit: Idle timeout reached: 172800s]
cinemaSundays has quit [Quit: Connection closed for inactivity]
AlexandrosLiarok has quit [Quit: Idle timeout reached: 172800s]
pcs38 has quit [Quit: leaving]
pcs38 has joined #rust-embedded
FreeKill[m] has quit [Quit: Idle timeout reached: 172800s]
vollbrecht[m] has quit [Quit: Idle timeout reached: 172800s]
<andrewmorrow[m]>
the memory regions line up with the examples in the embassy-rs repo. Which linker script should I use? Can I use the factory UF2 bootloader, or do I need to get out the J-Link to use embassy? Thanks!!
sajattack[m]1 has joined #rust-embedded
<sajattack[m]1>
You can use cargo hf2 if you want
<sajattack[m]1>
Or generate a uf2 file with one of the other uf2 crates
<sajattack[m]1>
There's a couple I think
<sajattack[m]1>
I wrote an initial one but it's not very good
<andrewmorrow[m]>
I don't remember if the UF2 bootloader will protect itself against an attempt to flash an image that would overwrite it
<sajattack[m]1>
bleh yeah that looks messy
<sajattack[m]1>
I think you just add 16K to whatever the address in the nrf52-hal one is
<andrewmorrow[m]>
OK, I'll give it a shot. Worst case I do have a J-Link and the board has a SWD header, so I assume it should be easy-ish to put the factory bootloader back if I mess it up
<sajattack[m]1>
yep
<sajattack[m]1>
I think the bootloader will protect itself against overwriting itself. It's more when you're flashing with jlink you gotta be careful
<andrewmorrow[m]>
time for the J-link to come out and play :D
jason-kairos[m] has joined #rust-embedded
<jason-kairos[m]>
Is there a rust equivalent to the lwip TCP stack?
<jason-kairos[m]>
I thought that maybe I read an article about a rust network stack a couple of months ago. No clue if it was anything suitable for a microcontroller.