sodo
sodo
i found this by searching pc_fields=" uc_mcontext.gregs[[REG_PC]]" # Solaris x86 (32 + 64 bit) pc_fields="$pc_fields uc_mcontext.gregs[[REG_EIP]]" # Linux (i386) pc_fields="$pc_fields uc_mcontext.gregs[[REG_RIP]]" # Linux (x86_64) pc_fields="$pc_fields uc_mcontext.sc_ip" # Linux (ia64) pc_fields="$pc_fields...
one more error here 
@Biswa96  it's been a while i don't have more information i'll add it soon you can see spaces are double escaped in this screenshot
``` PC@DESKTOP-S799JDR MINGW64 ~ $ export PKG_CONFIG_PATH=/mingw64/lib/pkgconfig:/mingw64/share/pkgconfig:'/c/Program Files (x86)/WinFsp/lib' PC@DESKTOP-S799JDR MINGW64 ~ $ echo $PKG_CONFIG_PATH /mingw64/lib/pkgconfig:/mingw64/share/pkgconfig:/c/Program Files (x86)/WinFsp/lib PC@DESKTOP-S799JDR MINGW64 ~ $ pkg-config fuse3 --libs --cflags -IC:\\Program\ Files\ (x86)\\WinFsp\\lib/../inc/fuse3 C:\\Program\...
i don't think allowing to use pkg-config instead of pkgconf makes any problem
i've roughly merged this into latest version [here](https://github.com/djdisodo/rust-gpu/tree/c04bacf4df57c21a493a12844ebaebf76916e15a) i compiled this code ```rust struct Nah { a: u32 } enum Foo { A(Nah), B, } #[spirv(compute(threads(64)))] pub fn main( #[spirv(global_invocation_id)]...
some of them allocate ram for internal buffer but avrs have exceptionally small ram i think we need internal buffer if we want to avoid dropping bytes while not reading,...
@antonio-sc66 > This buffers are asociated with each object this sounds like it might need alloc or it would be great if we can pin that buffer or get notified...
@antonio-sc66 >This buffers are asociated with each object, so everytime a new HardwareSerial instance is created, more RAM gets reserved. i'm talking about this part using static buffer will always...
[repo](https://github.com/djdisodo/avr_async_serial) updated version with buffer on same repo ```rust let serial = UsartDriver::new(dp.USART0, Baudrate::::new(57600)); let mut write = serial.write().unwrap(); let mut read = serial.read().unwrap(); let mut buf = [0u8; 8];...