#381

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 599

  • @AndreasSpiess
    @AndreasSpiess  3 роки тому +140

    Correction: ISR is Interrupt Service Routine, not internet service routine

    • @varunkoganti9067
      @varunkoganti9067 3 роки тому +9

      This must be an April fools joke.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +15

      I already posted a pinned correction comment ;-)

    • @markmaker2488
      @markmaker2488 3 роки тому +5

      Another great tutorial and reason to love the esp32 even more, thanks!

    • @sunuk1915
      @sunuk1915 3 роки тому

      ua-cam.com/video/LaYXrdASR8M/v-deo.html

    • @PuretyLead-bg5wv
      @PuretyLead-bg5wv 6 місяців тому

      Correct, great teacher

  • @rfrisbee1
    @rfrisbee1 3 роки тому +72

    One aspect of RTOS development you somewhat glossed over is the amount of memory to assign for each task's stack. FreeRTOS has features to determine stack usage / detect stack overflow, so that the stack size for each task can be set appropriately. For development it's useful to use a processor with plenty of RAM so that task stacks can be set much larger than needed and then reduced so the application can run on a part with less RAM.
    Another important FreeRTOS specific detail is enabling the RTOS features you want in the FreeRTOS config header file.
    Finally, for those using STM32 processors, avoid using both STMCube HAL and FreeRTOS together. They do not play nice!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +13

      Thank you for your additional info. Indeed, I did not know how much stack is enough. Fortunately, the ESP32 has enough RAM for my application. So I did not need to answer the question...

    • @yagizhanugur
      @yagizhanugur 3 роки тому +3

      Hello what problems did you observ with rtos and HAL library. Please Share your experiences.

    • @maxstripeGaming
      @maxstripeGaming 2 роки тому

      @@yagizhanugur cant be used together as they both try to play the OS part and do scheduling and shit like that
      they are flat out incompatible

    • @tahunus3148
      @tahunus3148 2 роки тому +5

      @@AndreasSpiess I found this on the ESP-IDF docs that might produce an answer:
      - At runtime, call the function uxTaskGetStackHighWaterMark() with the handle of any task where you think there is unused stack memory. This function returns the minimum lifetime free stack memory in bytes. The easiest time to call this is from the task itself: call uxTaskGetStackHighWaterMark(NULL) to get the current task’s high water mark after the time that the task has achieved its peak stack usage (i.e. if there is a main loop, execute the main loop a number of times with all possible states and then call uxTaskGetStackHighWaterMark()). Often, it’s possible to subtract almost the entire value returned here from the total stack size of a task, but allow some safety margin to account for unexpected small increases in stack usage at runtime.
      - Call uxTaskGetSystemState() at runtime to get a summary of all tasks in the system. This includes their individual stack “high watermark” values.
      It's in the RAM Usage section: docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/performance/ram-usage.html
      Thanks for your wonderfully informative and well made videos!

  • @TheDefpom
    @TheDefpom 3 роки тому +55

    Shawn did a really good series on freertos, I’m glad you reference it.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +7

      Agreed. Probably a little "oversophisticated" versus the end...

    • @tonyfremont
      @tonyfremont 3 роки тому +2

      He has put out a bunch of good STM32 CubeMX videos too.

    • @iSuperMC
      @iSuperMC 3 роки тому +3

      Who’s Shawn ? Could you send a link please

    • @marcdraco2189
      @marcdraco2189 2 роки тому +2

      @@iSuperMC Shawn Hymell (Digi-Key). He does a lot of instructional videos but he's a bit of an egg-head for most of us.

  • @shiftyjesusfish
    @shiftyjesusfish 3 роки тому +5

    I can't even begin to tell you how much I value the work you (and other educational youtubers who are truly educated and articulate) do for the comunity and myself..... Tryin to jump in with arduino and programming to make my dream projects come true would have overwhelmed me and I would have definitely given up without the resources you provide. Sometimes when your teaching yourself things the hardest part is not knowing what you don't know, and not knowing how to ask the right questions, so when you go out of your way to provide context and redundant examples along the way without delight too deep into those other topics it really elevates the content from infotainment to genuinely valuable educational material.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Thank you for the nice words! I became a UA-camr because I learned a lot when I started with the Arduino myself...

  • @PemboPemberton
    @PemboPemberton 3 роки тому +12

    A great intro to RTOS.
    I find it good practice to use it all of the time with the ESP32 and just have the OTA in the "loop" function. It's a good way to learn how to program many micro controllers in the big industry and not just hobbyist style coding.
    As I've also been use RTOS on many other microcontrollers like ARM and PIC for many years in industry. This makes porting code from other microcontrollers to the ESP range very easy.
    ...Keep up the great work.
    - Enjoying watching from the UK.
    😉👌

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +2

      Thank you for your feedback. For sure it makes a lot simpler...

  • @TheNormalUniverse
    @TheNormalUniverse 3 роки тому +9

    Thanks for referencing my vid Andreas! I’m self taught so I didn’t know there are more elegant ways to do multitasking. I haven’t watched all of this video yet but I will definitely come back to it. I’m getting back into coding to make a synthesizer so this is just what I need.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +3

      You are welcome. You will see, RTOS is a different world because most things are "under the hood" and your code is easy to read.

  • @ShawnHymel
    @ShawnHymel 3 роки тому +8

    Great explanation, and thanks for the shout out!

  • @useyourbrain2022
    @useyourbrain2022 3 роки тому +16

    incredibly explained, as always, thanks!, I wish I had a teacher like you when I was studying at the university

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Happy to help! And thank you for your nice words.

  • @francescoreale
    @francescoreale 3 роки тому +20

    Thank you very much! I can't even imagine all the work behind this video! Great job.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +10

      You are welcome!
      You are right, this one was not easy. Also because I had to concentrate very much on the important things. The script took many iterations...

  • @carltone
    @carltone 3 роки тому +4

    Andreas, excellent instructional video. Your explanation of time slicing, task creation by breaking down the requirements of the program, communication queues was well explained. The analysis aspect of programming is a crucial skill that is required when incorporating the additional control of a multitasking environment into a program solution. Your big picture overview to small detail approach, embedded humour (pun) ensure your technical videos are a great learning tool and a joy to watch. Well done!

  • @vks002
    @vks002 2 роки тому +3

    Excellent tutorial Andreas! I wanted to start off with RTOS and I remembered that you had a video on this. So I went straight into it as I know you would do the best job is getting me started. Thank you so much. Now I can go through the rest of documentation and other tutorials :)

    • @AndreasSpiess
      @AndreasSpiess  2 роки тому

      Glad to read that. A good start is all I wanted to provide ;-)

  • @bm830810
    @bm830810 3 роки тому +11

    20:25 I think the mutex is used when you can have concurrent access and not just multiple writes,
    assume one task is reading a struct, and in the middle of reading, the other task modifies the struct.

    • @arnodej9590
      @arnodej9590 3 роки тому +2

      If the processor can read/write 32 bit variables atomically you don't need to protect them (if you have only one writer). If your processor cannot access the data in one instruction, you indeed need protect read and write.

    • @haves_
      @haves_ 3 роки тому

      yes, when the display task needs to print the variable onto the screen, the writing task should not change it until the display task finished printing.

    • @vatterger
      @vatterger 3 роки тому

      Exactly, you may have single-writer-multi-reader-configs when the shared resource can be written atomically, like 32-bit words on a 32-bit processor, but most other things require some protection even when only one thread is writing. Atomic operations (Compare and Swap etc) are also a useful thing to look into. They can help avoid mutexes and therefore overhead when building queues or counters.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +3

      Thank you for the discussion. I would like to add another aspect: Because the ESP32 is so fast, none of my tasks needed more than a fraction of 1ms and I was always able to actively pass the control back to the scheduler. Is a mutex still needed?

    • @bm830810
      @bm830810 3 роки тому +1

      ​@@AndreasSpiess and thanks again to you dear Andreas for your great contents.
      Hadnt thought about it this way, your assuming since there is no preemption in your case, the mutex is not needed, which I think is right.
      although I would always add them as good practice since you don't know what future holds...

  • @quarteratom
    @quarteratom Рік тому

    Never knew the ESP32 had a full FreeRTOS running in the background always. It is well hidden, not showing when we write simple serial Arduino programs. And not only it manages the WiFi on one core, but it gives us a really easy way to write parallel code with tasks and queues and locks. Brilliant.

  • @peter.stimpel
    @peter.stimpel 3 роки тому +7

    great stuff Andreas, thanks a lot. But at 20:41 there was a blocked resource in the spellchecker, it seems ;) Thanks a lot for diving into such not obvious topics!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +8

      :-)) You are right. Unfortunately here the problem was between my ears...

  • @large65
    @large65 3 роки тому +3

    At first! Thank you for your great explanations on all the different topics. They are fabulous! Just a minor remark: I think that RTOS is not about "fast" responses to an event, but about guaranteed (!) response (in a specified time). How fast the RTOS has to react depends on the physical properties of the system under control.

  • @williamwatson1532
    @williamwatson1532 3 роки тому +2

    Another great video Andreas.! I liked your history lesson at the beginning. In the late '80s I worked with Forth which was perfectly capable of multitasking with 8bit microprocessors like the 1802, Z80, 6809 & 8051. It used a cooperative round robin model which meant the program designer could allocate as much cpu time as was needed for each part of a task. With no interrupt and time slicing the task switching overhead was tiny. One benefit was the ability to test and alter code from the keyboard with existing tasks running in the background.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      You are right. We currently re-discover things we had in the 80s like inline debugging. But of course, today it is much easier because of the resources an ESP32 offers. It has nearly no limitations for an average project. Which makes things much easier. No optimization needed, just straight programming...

  • @kozlovskyi
    @kozlovskyi 3 роки тому +5

    Cool! Appreciate that you trying to push asynchronous programing into embedded DIY areas.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      Thank you! Maybe after this video a "pull" will result ;-)

    • @fhisg
      @fhisg 3 роки тому

      To be fair, the NodeMCU (Lua) firmware has already been offering an async model on the ESP8266/ESP32 since 2015. Not based on FreeRTOS but on the Espressif NonOS SDK.

  • @vincentlin7240
    @vincentlin7240 6 місяців тому +1

    One of the best RTOS video to start with, than you so much for making these! Also, love the jokes and the metaphors!

    • @AndreasSpiess
      @AndreasSpiess  6 місяців тому

      You are welcome! Thank you for your kind words.

  • @xboxgamer9216
    @xboxgamer9216 3 роки тому +8

    Was waiting for something like this .
    Thank you

  • @johnwest7993
    @johnwest7993 2 роки тому

    I almost never critique UA-cam videos simply because they are what they are, a freely given effort to inform people of something. But your videos are exceptionally good due to your intellect, consummate skills, and your meticulous presentation. So because of that, and at the risk of being perceived as overly critical I will point out that you said 'seconds' instead of 'milliseconds' at 23:07 into the video. I do so because I think that to you, it matters. You actually want to be clear, concise and correct about everything you tell us, and you work at it throughout your videos. That is the reason why I watch ALL of your videos, even on subjects in which I have little interest, because they all exhibit what few other UA-cam videos do - genuine quality. I appreciate the quality, and I can guess how much mental and physical effort is involved in creating and maintaining it, video after video. Thank you Andreas.

    • @AndreasSpiess
      @AndreasSpiess  2 роки тому

      Thank you for the info about my slip of the tongue . And thank you for your nice words. Glad you like the content of the channel.

  • @BlueyMcPhluey
    @BlueyMcPhluey 3 роки тому

    lately every time I have an interest in a topic and search youtube you've made a video on it already. Thanks once again :)

  • @Chris-ib8lw
    @Chris-ib8lw 3 роки тому +11

    "If you are good, you get more work!" Not going to lie, that line gave me flash backs to my Air Force days. haha As always, love the videos and I always learn a lot from you!

  • @klassichd10
    @klassichd10 3 роки тому +1

    Thanks a lot for this compact introduction in such an important topic as FreeRTos on ESP32!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +2

      You are welcome! Like hardware debugging, this is game changing for me...

  • @Alex000113
    @Alex000113 3 роки тому

    Theres a lot of really informative material in this video THANKS ! I didnt realize it was so straightforward to run freeRTOS on an ESP32. My first freeRTOS app was running within 15mins of completing this video. Really encouraged now to delve deeper.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      I think a deep dive will be rewarding. Enjoy!

  • @CraigHollabaugh
    @CraigHollabaugh 3 роки тому

    Excellent comprehensive example with code examination. I've used FreeRTOS on 10 or so projects. What you've covered here is probably 90% of FreeRTOS projects. If users can get through your example understanding these concepts, their spaghetti code will become readable, understandable and maintainable. One last thing, do NOT use arduino delay. It affects the scheduler and your code will stop working. Search your code and change delay to vTaskDelay. Thanks from Colorado.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Thanks for sharing your experience! One question: What does the Arduino delay() harm? I thought, it just takes up all the time in the task's slot (which is, of course, not ideal).

    • @CraigHollabaugh
      @CraigHollabaugh 3 роки тому

      ​@@AndreasSpiess I looked at the ESP32 FreeRTOS delay code. It implements Arduino delay with vTaskDelay, so on the ESP32 using delay should work fine. I believe my comment above deals the smaller Atmel parts, 328P, with limited timers. Seems like I remember using Arduino delay changes TIMER2 (may be incorrect here), that's the same timer used by FreeRTOS's scheduler. It may be different now, but back then Arduino's delay affected the scheduler. If this is incorrect or has changed, please comment below. I've switched to using STM32's for my designs which runs FreeRTOS just fine. Thanks again for the video, I'm always interested in what your doing (keeps me from having to figure things out), you do a wonderful and complete exploration.

    • @CraigHollabaugh
      @CraigHollabaugh 3 роки тому

      On Linux Arduino 1.8.13, ESP32 delay implementation is here.
      ~/.arduino15/packages/esp32/hardware/esp32/1.0.6/cores/esp32/esp32-hal-misc.c
      void delay(uint32_t ms)
      {
      vTaskDelay(ms / portTICK_PERIOD_MS);
      }

  • @DannyBackx
    @DannyBackx 3 роки тому

    Nice and sufficiently accurate description of a difficult subject. Note that shared resources also include your display.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are right. I thought, the display was on the list of shared resources...

  • @sevenacregreen
    @sevenacregreen 3 роки тому +6

    Thank you for the video. Just one observation on using shared variables. The change in one task and read in many works fine if the variable is simple and is written without possibility of the rtos scheduler interrupting it. If you use a more complex data type or structure you need to be careful and be sure you know when its contents is consistent.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are right. I forgot about that fact. Thank you.

    • @zyeborm
      @zyeborm Рік тому

      Cane here to say this. Basically boils down to if it can be read in a single instruction. A single int doing a single read you can probably get away with. Any sort of array or more complex maths and you're boned. But very very rarely so you probably won't find the bug until you have thousands of units out there.
      Short version always protect reads and writes to shared variables. If you're planning on doing many operations consider copying the variable into a local variable and working on it there.
      If you don't, then consider what might happen if that variable changed part way through your function.

  • @MrKelaher
    @MrKelaher 3 роки тому +4

    Great presentation ! I love RTOS, by first was VxWorks, they really make embedded coding easier in most cases. Your single writer, multiple readers comment about mutex not being needed is only true for simple variables - if you need to update many parts of a struct, for example the x and y parts of coordinate, then either both reads and writes always need a mutex (if writes are common relative to reads) or a spin lock on write is needed (faster if writes are much less common than reads), or some odd stuff might be seen ! General rule is mutex unless performance is an issue then selectively remove them with massive comments in code - better safe than sorry . Defensive coding is always the RTOS coders friend !

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      Thank you for the addition about mutexes. I did not think about those cases because all my tasks only use a fraction of a slot and I always actively pass control back to the scheduler. But I agree: Better safe than sorry...

  • @zyghom
    @zyghom 3 роки тому +11

    not only I was in the army but also I learned there Morse code as it was still a time to send all the communication over it - what a time it was!!! ;-)

  • @robertobrenes5283
    @robertobrenes5283 3 роки тому +1

    nice video! today i saw a little Tensorflow on an ESP32cam and then this video! So much to learn!

  • @AlexGoris
    @AlexGoris 3 роки тому +2

    Thanks for another great video, Andreas! I have a project which is sitting around for over a year now, which is built on ESP32 and needs to perform several tasks separate from eachother. I got some great ideas on how to accomplish this in a better when than it is managed now.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You will see that, if you get the design of the different modules right, things get much simpler than with standard programming.

    • @alastorgdl
      @alastorgdl 2 роки тому

      @@AndreasSpiess Is VERY surprising the level of resistance people have against using a RTOS, specially in camps like CubeIDE. It's like they prefer DOS than Windows

  • @DougsTech
    @DougsTech 3 роки тому

    That was a great introduction. It would be great to see other FreeRTOS videos. Thanks

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      We will see. Maybe as a part of a project.

  • @wm6h
    @wm6h 3 роки тому +1

    Thank you Andreas. I learn something from every video of yours. Today, I learned QLF 😀.
    Also, that debugging hook up @ 12:35 caught my interest and maybe suggests a future video. See you next Sunday.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      When I listen to the bands I hear a lot of QLF...
      I already made a video about hardware debugging with PlatformIO.

  • @niraami
    @niraami 3 роки тому +2

    As a fulltime ESP32 programmer (for 3 years now), I've found that if you want to save yourself a lot of headaches and constantly hitting limitations then either use Arduino as a component under ESP-IDF, or just don't use it at all and use ESP-IDF functions directly.
    Also utilizing the ESP-IDF & FreeRTOS documentation is quite important, as you learn a lot of crucial things like that a delay of 65ms (15:40 :)) is not actually a thing, it will probably block for 70ms :) you can find out how on your own
    edit: my last point may be inaccurate, as after a bit of research it seems that arduino might have changed the default value (100) to 1000hz, making 1ms tick resolution possible.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +2

      You can be sure I checked the timing of my Morse signals ;-) You also saw it on the logic analyzer.
      Anyway, using manufacturer's IDE is for sure a better decision if you only work with one architecture. I use at least three architectures. So , the Arduino IDE is ok for me. And I also do not create sellable products.

    • @niraami
      @niraami 3 роки тому

      @@AndreasSpiess Good points indeed, I guess my situation is more of an exception. Also yeah, I edited the comment when I saw the 1ms resolution on the scope ;)

  • @dd0356
    @dd0356 3 роки тому +6

    Interesting topic. i will have to watch it again when i am more fit..
    Just came out of covid fever, feeling weak..

    • @adilcoelho
      @adilcoelho 3 роки тому

      been there a month ago.. take care and get an oxymeter to check on your saturation. If it goes lower than 90% please go to a doctor.. Even if you dont feel bad breathing, trust me

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +2

      Glad to read that both of you survived! So far I had no problems and now, I go my first shot and some hope that I can avoid your experiences.

    • @haroldfinz4863
      @haroldfinz4863 3 роки тому +1

      Good to know you're coming out of it, and to have enough strength to post about it.

    • @adilcoelho
      @adilcoelho 3 роки тому

      @@AndreasSpiess the shot will surely help.. Glad youre getting it! Your videos are awesome

    • @dd0356
      @dd0356 3 роки тому +1

      @@adilcoelho thanks for your tips. luckily my oxygen level was within safe limits. but i had fever for a very long time and consequently weakness..Here in India, this thing has taken worst direction, almost every fourth person is affected and hospitals are unable to cope up due to sudden increase especially in the last 2 weeks. Last year situation was better.

  • @StarkRG
    @StarkRG 3 роки тому +1

    The first time I heard about the concept of an RTOS was from someone I used to hang out with online who was part of the development team for the RTOS on some fighter jet (the F22, I think), then seeing RTOS as an option when compiling the Linux kernel, and, finally, FreeRTOS on the ESP32.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      The concept is old (I used one in the 80s). But now with the abundance resources it is very easy to use...

  • @sarahjanegray
    @sarahjanegray 3 роки тому

    Excellent video, as always, Andreas. I found myself working through and learning how RTOS worked when working through and debugging the code for the ESP32 Internet radio project that you discussed previously. However this cleared up a few things I was not able to get my head around from the Free RTOS documentation. Thanks again.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +2

      You are welcome! I forgot that the internet radio also used RTOS. I am getting old...

  • @kwinzman
    @kwinzman 3 роки тому

    Thank you for this amazing video!
    I like to believe that me commenting about FreeRTOS in your "The All-New Arduino IDE 2.0: Introduction and Test
    " video had a small role it its creation. 😊

  • @guntherjordan7177
    @guntherjordan7177 3 роки тому

    Ein Video an meinem Geburtstag über eines meiner aktuellen Lieblings-Bauelemente. Das ist ein extrem interessantes Thema, -werde mich da demnächst mehr mit beschäftigen. Danke für's zeigen!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Bitte, gern geschehen, Und herzliche Glückwünsche!

  • @Richardincancale
    @Richardincancale 3 роки тому

    I used to do real-time programming 40 years ago using RSX-11 on PDP-11s. I can confirm that debugging can be challenging! One case I remember well - a multithreaded spooler sending output across a network to line printers all over the place. Once in a while a line for one would show up in the middle of output for another! Had to sit and watch for hours until spotting it happening - and send a message across the network to freeze the program so I could arrive in time to get a memory dump! Got it in the end!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      Thank you for telling us the nice story! It shows exactly what I wanted to say.

  • @somedude5414
    @somedude5414 3 роки тому +7

    "The '60's of the last century" - That hurt.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Why do you think?

    • @joeysustello
      @joeysustello 3 роки тому

      The tuesday of last week was the last Tuesday ever in this mindset...until tomorrow

    • @StarkRG
      @StarkRG 3 роки тому +1

      How about the fact that the 60s seems like it should be only 40 years ago rather than 60 and that I, born in 1982, am closer to middle age (45) than I am to my 20s (7 vs 8 years)?

    • @garyfry7292
      @garyfry7292 3 роки тому

      Life goes on, Dude! Would the 50's of the last century hurt you more?!

  • @peut
    @peut 3 роки тому

    Thanks Andreas. Great summary of the extra power and features FreeRTOS provides!
    Further: In principle, mutexes should be used for all shared resources, no exceptions. However, if the resource is simple, e.g. a boolean variable, chances of corruption due to concurrent access are negligable or maybe even non-existent, depending on the code and the compiler. The same applies for a mutex with only one writer and one or more readers. However, taking the risk of corruption
    should be a conscious one and taken with a lot of care.
    Small tip: Taking and giving mutexes is "expensive" in terms of performance. In a time critical loop it may be help to use xSemaphoreGetMutexHolder( nameOfSemaphore ) to check if a Mutex has been taken. Apparently, this generates less overhead than the xSemaphoreTake function. An example would be a mutex set by a task to stop a tight loop in another task.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Thank you for the additional info! You are right with the Mutex because we do not know when the millisecond is over (maybe in the middle of an update statement).
      However, the ESP32 is mindboggling fast. I checked how long my tasks run. Even the longest one (searching for the next letter) only needed a fraction of the 1ms slot. So I always know when I pass the control to the scheduler.
      I think, with such a fast processor we can avoid many situations a slower CPU could generate. I also proposed to only use one priority based on this fact. Also here we reduce the chance for problematic situations without any harm.

  • @LemarinelNet
    @LemarinelNet 3 роки тому +1

    I would add that you probably NEED RTOS as soon you start writing state machines to allow multiple parts of your sketch running parallel. That's what I was doing before knowing RTOS !

    • @TheChrisey
      @TheChrisey 2 роки тому

      Uhm you definitely don't need it for a state machine.

  • @becauseican2607
    @becauseican2607 3 роки тому +2

    Grüezi Andreas 🇨🇭
    I have to give this a try. Thanks for sharing ✌️

  • @Giblet535
    @Giblet535 3 роки тому

    Great presentation, as usual Mr. S! Interesting trivia: Back in the 80's, there were multiuser OSes like MPM (a multi-user version of CPM) that didn't time slice. It's true! Each user had a dedicated CPU/RAM card, and the OS managed authentication, physical board allocation, and the shared permanent storage (SMD disks, mag tapes, and even 12-inch laserdiscs). Their 15MB disks were tiny miracles of miniaturization: usually 16 inches wide, 20 inches long, and 10 inches high.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are right. We even had RTOS systems for one CPU back then. I never heard of such a concept where you had different CPUs managed by one operating system. For me this came later with the VAX/VMS multi-processor systems.

    • @d.hughredelmeier1960
      @d.hughredelmeier1960 3 роки тому

      MP/m really did use time slicing on a single CPU. At least in most configurations. MP/m 8-16 seems to have supported multiple processors (typically one 8-bit and one 16-bit). I'd guess it also supported premption and time slicing.
      Multi-user without premption and time slicing is not really workable in general, but if you really dedicated one core per user it could work.
      What was the name of the computer system that you used.

    • @d.hughredelmeier1960
      @d.hughredelmeier1960 3 роки тому

      @@AndreasSpiess commercial mainframes multiprocessors were available by the early 1960s. For example, the Burroughs D825.
      As far as I remember, the first multiprocessor VAXes were home-made at Purdue University and ran UNIX.

  • @padimixu
    @padimixu 2 роки тому

    Another great presentation!... RTOS in a nutshell 🙂
    --> BTW Anderas when you use Visual Studio there is an easy way to move the heavy .vs forder out of your Solution root:
    Tools > Options > Text Editor > C/C++ > Advanced
    In the section "Browsing database backup..." change the option "Use backup folder" to "True" and indicate a temporary forlder on your PC as "Backup folder"
    (the section names may be a bit different, my VS is in French...)

  • @n-elia
    @n-elia 3 роки тому +1

    Thank you for taking time to recurd such an instructive video. Keep up your wonderful work!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      My pleasure! And thank you for your nice words!

  • @qcsupport2594
    @qcsupport2594 3 роки тому

    I didn't realize it is such a short jump from ESP32+Arduino IDE to using an RTOS! It was right there all along. Anything that lets us keep our design complexity lower is potentially a huge win.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Indeed it is a short jump for a start. Maybe it needs some practice...

  • @TonoNamnum
    @TonoNamnum 3 роки тому

    I believe this video should be fundamental for every maker! Thanks Andreas!

  • @BillXT11
    @BillXT11 3 роки тому

    Thanks for starting with RTOS, always wanted to learn it!

  • @davidstonier-gibson5852
    @davidstonier-gibson5852 3 роки тому

    Danke schön, noch einmal.
    I managed to get through a whole career in embedded controls without ever using a true RTOS. I started with bare-metal assembler in the early 70s, and retired the same way. I did during that time make many very simple superloop systems, and never wrote blocking code. As I have just transitioned from Arduino to ESP32, and in retirement started learning C++, I found this very interesting. One day I may just have to give it a spin.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      As you write, you can do without it. But it is much easier to do it with one. We already used RTOS in the 80s for räsonable complex products. I am curious what your verdict would be after trying it...

    • @noweare1
      @noweare1 3 роки тому

      I feel the same i.e. Is it worth the time to learn it and how much time to be fully understood? I think if you are into robotics where there are a lot of things going on it could be helpful. Most of my projects are pretty simple though.

  • @Uncle-Duncan-Shack
    @Uncle-Duncan-Shack 3 роки тому

    Very nice Andreas, greetings to you and the laboratory manager fur (Feline) from South Africa.
    We are also concerned with speed, and is why we have parallax flip boards in our possession, 8 cogs to do multi tasking.
    And then I noticed the Teensy 4 boards, faaaaast.
    And the the 4.1 can store data to a sd card for recording.
    This is more industrial type applications for us, so we are not bothered about the 100mA of current to run these mcu's.
    So much nice stuff, a solution looking for a problem.
    I enjoyed the video, something to look forward to on a Sunday.
    See you next week,
    Kind regards,
    Duncan

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      Greetings back to SA. Yes, those boards are very fast. For my applications often much too fast. For this one, I checked and found that none of the tasks needed more than a few percent of one time slot.
      BTW: Next week there is no video from me. Only 3 per 4 weeks...

  • @JerryEricsson
    @JerryEricsson 2 роки тому

    Greetings from snow covered South Dakota. We have just finished a 3 day blizzard here, lots of snow banks and blocked roads. No mail for 3 days as movement was impossiable even for our mail men. The snow plow just passed my house now at 1400! At last we can get out and shovel snow! Well the folks who can still shovel will get out. I am pretty much stationary any more. I am back among the living once more after having sunken down to the bottom of a well of depression when my lovely wife of 51 years died of cancer. I never knew one could fall so deeply so quickly! Thankfully I have a strong family and good doctors who dug me out of the well and have me again playing with arduinos and ESP units. I have been building my WIFI radios again, and have some nice looking products around my home built in old watch boxes as well as rebuilt old IPOD amplifiers where I built the wifi units and pulled power from their amp power supplies giving me some wonderfully deep sounding systems. I have them programed with music and programs from the 40's through the 80's limiting my station load to around 50 discrete channels. I wanted to thank you for the prayers and caring when I was caring for my wife, it helped.

    • @AndreasSpiess
      @AndreasSpiess  2 роки тому

      I am glad to see you here again! Bad luck with the snow in your area. Here we had a very mild winter and now spring is here with nice temperatures. So I am pretty sure that the snow also will go away soon where you live. And I am sure it will help you if you see the flowers and can go outside again. And of course, good music is a very important ingredient!

  • @lohikarhu734
    @lohikarhu734 3 роки тому +1

    Hallo Andreas! Ja, it's strange to me that, when you start talking OS, people right away think of Linux, Windows, OS X, et al, when we were using RTOS, even in my early days ;-) on 8-bit micro-controllers, and MC68000-based SBC's, to help with reliability and productivity, by providing a "framework" to bolt-on the 'tasks', almost everything running on prioritized interrupt handlers. Well, in truth, the whole idea of an RTOS is that it is based on interrupts! The RTOS reduces a lot of the burden around ensuring "timely" response of the software to "hard real-time" operations, and can really aid in troubleshooting systems. Now, I'll watch the rest of another excellent (I can tell, schon!) video! (well, after taking my insistent cat out for a walk :-) )

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are right. They existed for a long time. But now with the ESP32s they are much easier to use because you will hardly encounter memory or speed limitations. This project only was possible with only a handful RTOS commands because the longest task ran in only a fraction of 1ms and I was able to actively pass the control back to the scheduler. I also was able to increase stack size without thinking to an amount for sure big enough...
      This was harder in the past.

    • @lohikarhu734
      @lohikarhu734 3 роки тому

      @@AndreasSpiess you are so, so right, Andreas! In 'the olden days', i designed a hospital bed controller in 512 bytes of code / 256 bytes of RAM, including "faking" a 13-bit ADC, using PWM, RC, and an opamp, with the 8-bit onboard ADC (MC68HC11); but, in many ways, that was more interesting, maybe more 'fun' doing "the impossible" ; -)
      With today's €4 (or less) tiny 'SBC's, it's amazing what can be done, almost trivially!
      "We stand on the shoulders of giants"....
      Thanks Andreas, I'm positive that *you* will have an interesting (challenging) week, coming up with another video for 'us'! Alles gute!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Today we have just to chose higher goals than an automatic bed and it is still challenging, I think. Recently I had a conversation with a young man who builds a earthquake warning system for poorer countries using Maker technology. It seems to work and only cost a fraction of the government established systems in Japan or the US... As you wrote: We always find new projects if we keep our eyes open.

    • @lohikarhu734
      @lohikarhu734 3 роки тому

      @@AndreasSpiess it was actually a special bed for changing sleeping and rest positions for quadraplegic patients, to avoid the very nasty ulcers that form when there are long term pressure points; it had adjustable movement rates, and adjustable timing between moves, and needed a high-resolution drive control for accurate positioning and quiet operation... just wanted to clarify that the project was not some crappy DIY, or retail toy, but a beneficial medical device, with a few challenges; -)
      Are there any links the earthquake sensor/prediction system? One of my former colleagues worked on ways to use existing mobile telephones to detect lightning from storms, to predict the storm path, and, simultaneously, provide warnings to handset users, of an incoming storm, or possible tornado... yep, lots of interesting things yet to be done!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      I assumed it was a useful bed (my wife works in the hospital). I just meant that today we can build global networks as a hobby project, which was not possible when I was young.
      Concerning the earthquake project: I plan a video on it where I show the different sensors etc.

  • @RP6conrad
    @RP6conrad 3 роки тому

    I use RTOS on the ESP32 for a gps-logger with a e-paper screen (GPS-speedsurfing). As the display routine was blocking (>0.5s), I was stucked... Then I discovered RTOS, and this was a fantastic tool to fix this problem ! Now the esp32 can receive, parse and store the gps data @ 10 Hz on a sd-card ! The display gives me the actual speed and distance. I still work with a lot of global variables, works fine for me !

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      A good application for an RTOS, indeed!

  • @toastrecon
    @toastrecon 3 роки тому +12

    I'm here delirious after my second covid shot, wishing I were more coherent to understand all of this. Thanks, Andreas! A topic I've always wondered about.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +6

      The advantage of UA-cam is that you can re-view videos later if you want...

    • @toastrecon
      @toastrecon 3 роки тому +1

      @@AndreasSpiess what will they think of next?! 😂

    • @f__kyoudegenerates
      @f__kyoudegenerates 3 роки тому +1

      no one cares.

  • @tonysfun
    @tonysfun 3 роки тому +3

    Amazing! Thank you so much Andreas! And you have great humor also!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      I try my best to keep the humor in those times ;-)

  • @MaqsoodAlamShafiq
    @MaqsoodAlamShafiq 2 роки тому

    Excellent video. The secret of arduino setup() & loop() being RTOS task is very helpful. Learning such tips earlier help a lot.
    @12:27 the schema and explanation gave a great deal of insight on project design and state machine concept. 👍
    There is another saying "He won't get a break if he learns his lesson". I think it is a universal fact that good people are kept busy 🤣

  • @anthonvanderneut
    @anthonvanderneut 3 роки тому +1

    Another video with a swiss accent, it must be Sunday! Thanks for providing a regular time reference in COVID induced "days without much distinction" otherwise.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are welcome! Indeed it sometimes in not easy to distinguish weekends and weekdays with all this Home Office...

  • @nickp3837
    @nickp3837 3 роки тому

    Great video, much to learn as always. After you last video on ESP32 using two cores I have built several multi tasking systems but I wasn't aware of this level of detail. After this I switched from std:: mutex to xSemaphoreCreateMutex() which saves some memory.
    FYI If you are porting existing code there is no need to go back and change the calls to delay(); In the framework delay(ms) simply calls vTaskDelay(ms / portTICK_PERIOD_MS);

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Thank you for the tip about delay(). I was not sure.

  • @ChristopherHeald
    @ChristopherHeald 3 роки тому

    This is so much more elegant than the mess of millis(). Thank you for the clear explanations, as always.

  • @antoniojesusarquillosalvar4342
    @antoniojesusarquillosalvar4342 3 роки тому +1

    Really impressive! The best channel on this subject in Internet.

    • @insanemainstream3633
      @insanemainstream3633 3 роки тому

      I wish my brain could multitask his knowledge without all the deadlocks! Great content as usual Andreas liked vid.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Wow, thanks!

  • @HannesMrg
    @HannesMrg 3 роки тому +1

    Thanks for the video. You managed to scrape by a whole semester of a programming course in just 23 minutes.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are welcome! I had to leave a lot of details out, though...

    • @HannesMrg
      @HannesMrg 3 роки тому +1

      @@AndreasSpiess I think you found a nice balance between important information and not making it too long.
      Every single one of the included topics has enough aspects to talk about for a whole day, but not everything is important to know if you just want to use it on an esp.
      (At least that's when I (re)watch your videos. When I start a project and want to freshen up my knowledge.)

    • @AlexKite68
      @AlexKite68 3 роки тому +1

      Indeed! A whole semester in just 23 minutes - completely explained in a perfect way!
      Thank you Andreas!
      Well done as usual!

  • @fabianh.5848
    @fabianh.5848 2 роки тому

    "Guru Meditation Error" is a gag from the old Commodore Amiga. I like it.

    • @AndreasSpiess
      @AndreasSpiess  2 роки тому

      I did not know that. Thanks!

    • @fabianh.5848
      @fabianh.5848 2 роки тому

      @@AndreasSpiess whenever the diskette didn't work or a program crashed. That was a gimmick by the programmers.

  • @caseykoons
    @caseykoons 3 роки тому

    Very nicely made video of the project. Good scope. I like the design of the deck too.

  • @iliasalaur
    @iliasalaur 3 роки тому

    I thought that i will never use FreeRTOS because of its pain in a.. , but this video changed my decision. Thanks a lot

  • @pedrobravo6972
    @pedrobravo6972 2 роки тому

    Hello Andreas, here is the guy from Chile from ESP32 sitting in the first row of your class. I love the tests done with leds and semaphores. However, those of us who develop IoT systems need to have a template for REAL applications that separates slow tasks from fast ones through two threads.
    Example of slow tasks:
    - Establish a bluetooth connection
    - Connect and reconnect to WiFi and MQTT
    - Validate if there is MQTT connection
    - In case of alert, send an e-mail
    - Reception of orders or parameters from MQTT
    Example of quick tasks:
    - Sensor reading
    - Calculations with information from the sensors
    - Preparation of information that needs to be sent
    Do you have an example in which in Core 0, you handle the WiFi connection and the rest is handled in Core 1 (or vice versa)? The sketch is booted for me when I try to separate the WiFi connection and put it in the slow core. I have tried putting it in core 0 and core 1.
    Can you give us a solution that connects WiFi on a separate thread? It would be magnificent!!

    • @AndreasSpiess
      @AndreasSpiess  2 роки тому

      I do not think that slow or fast is a good classification. I see all tasks as what they are: A task has prerequisites to run and leads to results. This is the first thing to design.
      Second is to find out whether some of the tasks are so time-critical that they have to be able to interrupt others. These get a higher priority.
      Third is "load balancing" where you distribute and assign tasks to cores. Often this is not needed and can be left to the RTOS.
      With the ESP32 we have to consider that some tasks already exist (like Wi-Fi) and run on a core with a high priority. They can influence your decisions.
      I would only go to step 2 and even 3 if you foresee or encounter problems.
      So your "slow" tasks all are low priority tasks and "quick" tasks have a higher priority. Keep in mind that no task runs for long because it is always interrupted by RTOS.

  • @fgaviator
    @fgaviator 3 роки тому

    Great video! Never knew the ESP32 already hat an RTOS. This will be really useful. Minor correction: do the spinlock functions at 21:14 really expect a parameter - the documentation in your next shot suggests they are "void void" functions.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      In the ESP32 implementation they expect (or allow?) a parameter. But I am no specialist.

  • @kroojohn
    @kroojohn 3 роки тому +1

    Once again a very detailed and useful video, including a wealth of information and tips ... Thank you :)

  • @paulnielsen8528
    @paulnielsen8528 3 роки тому

    For a great fork, look at Qnx (now a Blackberry Company). 18 years ago they posed the single floppy challenge to all OS manufacturers. They packed a complete OS with IP stack and graphical UI with mouse support on a single 1.44 meg floppy. Brilliant and Canadian.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      I still remember my first Blackberry when it was a status symbol ;-) According to Wikipedia, QNX is proprietary and does not run on our MCUs.

    • @paulnielsen8528
      @paulnielsen8528 3 роки тому

      @@AndreasSpiess You are correct, it is proprietary. I just thought you'd enjoy the perspective of a great RTOS. It does run my current BB Z10 but they gave up on it in favour of white labelling other products. QNX is achieving great industrial success even in the automotive world. All the best Mr. Funny Hat (meant respectfully). Paul N.

  • @avejst
    @avejst 3 роки тому +1

    Impressive video as always 👍
    Thanks for sharing your experience with all of us 👍😀

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Thank you! This one was not too simple to understand, I think...

  • @christiancarassai9540
    @christiancarassai9540 3 роки тому

    Right? Wrong!!! hahahaha. Andreas, your videos are excellent, and a great source of information. Congratulations, one of the best channels on microcontrollers and iot!!!

  • @la6mp
    @la6mp 3 роки тому +1

    A few weeks ago I made the morsetrainer on a homemade «Arduino», after this I guess I will have to do it all over again :-) Good luck with 5000 km target, last year I did 13000 kms, but overdid it. Hope I will make 5000 this year... AWDH et 73!

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +2

      You are a Hero! I think, 5000km is already a lot for me because it is quite time-consuming.
      And the Morse Trainer is an interesting project. I put my project on Github (for reference). The link is in the description. It also has a call sign generator from the Morseduino project...

  • @aeljandro2
    @aeljandro2 3 роки тому

    Thanks for taking the time on making these videos. You are a great great teacher! I've learned a lot from you. Thanks for all!

  • @dennisp6337
    @dennisp6337 3 роки тому

    excellent video. Multitasking is finally a reality in my projects!

  • @raovarun
    @raovarun 3 роки тому

    Thanks for explaining FreeRTOS with well suited example as well.
    One thing I want to bring to your attention that FreeRTOS is not designed to support multiple CPU cores. You when you said that scheduler is giving time to core0 for network related tasks that is not completely correct. Yes scheduler manages core0 tasks as well but that is separate scheduler dedicated for core0. It means there are two separate schedulers running for core0 and core1.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      You are right. In addition, Espressif added a few "bells and whistles" for two cores which are not standard.

  • @seamusdemora5598
    @seamusdemora5598 3 роки тому

    I loved the Einstein quote re resource allocation to problem vs. solution. And of course your observation about how the typical engineer allocates time is 100% "on target" in my experience. But you missed an opportunity I think - to remind engineers that the quality of their solution often improves when they allocate resources more like Einstein. :) Great video, BTW.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are right. But I do not like to tell people what to do. I hope some learned from Einstein ;-)

  • @noweare1
    @noweare1 3 роки тому

    I am not a big fan of interrupts and when writing more involved programs I am always trying to keep the loop time a low as possible. I need to do this project and just play around with the few commands that you used. Thanks for trimming down a very large amount of info into something we can use.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      I also did not need interrupts (with the exception of the PS/2 library. 1ms was fast enough.

  • @hypnotourist
    @hypnotourist 3 роки тому

    Wow ! That was really an eye opener for me. I had no idea we could use that. Thank you weird accent guy !

  • @JerryEricsson
    @JerryEricsson 2 роки тому

    Oh your info on this RTOS system reminds me of my college days back in the early 90's. Our computer labs were made up of 486 machines running DOS and WINDOWS 3.1 that nobody used much except to play with as a sort of DOS file system manager. Then we had Intro to UNIX! That was cool because using those old machines we could go into the network and sign onto the School's Mainframe machine in UNEX and do some real computing in an Operating system where all who were in the lab at one time 25 computers could sign into the Mainframe and tinker around with the Unix system. I still keep a Linux partition on my laptop and get into it when my anger at Windows exceeds my desire to get work done.

    • @AndreasSpiess
      @AndreasSpiess  2 роки тому

      I still do not use Linux a lot. Only on my Raspberry.

  • @Robotsreloaded
    @Robotsreloaded 3 роки тому

    Love your videos! I've heard the word RTOS many times and thought it's something very complicated. Your explanation gives a very good intro to it. Now there is so many use cases coming in my mind 😁

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Glad it was helpful!

    • @alastorgdl
      @alastorgdl 2 роки тому

      @RobotsReloaded You don't even think on using a PC as baremetal. An embedded system is basically the same case even if the level of complexity is lower

  • @santopino2546
    @santopino2546 3 роки тому +1

    Interesting as usual.
    Thanks
    Pity I don't have time now to test this out.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      It takes some time to get acquainted... At least for me.

  • @mysomervda
    @mysomervda 3 роки тому

    Thanks. Great as usual, that was a nice introduction and overview of RTOS for me.

  • @maxdido6226
    @maxdido6226 3 роки тому +1

    Great video, thanks for sharing this - I was used to C parallel programming on high performance computing, finding the similar concepts here makes me feel younger 😊

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Glad you feel young! Here it is spring. A perfect time for that.
      These concepts are not new. We had RTOS in the 1980s already. But now they are much easier to use because we do not encounter limitations on the ESP32.

  • @BeefIngot
    @BeefIngot 3 роки тому +1

    FreeRTOS is pretty awesome. It's particularly great with arduino on esp32 because they already run it so no extra setup needed.
    The only disappointment is that outside of some fairly painful looking workarounds you can't get faster than 1000 hz

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are right. Maybe you can reduce the 1ms slot time.

    • @rfrisbee1
      @rfrisbee1 3 роки тому +3

      If a process requires a faster tick than 1ms then that's a good hint that that process should be implemented "outside" the RTOS in a high priority ISR. E.g. I have a PID loop for a power supply running every 100us in a high priority timer ISR running alongside FreeRTOS which has a 1ms tick.

    • @SerBallister
      @SerBallister Рік тому

      Task switching can occur instantly when a higher priority task wakes up by semaphore, mutex, etc. No need to wait for the scheduler timer.

  • @dany_2945
    @dany_2945 3 роки тому +7

    just in time, i have to do some homework using freertos in an esp32

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +3

      Good decision!

    • @ri-gor
      @ri-gor 3 роки тому +3

      Same here, but with an stm32. Working on a personal project with esp32 though, and I have been planning on FreeRTOS for a while (once i get the required libraries done, of course). :)

  • @michaelkaercher
    @michaelkaercher Рік тому

    I used RTOS on the ESP32. It is a nice clean approach. But it is not easier compared to a standard sketch. Just much cleaner for software architecture. I like it.

  • @-highvoltage4685
    @-highvoltage4685 3 роки тому +1

    thank you for talking about the hidden esp32 secrets and wonders :)

  • @johanneselectron3886
    @johanneselectron3886 3 роки тому +1

    Interestingly, there is even a Microsoft Windows Realtime version made at the German automation company Beckhof.

  • @max9111
    @max9111 3 роки тому

    Great perspective on RTOS. It is worth mentioning that espressif docs are also very good for freeRTOS, with the advange that for eclipse fans that eclipse market place has a nice extension for the espressif libraries, but this go beyonf freeRTOS.

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      You are right, Espressif's documentation is also very good.

    • @noweare1
      @noweare1 2 роки тому

      Visual Studio Code supports the IDF . Maybe there is even a plugin for Platformio. I tried eclipse but there were so many settings and menu's items I switched to VSC with no problems.

  • @MauroMaccarone
    @MauroMaccarone 2 роки тому

    Never die my hero! a lot of love from Argentina

  • @dariuszruminski8549
    @dariuszruminski8549 3 роки тому +2

    Thank you for the lesson!

  • @nicwhites
    @nicwhites 3 роки тому

    Great video, but it should be noted there is no physical possible way for 3 tasks to run in parallel on an esp32. It is only possible to have three tasks to run concurrently on a dual core system. Although it may not seem like there is of difference between parallel and concurrency, but deep down there is a huge difference.

  • @lawrencedoliveiro9104
    @lawrencedoliveiro9104 3 роки тому

    21:08 Spinlocks are commonly used for multiprocessor synchronization. The Linux kernel has them.

  • @NextLevelCode
    @NextLevelCode 3 роки тому

    You sir are a gentleman and a scholar. Well done as usual.

  • @jodeling35
    @jodeling35 Рік тому

    As always: Great Work, Andreas! Thx!

  • @y2ksw1
    @y2ksw1 3 роки тому

    As an app developer for cellular phones, I have to battle a lot with real time. This is a commonly underestimated skill, and many applications crash because they don't respect the underlying rules.

  • @tomaszwota1465
    @tomaszwota1465 2 роки тому

    "If you're good, you get more work"
    That can be true outside of military too.

  • @ColinMcCormack
    @ColinMcCormack 3 роки тому +1

    You know, the Apollo's LEM had a sophisticated RTOS

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому +1

      No, I did not know. But I can imagine that it had to manage many parallel tasks.

  • @MisterkeTube
    @MisterkeTube 3 роки тому

    When one task is writing to a shared resource and another could read from it, protection with a mutex/semaphore might still be needed, depending on the size of the resource and lots of other details. Best always protect any access to a variable shared between different tasks/threads.
    I also think there was a problem with your struct queue example @ 18:43. I think it was pushing a pointer to a local struct (so allocated on the stack) into the queue (rather than a copy of that struct). This is dangerous because the pointer may remain in the queue after the sending task has already exited the function this local struct was defined in and hence removed it from the stack. That could raise lots of weird behavior (sometimes working fine, sometimes getting totally different data or even crashing).

    • @AndreasSpiess
      @AndreasSpiess  3 роки тому

      Thank you for the info! I did not think too much about the Mutexes because my tasks run on the same core, only use a fraction of a slot and I always actively give control back to th scheduler.
      The struct is defined outside of the tasks and so far, I did not encounter problems with it.