I love your tutorials. They are so clear and straightforward!
@SciHeartJourney3 жыл бұрын
Thank you! I never realized RTOS was so easy to use before, or how useful it is. This video was excellent!
@mohdrafiqrahman6 жыл бұрын
MaaShaa'aAllaah, you simplified what would normally take a noobie 2 weeks to grasp in mere 13 minutes... JazaakaAllaahu khairal Jazaa'
@mutexembedded22066 жыл бұрын
Rafiq Rahman Thanks Rafiq
@hoopfreaks31385 жыл бұрын
Your the greatest! Best STM tutorials in the entire web!!
@mutexembedded22065 жыл бұрын
Thanks.. enjoy
@santhoshamuduri17014 жыл бұрын
It is really awesome video to explain how mutex works
@jonathanrodriguez82194 жыл бұрын
Thanks You!!! this has really helped me a lot!!! it's always good to share your knowledge to the community.
@XTRAXPARTS6 жыл бұрын
Very informative Thanks Yaqoob. proud of you sir.
@aidars51963 жыл бұрын
Amazing Tutorials. I use nucleo-F302R8 and only change a pinouts of button to PC_13
@royperkins284 жыл бұрын
Great Job Thanks !
@Gkvhkbt5 жыл бұрын
Very good about this Nucleo tutorial! I got the same card :) I like your fast and qick tutorial "First then, then then and now the results". Perfect! Will you uppload more for the Nucleo cards?
@mutexembedded22065 жыл бұрын
Hi Dan, You can still implement the STM32F4 tutorials on the Nucleo as long as it has the same peripheral. Good Luck
@mauropiccoto6 жыл бұрын
You are an awesome teacher!!! Thanks.
@JerryHoward884 жыл бұрын
I have a Nucleo G071RB board and interestingly enough it performed the two Uart_Transmit functions fine with the 1000 ms delay. It never got into trouble, even before I added the mutex take/give. Perhaps that hardware is faster or somehow handles the simultaneous transmissions better.
@mutexembedded22064 жыл бұрын
Hi Jerry, Yes, speed does affect thread switching timing. Mutex ensures access is controlled for larger software with 10s of tasks.
@Ahmad-gn1pd4 жыл бұрын
Really you are great thank you 🌹🌹 Could you make more videos of freertos and cubemx
@sadashivkamath5 жыл бұрын
Good one on FreeRTOS with STM32.! Some observations:-@ time stamp 7:35: Text overlap don't happen if you make time-out of 5ms @ time stamp 9:10: Text overlap happens if you make time-out of 1ms..Any better ways to present need of xSemaphoreTake/xSemaphoreGive with apple to Apple (one-to-one) comparison??
@ESEben104 жыл бұрын
Thank you very much for the video. Iam trying to use the notification but my program gets stuck in xTaskNotify . Could you give a tip about how to solve it?
@mohammadal-dossari2994 жыл бұрын
Hi, Thank you for your tutorials. If I use "cooperative mode" do I need to use Mutex feature?
@yj1192 жыл бұрын
Hello I have a question. When I didn't change any clock setting, it only prints out "Hello from Thread" without number and . But if I change the HCLK to 2MHZ, it prints out as intended. Can you explain why this is so?
@gnanaguruganesan27622 жыл бұрын
It's been a great and brief collection of STM32-Nucleo applications. I'm facing an issue when trying FreeRTOS application, as its creating a lot of errors in Keil-MDK (version 5.37.0) from STM32CubeMX (version 6.4.0). Some are stating STM32CubeMX FreeRTOS port won't work in Keil-MDK, is it so?
@nidhalhaddad91754 жыл бұрын
You are my savor tyyyyyy
@jo5huajohn5 жыл бұрын
Hi, I found your videos very informative and useful, are you going to continue with the nucleo board videos?
@mutexembedded22065 жыл бұрын
Hi, I do keep using the Nucleo in my generic tutorial. Have a tutorial to suggest with nucleo.
@wakizham65612 жыл бұрын
hello.. u have tutorial for using NUCLEO-F302R8 with X-NUCLEO-IHM07M1? I dont know how to program coding for run motor PMSM
@sreeneshtk62086 жыл бұрын
Thank you Sir Awesome video tutorial
@ocelot09916 жыл бұрын
Hi Sir, first of all thank you for this series on STM32 microcontrollers. I was wondering what is your opinion about the full compatibility between FreeRTOS and the HAL library. I am not experienced with this level of microcontroller programming, thus I'm having some difficulties. I would like to design a system able to transmit CAN BUS messages with a certain Cycle time while doing other computational tasks. I understand that to achieve this goal a scheduling technique is required. I tried to build a simple cooperative scheduler starting from some examples on the web, but i think this technique doesn't fit well my requirements. Thus, a preemptive scheduler like the one in Free RTOS could be the solution. The problem is that looking around on the web, there are lots of threads about issues in getting work correctly some HAL functions within the FreeRTOS framework, due to the management of the SysTick timer. What is your experience on that ? Thank you.
@mutexembedded22066 жыл бұрын
ocelot0991 Hi, I have developed many software applications with HAL library and FreeRTOS for clients.. This is never an issue, it depends on the peripheral you're using. And you can always replace Systick delay and counter with Kernel timer. But I usually don't do that; I always tend to use HAL interrupts and DMA instead of Polling for a peripheral when using RTOS.
@ocelot09916 жыл бұрын
Hi, did you develop software applications with bxCan peripheral managed with hal_can driver within FreeRTOS ? Are you planning to do a tutorial on this peripheral like you did within the series ? Thank you
@mutexembedded22066 жыл бұрын
ocelot0991 No not with this peripheral yet. Possibly in near future.
@Electheo4 жыл бұрын
Very helpful, thanks!
@mehmettopuz34275 жыл бұрын
Thank you for tutorial videos. I have a question about FREERTOS. How can i use interrupt and RTOS together.
@mutexembedded22065 жыл бұрын
The same way you would use them normally.. just need to be careful not to do any processing in the interupt handler except sending a Notify from ISR or any operation allowable from ISR. Just google the word FreeRTOS from ISR.. You will get many example on that. Good luck
@kambata216 жыл бұрын
Hello, Great videos can i ask where to find solething like a pdf or something in wich the functions that you are using are described. There is a great refrence manual for the HAL and LL libs but i cannot find such thing for the middlewares.
@joshsavage86596 жыл бұрын
Amazing tutorial! Thank you
@felipekunzler96185 жыл бұрын
why change the SYS Timebase Source to a peripheral timer?
@subithrajapandian33606 жыл бұрын
Hi, Thank you for the video. Is this the same for CMSIS RTOS v2
@VishalVerma-xw9wb5 жыл бұрын
can you post a tutorial on a little in-depth on RTOS and on CAN protocol ??
@xilinx806 жыл бұрын
Thanks for the great tutorial...
@nidhalhaddad91753 жыл бұрын
Mohammed Yakoob prince of all Sayan ( i mean embedded software engineer)
@iotsky14476 жыл бұрын
thanks for your video. i tried to run it and that's ok but could you give recommend if oStask is needly delay(10s) and had better use oSdelay? Please! Explain to me why if i use Hal_Delay() this's oStask, the Uart of one other oStask will fail? (i just use uart 1 and blinking led). thanks!
@mutexembedded22066 жыл бұрын
IoT sky Hi mate, So, you have 2 tasks one running UART and one just an LED? Does using osDelay makes it work?
@hainguyenvan72446 жыл бұрын
Hi..my project had very task, i had 2 task to test it but when i use hal_delay it's not ok. I mean if use Osdelay in the long time is this problem? I'm fisher i hope you would like help me.
@mutexembedded22066 жыл бұрын
Hi, Yes, osDelay is the right one to use. HAL_Delay uses the Systick timer, wheres osDelay uses the RTOS Kernel ticks.
@hainguyenvan72446 жыл бұрын
MYaqoobEmbedded Thanks for your support...have nice day (-:)
@raysoftproductions44144 жыл бұрын
Hi, I am having trouble printing stuff to the terminal froma thread, do you know what may be the issue?, the LED is blinking but the commant to transmit via uart seems like its not being carried out because i am not seeing the Hello from Thread1 string, in fact there is nothing coming to the terminal
@mohammadal-dossari2994 жыл бұрын
see his printf tutorial.
@paulf13033 жыл бұрын
Hi. xSemaphoreTake and xSemaphoreGive functions are not recognized. Does anyone encountered the same problem?
@mutexembedded22063 жыл бұрын
Hi, CMSIS version. I will update all these tutorials soon
@paulf13033 жыл бұрын
@@mutexembedded2206 Thank you for reply.
@huseyinkoc74615 жыл бұрын
I realized that when we increase timeout, there is no problem? so why we use mutex?
@mutexembedded22065 жыл бұрын
Hi, Mutex is meant to restrict access to shared resources.
@unwatchable.4 жыл бұрын
A simple and perfect tutorial like always. very helpful always. one problem , buy a new cam or wide screen laptop and use better recording software. thanks. otherwise technically it is flawless. best wishes. brother . Regards.Ahmed
@sarojflame6 жыл бұрын
thanks got a great help
@spiralsheepdoll5 жыл бұрын
I am trying this with SW4STM32 and CubeMX 5.1.0 on mac. Will only run in debugger and I see no serial out only echo if input from term . LED blinks and thread 1 is getting called. Think something may be pre-empting serial out. or there is something not set. Clear pins clears SWO TMS/TCK re-enabling no diff. Run crash Error: Invalid command argument image.base_address option value ('video.elf verify') is not valid
@spiralsheepdoll5 жыл бұрын
part solved no spaces allowed in .ioc project name. Now runs but still no data on serial out only LED blink. Using Nucleo F401 and SWO
@spiralsheepdoll5 жыл бұрын
Problem solved, in the other tutorial it was noted there are solder bridges for using the serial, these had been modified for a different project.
@naasikhendricks15016 жыл бұрын
Can we use the DMA mode in the Rtos and External Crystal settings?
@mutexembedded22066 жыл бұрын
Yes
@naasikhendricks15016 жыл бұрын
How does this change?
@mutexembedded22066 жыл бұрын
@@naasikhendricks1501 might need to use UART complete callback to notify a Thread for end of Transmit and Receive.
@naasikhendricks15016 жыл бұрын
Shukran. Callback is always a need for DMA. I have uart, i2c, spi, SDIO(large stack and Heap size) running DMA. Will the circular mode be selected or normal because of threads?
@Tony770jr6 жыл бұрын
Are you going to switch to TrueStudio since it's free now and by STMicro?
@mutexembedded22066 жыл бұрын
Tony770jr Possibly
@rajputraghu106 жыл бұрын
Thank u so much.
@alterguy43276 жыл бұрын
I have a Simple STM board,can i use it
@mutexembedded22066 жыл бұрын
Electro Geek Yes, you can.
@Kirranbabu Жыл бұрын
My keil ide closes as soon as I press Load button. Someone help me out
@abdulkadirmuhendis22725 жыл бұрын
So your mutex embedded as a company belong to this tutorial ;)
@akramabbassi94166 жыл бұрын
excelent corse GOOD LUCK ! try UDEMY !
@aslanoymak66626 жыл бұрын
super
@mutexembedded22066 жыл бұрын
Aslan OYMAK Thnx :)
@mohamadali61745 жыл бұрын
Good
@MrRonychakraborty4 жыл бұрын
Good Tutorial , Just talk little slow and Pronounce Little Clearly. :) Thanks
@t966rt6 жыл бұрын
txData[] = "bla bla...."; sizeof(txData);
@mutexembedded22066 жыл бұрын
Valeriy Novikov I suppose you're solving my size counting dilemma.. Thanks anyway
@t966rt6 жыл бұрын
I will be happy if this will help you! :)))
@mutexembedded22066 жыл бұрын
Valeriy Novikov Hi Navikov, A reminder is always helpful.. I usually avoid using 'sizeof'.. because my array size is often larger than the string I will send.. char myArr[100]; sprintf(myArr, "hello world"); Transmit(myArr, strlen(myArr)); Thanks :)
@VenkateshDhara3336 жыл бұрын
is it possible to run some code in main program and trigger thread when ever needed and close the thread