Files
Abhinav e6af9f22e5 fix: add missing xSemaphoreGive and fix formatting in console.c (#1400)
In FreeRTOS_Plus_TCP_Echo_Posix/console.c:
- Add missing xSemaphoreGive() call in console_print() to prevent
  mutex starvation after vprintf completes
- Fix uncrustify formatting: indent preprocessor directives (#if/#else/#endif),
  add space between #if and condition, remove space in empty xSemaphoreCreateMutex()
2026-04-23 23:52:43 +00:00
..

FreeRTOS_Plus_TCP_Echo_Posix depends on Libslirp library to emulate network interface.
Make sure libslirp and glib (libslirp dependency) are installed before building the demo:
1. Run sudo apt-get install -y git build-essential libglib2.0-dev libslirp-dev in Ubuntu OS
2. Run brew install libslirp in MacOS