"Thanks for the help on this..." <- > <@heussy:matrix.org> Thanks for the help on this! This works for me. > ``` > let gpio_prt21 = &dp.GPIO.prt21 as *const PRT as *mut GPIO_PRT_Type; > unsafe { > Cy_GPIO_Pin_Init(gpio_prt21, 6, &config as *const _); > } > ``` Gotta be careful with that, & -> &mut is nearly always UB, tho these are probably weird zsts