Skip to content

Commit

Permalink
Merge pull request #1206 from jasonrandrews/review
Browse files Browse the repository at this point in the history
fix error in RTX application Learning Path
  • Loading branch information
jasonrandrews authored Aug 30, 2024
2 parents cb3e5d7 + b39ddfa commit 045a541
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

review:
- questions:
- question: >
question: >
Which function is used to invoke an OS thread?
answers:
- "osKernelInitialize()"
Expand All @@ -21,7 +21,8 @@ review:
correct_answer: 3
explanation: >
osThreadNew() is called before osKernelStart() to define the main thread, and then by the main thread to start other threads.
- question: >
- questions:
question: >
What is the purpose of the `osKernelStart()` function?
answers:
- "To create the main application thread"
Expand All @@ -30,7 +31,8 @@ review:
correct_answer: 2
explanation: >
`osKernelStart()` starts the RTOS kernel and enables thread switching, making it essential for multitasking.
- question: >
- questions:
question: >
What happens if the code execution reaches the infinite while(1) loop in the main function?
answers:
- "All threads are successfully started."
Expand Down

0 comments on commit 045a541

Please sign in to comment.