07 FreeRTOS Tutorial: Task Utilities part1

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ม.ค. 2025

ความคิดเห็น • 9

  • @tistitaki
    @tistitaki 3 ปีที่แล้ว

    Can you pls explain, why to delete the Idle task? What does that result? Thanks.

  • @shashankm5331
    @shashankm5331 4 ปีที่แล้ว

    Sir i need configRTOS.h file for the same processor that you are using...

  • @kunalpanchal7751
    @kunalpanchal7751 6 ปีที่แล้ว +1

    Which debugger/programmer are you using ??

  • @ducnguyen4973
    @ducnguyen4973 5 ปีที่แล้ว

    Is your code running on a Window PC or a FreeRTOS machine??

    • @snmanningenir1567
      @snmanningenir1567  5 ปีที่แล้ว

      It's running on a cortex-M mcu.

    • @ducnguyen4973
      @ducnguyen4973 5 ปีที่แล้ว

      Thank you so much. But, I am confused that is there a real OS running on your microprocessor? Or which is called FreeRTOS here is just a library

    • @snmanningenir1567
      @snmanningenir1567  5 ปีที่แล้ว +2

      @@ducnguyen4973 freeRTOS is a microkernel and windows or linux os monolithic kernel. One of the many difference between them is that in monolithic kernel, an application can have compile time and runtime in the same machine, which generally is not possible in microkernel. The IDE and the compiler toolchain builds the code during compile time on a windows/linux machine. A JTAG is used to push the binary into the mcu followed by runtime when the code executes inside the mcu. Anything you see on the terminal is during runtime. I hope it clarifies your question.

    • @ducnguyen4973
      @ducnguyen4973 5 ปีที่แล้ว +1

      @@snmanningenir1567 Thank you so much. Your answer is so clear and that helps me a lot !!!