#3. How to Configure UART using REGISTERS || STM32F4

  Рет қаралды 39,444

ControllersTech

ControllersTech

Күн бұрын

Пікірлер: 67
@unhandledexception5988
@unhandledexception5988 Жыл бұрын
When I applied it on stm32h7b3, it didn't work. But when I cleared the moder bits before assigning it, it worked. Thanks for no hal library explanation!
@frankwallner4625
@frankwallner4625 3 жыл бұрын
I love your videos and want to thank you for what you are doing! you are great!
@m-electronics5977
@m-electronics5977 2 ай бұрын
15:43 I don't understand only that Special case: Is the carry 0d16 or 0d1? Because nothing of that makes sense in my head. Because 50,99 + 16 is not 51 and also 50,99 + 1 is not 51 ? Can you explain it please?
@ControllersTech
@ControllersTech 2 ай бұрын
Suppose USARTDIV = 50.99 We fiest multiply the decimal part with 16, so 16*.99 = 15.84 The FRACTIONAL PART value can only be a number, and it is higher than 15, so the next possible value can be 16. Now remember that the FRACTIONAL PART is only 4 bit, so it can not be higher than 15. Therefore the difference (16-15=1) will be added to the MANTISSA and the FRACTIONAL PART becomes 0. This makes the value 51.0
@m-electronics5977
@m-electronics5977 2 ай бұрын
@ Thanks. But that with the difference isn't weiteren in the reference manual. Maybe it is clear for people that use the Mantissa + Fraction longer / understand it completely
@ucontrolchannel5967
@ucontrolchannel5967 4 жыл бұрын
great job again, waiting for I2C :)
@abhishekm1903
@abhishekm1903 4 жыл бұрын
Brilliant work...!!!
@eamonhannon1103
@eamonhannon1103 3 жыл бұрын
Really Excellent!!! Very well presented ! Thank you .
@NutukveKuran
@NutukveKuran Жыл бұрын
8:46 Why we are using pa2 and pa3 ? how can I underdanst which pin use ?
@ControllersTech
@ControllersTech Жыл бұрын
By checking the schematics of the board. Also check the pin description of the mcu to see which pins can be assigned to which peripheral
@NutukveKuran
@NutukveKuran Жыл бұрын
@@ControllersTech thank you sir
@m-electronics5977
@m-electronics5977 2 ай бұрын
23:45 I think one moment: Why we can receive data that is longer than 8 bits, but we receive the data byte for byte😊
@ControllersTech
@ControllersTech 2 ай бұрын
I don't understand what you want to ask
@m-electronics5977
@m-electronics5977 2 ай бұрын
@ That was not a question, I wondered why we can receive multiple-byte length messages, but we receive one byte -> send it back -> receive the next byte -> send it back or? But then the Output in your serial monitor maybe must look like this: "h h e e l l o o ..." First char send you to the Microcontroller, second char comes back. Why it isn't so how I described?
@jansijanu4483
@jansijanu4483 Жыл бұрын
Thank you so much for this useful video. I tried same program in stm32L072 but i am not getting any data. Then one more doubt I have in stm32L0 series, what is the alternate function value in stm32L0, In reference manual not there so I am asking you.
@alperenerdogan4602
@alperenerdogan4602 4 жыл бұрын
great job thank you !!!
@huangsy910
@huangsy910 3 жыл бұрын
Thank you so much. This series on stm32 || NO HAL is very educational and fun to watch/learn. One question on line 30 (and 31) where GPIOA->AFR[0] is written, but why not GPIOA->AFRL for more explicit expression per reference manual?
@ControllersTech
@ControllersTech 3 жыл бұрын
AFRL is not a register in the core file.. it's AFR[0]
@unhandledexception5988
@unhandledexception5988 Жыл бұрын
the convention being used in the reference manual and the code are not the same. That's why the confusion occurs
@vinothkannanr2804
@vinothkannanr2804 4 жыл бұрын
i am using nucleo f446re board i used the same code of yours but i am not getting and data from uart2 pins (pin PA2) , i connected arduino and stm32f4 board . i am getting uart values in tera term terminals but not getting from pins of micro controllers do i have to do any setup in the board to get uart datas from pins.
@vinothkannanr2804
@vinothkannanr2804 4 жыл бұрын
solved the problem by SB14,SB13 soldering removed and SB62,SB63 soldered then on board UART worked
@ControllersTech
@ControllersTech 4 жыл бұрын
Yeah by default uart2 is connected to the usb for communication with PC. That's why i use other uarts for communicating with other devices
@ControllersTech
@ControllersTech 3 жыл бұрын
Actually he was describing some other issue. You can't get the uart2 data from pins PA2 and PA3 in nucleo board. Uart2 is directly connected to the stlink usb. So he did those things to get data from those pins.
@DXingSlovenija
@DXingSlovenija 2 жыл бұрын
Thank you so much, what's the song that you are using in the background?
@embeddedteams9233
@embeddedteams9233 3 жыл бұрын
thank you a lot for this tuto, please i'm using stm32f429discovery board the register are slightly same as your i did all think correclty but did not get any char on the serial please can you guess what can be the issue
@kumar2501
@kumar2501 4 жыл бұрын
Great work
@Jishnu.Janardhanan
@Jishnu.Janardhanan 4 жыл бұрын
Thank you for the video, I was looking for it. One question, in your opinion what is the best method to communicate with a GSM module like SIM800 by UART in a FreeRTOS design?
@ControllersTech
@ControllersTech 4 жыл бұрын
Don't know how to handle that situation with freertos, but without freertos, you can use uart ring buffer to take care of it.
@Jishnu.Janardhanan
@Jishnu.Janardhanan 4 жыл бұрын
@@ControllersTech Thanks for the reply.
@navadeep025
@navadeep025 4 жыл бұрын
Yes. You can use UART and push AT commands.
@naftidhia
@naftidhia 3 жыл бұрын
If I connect an Xbee pro S1 module, what kind of changes do I have to make so that it receives data?
@ajithanandhan7009
@ajithanandhan7009 2 жыл бұрын
you mentioned like writing 0x07 on AFRL7 for USART 1 to 3 but you are writing it on both AFRL6 and 7.i got stuck there lol,can you explain that
@ControllersTech
@ControllersTech 2 жыл бұрын
I guess you mean at 12:05. I wrote 7 to the 8th position for AFRL2 ( pin PA2) and at 12th position AFRL3 (pin PA3)
@ajithanandhan7009
@ajithanandhan7009 2 жыл бұрын
@@ControllersTech you're so great so humble thanks for replaying to my doubt i got cleared about that .Can you suggest which IDE is best for STM32 like IAR or systemworkbench by eclips or Keil.also i am working on SAMD21 thats so complext to understand do have any idea on that
@chickaena1828
@chickaena1828 3 жыл бұрын
You even don't know how sad I become when I realized that your voice is synthesized (after watching more than a few of your videos), I felt like in a movie Her. Nonetheless, I really appreciate your work :)
@ControllersTech
@ControllersTech 3 жыл бұрын
It's amazing that you realized it now. Synthesized version is a bit better, as it doesn't have accent issues. Also it's easier for youtube to generate the subtitles in all the languages.
@chickaena1828
@chickaena1828 3 жыл бұрын
​@@ControllersTech Haha, yes, actually my bf pointed it out and I was like - no way that that's not my fav stm32 youtuber voice 😂
@madayaswanth1205
@madayaswanth1205 9 ай бұрын
from where u getting comments code
@sharana.p6161
@sharana.p6161 3 жыл бұрын
Thank you for the video. I'm struggling with lcd on 4-bit mode. But it works very fine in 8-bit mode. Do you have any lcd libraries for 8 bit mode
@ControllersTech
@ControllersTech 3 жыл бұрын
Just modify that 4 bit library. In functions, send_cmd and send_data, Instead of sending the data in 2 parts (upper and lower nibble), send a single byte. Also modify the startup sequence as per the lcd datasheet (you need to remove 1 or 2 statements i guess).
@vultureig9277
@vultureig9277 3 жыл бұрын
Can u explain about the line in detail While(! (USART2->SR & (1
@ControllersTech
@ControllersTech 3 жыл бұрын
It's the same
@vultureig9277
@vultureig9277 3 жыл бұрын
Can you explain about that line what does it do step by step?
@ControllersTech
@ControllersTech 3 жыл бұрын
It waits for the 6th bit in the USART_SR register to reset.
@unomasenelmar
@unomasenelmar 4 жыл бұрын
Excelente explicación, HAL lo hace todo más fácil, cuando pueda analice el bus CAN, gracias
@NCL_kysuchoiRap
@NCL_kysuchoiRap 2 жыл бұрын
Thank you very much
@wangere7697
@wangere7697 3 жыл бұрын
Thank you. Do you have a similar tutorial for Bluepill?
@ControllersTech
@ControllersTech 3 жыл бұрын
The process is identical in bluepill also
@igorzavgorodnii598
@igorzavgorodnii598 2 жыл бұрын
USART2->CR1 &= ~(1
@alfafatansyah
@alfafatansyah 2 жыл бұрын
yes, thats most right statement
@thisismazhar
@thisismazhar 3 жыл бұрын
Hi...! I have coded everything right according to my stm32f407DISCOVERY Board. I am able to send string using Hercules, But not able to recieve and send it back. I am having a warning where as your does not. on this Line. Send_String(data); Wrning is "main.c(84): incompatible integer to pointer conversion passing 'uint8_t' (aka 'unsigned char') to parameter of type 'char *' [-Wint-conversion].
@ControllersTech
@ControllersTech 3 жыл бұрын
1. Is this your first program with registers ? I would highly recommend that you see the first 2 videos and make those work first. 2. You should use breakpoints at different stages in the code to check where it stucks or something. 3. Also make sure the clock setup is right, and you haven't copied exactly what's mine. Different controllers work at different frequencies. The procedure would be same but values will be different. 4. If doesn't work, contact me on telegram or discord.
@fransanabria1458
@fransanabria1458 3 жыл бұрын
If I connect an HC-06 Bluetooth module, what kind of changes do I have to make so that it receives data?
@ControllersTech
@ControllersTech 3 жыл бұрын
No changes needed
@sangeetkaar7692
@sangeetkaar7692 2 жыл бұрын
i did what you said in you video but still it is not working for me Please help me
@unhandledexception5988
@unhandledexception5988 Жыл бұрын
look at my comment
@justinvuong8161
@justinvuong8161 3 жыл бұрын
Not sure if someone knows why but I am using an STM32F767ZI which has slightly different registers and I was not able to get the baud rate I wanted. I debugged the issue and I noticed that despite having APB1 peripheral clocks at 54MHz it was capped at 20 MHz and when calculating the proper prescalar for that clock I was able to get the peripheral working.
@ControllersTech
@ControllersTech 3 жыл бұрын
Whats the voltage scale range ?
@justinvuong8161
@justinvuong8161 3 жыл бұрын
​@@ControllersTech Sorry I am not too sure where to find that information but I found a section on the "Voltage Regulator" this in the datasheet on page 123. www.st.com/resource/en/reference_manual/dm00224583-stm32f76xxx-and-stm32f77xxx-advanced-armbased-32bit-mcus-stmicroelectronics.pdf I also found this on page 115 of this link www.st.com/resource/en/datasheet/stm32f765bg.pdf When the regulator is ON, the voltage scaling and over-drive mode are adjusted to fHCLK frequency as follows: - Scale 3 for fHCLK ≤ 144 MHz - Scale 2 for 144 MHz < fHCLK ≤ 168 MHz - Scale 1 for 168 MHz < fHCLK ≤ 216 MHz. The over-drive is only ON at 216 MHz. Just FYI my clock is at 216MHz and I have not touched these registers so it seems like scale 1 is the reset value. Please let me know if there is anything else I can do to help or if you know where I can find more descriptive information to answer your question.
@ControllersTech
@ControllersTech 3 жыл бұрын
Did you saw the first video of this series ?
@justinvuong8161
@justinvuong8161 3 жыл бұрын
@@ControllersTech Oh whoops yes I did but I set the register to the reset value (0b11) which is scale 3
@slawekh7862
@slawekh7862 4 жыл бұрын
How ST came up the idea to calcutate baudrate. It is so stupid. But there is much simply way to calculate baud rate. Take frequency for UART preiferial divide by preferd baud rate and put trzys walue to the baud register. this walue is the same as this awful method of calculating baud rate according to Reference Manual
@noweare1
@noweare1 4 жыл бұрын
Could they have made it any more complicated. I doubt it.
@pratikshagaikwad2413
@pratikshagaikwad2413 3 жыл бұрын
How can we glow led using usart2 ?
@ControllersTech
@ControllersTech 3 жыл бұрын
watch the first video and implement it here
@Crazy-vk5sl
@Crazy-vk5sl 4 жыл бұрын
Thanks -^-
@balaji5384
@balaji5384 3 жыл бұрын
👌👌👌👌👌👌👍👍👍👍👍👍👍👍👏👏👏👏
#4. STM32F4 I2C Using Registers || Master mode || NO HAL ||
27:56
ControllersTech
Рет қаралды 26 М.
printf() over the UART using STM32
12:55
Vidura Embedded
Рет қаралды 34 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН
STM32 UART #1 || How to configure Parameters || Send Data
14:27
ControllersTech
Рет қаралды 24 М.
#7. EXTernal Interrupt using Registers || STM32F4 || STM32F1 || NO HAL
17:58
#5. STM32F4 ADC using Registers || Multi Channel Polling
18:11
ControllersTech
Рет қаралды 18 М.
STM32 UART #3 || Receive Data in Blocking Mode & Interrupt
12:37
ControllersTech
Рет қаралды 14 М.
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 257 М.
Understanding UART
6:11
Rohde & Schwarz
Рет қаралды 213 М.
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН