[Shell] Add vTaskDelay to release CPU usage (#26864)

* [Shell] Add vTaskDelay to free cpu

* add delay in matter shell loop
diff --git a/src/lib/shell/MainLoopAmeba.cpp b/src/lib/shell/MainLoopAmeba.cpp
index 0526980..b8476a5 100644
--- a/src/lib/shell/MainLoopAmeba.cpp
+++ b/src/lib/shell/MainLoopAmeba.cpp
@@ -146,6 +146,7 @@
             ProcessShellLine(reinterpret_cast<intptr_t>(line));
 #endif
         }
+        vTaskDelay(pdMS_TO_TICKS(10)); // delay 10ms
     }
 }