Checking for features

Checking Device OS Version

The define value SYSTEM_VERSION specifies the Device OS version.

For example, if you had code that you only wanted to include in 0.7.0 and later, you'd check for:

#if SYSTEM_VERSION >= SYSTEM_VERSION_v070
// Code to include only for 0.7.0 and later
#endif