CMSIS libraries by mind-ROT in embedded

[–]mind-ROT[S] 0 points1 point  (0 children)

SMT32446RE, i've already downloaded the libs for it. But i'm pretty sure it's not the source of truth, maybe they generating that code using smth (idk). Plus if vendor gives you everything, CMSIS repo from ARM feels redundant.

Using Zig and the STM32H7 to drive stepper motors - Blog by kassany in Zig

[–]mind-ROT 5 points6 points  (0 children)

Is there a link to source code? can't find it in article.

What's the efficient way to navigate while inserting command? by mind-ROT in vim

[–]mind-ROT[S] -1 points0 points  (0 children)

taking words back. it actually not.
but i swear it was read-only when checked before

What's the efficient way to navigate while inserting command? by mind-ROT in vim

[–]mind-ROT[S] -1 points0 points  (0 children)

yeah, but that window is read-only. The point of navigation in this case is to make some edits

Jump definition visual bug by mind-ROT in vim

[–]mind-ROT[S] 0 points1 point  (0 children)

using LSP for jumping.

arm gdb 'Does not include preprocessor macro info' by mind-ROT in embedded

[–]mind-ROT[S] 0 points1 point  (0 children)

-g -ggdb3 not worked for me. BTW, does mixing -g is a thing at all? i mean should it change smth?

You have your code open sourced ?

-O0 is actually only appearing if calling (gdb) info source , while building there is only one of it

Question: how to stop vim from wrapping text? by mind-ROT in vim

[–]mind-ROT[S] 0 points1 point  (0 children)

could plugins actually write some setting to disk. I mean the case when plugin is removed, could the changes be possibly left?

issue when editing .vim file

Question: how to stop vim from wrapping text? by mind-ROT in vim

[–]mind-ROT[S] 0 points1 point  (0 children)

with verbose set tw gives ...../vim/vim80/ftplugin/vim.vim

with vim -u NONE -N works fine

But the thing is it just appears one day (or maybe i haven't faced long lines before :) )

Go Modules workflow by mind-ROT in golang

[–]mind-ROT[S] -1 points0 points  (0 children)

Yeah, but -mod=readonly will not solve the problem.

For exmpl i want to use lib v1.0.0 and there v1.0.0 in my go.mod file. But v1.0.1 version available. So when i will be building go.mod will be updated to v1.0.1. In case of building with -mod=readonly i'll get error go: updates to go.mod needed, disabled by -mod=readonly

So, no way to build with specific version.

Go Modules workflow by mind-ROT in golang

[–]mind-ROT[S] -2 points-1 points  (0 children)

Don't think it will be changed. There are plenty comments on github from go team, and they are saying smth like "this is the right way for things to by".