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
Similar to the HAL component generator, a proc macro to set up pins, signals and the component would be super kool. Something like:
structThingState{// Whatever}#[derive(halcomp)]#[halcomp("comp-name")]pubstructMyComponent{#[halcomp(pin = "float-input", input)]some_float_input:f32,#[halcomp(pin = "a-flag", input)]some_flag:bool,#[halcomp(pin = "tell-lcnc-about-this", output)]out_value:u32,/// Some internal value to the componentsomething_inside:ThingState}
The text was updated successfully, but these errors were encountered:
Similar to the HAL component generator, a proc macro to set up pins, signals and the component would be super kool. Something like:
The text was updated successfully, but these errors were encountered: