# FeatStd V3.2.0

# FeatStd Diagnostics

#### New macro FEATSTD\_GUARD

A new macro FEATSTD\_GUARD(condition) has been added which asserts in debug builds, but in any build mode adds an if-block with condition around. Usage:

```
FEATSTD_GUARD(condition)
  // handling if condition is not true
}
```

---

# FeatStd Platform

#### Maximum Thread Name Length changed

The Maximum thread name length has been changed to 15 to achieve compatibility with Linux OS.

---