ВходНаше всё Теги codebook 无线电组件 Поиск Опросы Закон Воскресенье
7 июля
192116 Топик полностью
Vladimir Ljaschko (28.04.2010 11:39, просмотров: 67) ответил Ксения на А у меня специально для вас полная версия EW STM8! Качайте с трекера по ссылке.
Вот уж счастье! /** * @brief Writes high level to the specified GPIO pins. * @param[in] GPIOx : Select the GPIO peripheral number (x = A to I). * @param[in] PortPins : Specifies the pins to be turned high to the port output. * data register. * @retval None * @par Required preconditions: * The port must be configured in output mode. */ void GPIO_WriteHigh(GPIO_TypeDef* GPIOx, GPIO_Pin_TypeDef PortPins) { GPIOx->ODR |= (u8)PortPins; }