You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently GpioPin holds a &'static R making the pin hold a pointer and also making the Parts hold space. Instead, we should be able to make GpioPin hold a zero-sized type and avoid unnecessary data allocation.
Currently
GpioPinholds a&'static Rmaking the pin hold a pointer and also making thePartshold space. Instead, we should be able to makeGpioPinhold a zero-sized type and avoid unnecessary data allocation.