Posted on October 04, 2013 at 11:13I have found working solution. But for me it look ugly.uint8_t command = 0x55; uint16_t u16Temp = 0; u16Temp = GPIO_ReadOutputData(GPIOA)&0xFF00; u16Temp |= command; GPIO_Write(GPIOA, u16Temp); Is there better way ...