Browse
STMicroelectronics Community
FAQs
Sign In
Product forums
STM32 MCUs
STM32 MCUs Products
STM32 MCUs Boards and hardware tools
STM32 MCUs Software development tools
STM32 MCUs Embedded software
STM32 MCUs TouchGFX and GUI
STM32 MCUs Motor control
STM32 MCUs Security
STM32 MCUs Wireless
STM32 MPUs
STM32 MPUs Products
STM32 MPUs Boards and hardware tools
STM32 MPUs Embedded software and solutions
STM32 MPUs Software development tools
MEMS and sensors
MEMS (sensors)
Imaging (sensors)
Automotive and Transportation
Automotive MCUs
AutoDevKit Ecosystem
GNSS positioning
Edge AI
Interface and connectivity ICs
Power management
ST25 NFC/RFID tags and readers
STM8 MCUs
Others: hardware and software
Analog and audio
Knowledge base
STM32 MCUs
STM32 MPUs
MEMS and sensors
Analog and audio
EMI filtering and signal conditioning
Interface and connectivity ICs
Power management
Quality & reliability
Academy
About
Community guidelines
Feedback forum
Community blog
Developer news
ag n.1
Associate II
since
2022-04-06
2024-01-23
User statistics
9
Posts
0
Solutions
0
Kudos given
0
Kudos received
View all badges
STMicroelectronics Community
About ag n.1
Options
Report User
User Activity
Posts
Replies
I am trying to transfer a character using uart in stm32f030 to pc , done with initialization with uart config there is no errors but I am not able to see data sent .please help
2022-04-11
void uartInit(){ USART_InitTypeDef uartInitStruct; GPIO_InitTypeDef gpioInitStruct; RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); gpioInitStruct.GPIO_Pin = GPIO_Pin_9 | GPIO_Pin_10; gpioIni...
Hi I am working STM32F030 series for delay using SysTick. I am new to this field and by going through the data sheet I created a delay function, I don't know where I am going wrong , Please help
2022-04-06
this is my codeuint32_t delayCnt;int main(){ ledInit(); SysTick_Config(SystemCoreClock/48000); while(1) { GPIO_WriteBit(GPIOC, GPIO_Pin_13, Bit_SET); delay_ms(10000); GPIO_WriteBit(GPIOC, GPIO_Pin_13, Bit_RESET); }}
Re: I am trying to transfer a character using uart in stm32f030 to pc , done with initialization with uart config there is no errors but I am not able to see data sent .please help
2022-04-12
sir after this i tried sending a string it worked and now i am trying to receive string i am facing issue could you plz help
Re: I am trying to transfer a character using uart in stm32f030 to pc , done with initialization with uart config there is no errors but I am not able to see data sent .please help
2022-04-11
this its working sir thank you :D .
Re: I am trying to transfer a character using uart in stm32f030 to pc , done with initialization with uart config there is no errors but I am not able to see data sent .please help
2022-04-11
while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);if i give USART_FLAG_TXE) == SET i am getting the data.
Re: I am trying to transfer a character using uart in stm32f030 to pc , done with initialization with uart config there is no errors but I am not able to see data sent .please help
2022-04-11
sir can you plz explain I am not able get you
Re: Hi I am working STM32F030 series for delay using SysTick. I am new to this field and by going through the data sheet I created a delay function, I don't know where I am going wrong , Please help
2022-04-07
I forgot to set other delay after turning off the led it was a silly mistake of mine:grinning_face_with_sweat: .
View more