change(build): Add a new CMake flag NON_OS_BUILD for non-FreeRTOS builds

This commit is contained in:
Laukik Hase
2024-10-16 13:32:12 +05:30
parent 12398c0f25
commit 5328dcd00c
17 changed files with 46 additions and 30 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
extern "C" {
#endif
#if !BOOTLOADER_BUILD || __DOXYGEN__
#if !NON_OS_BUILD || __DOXYGEN__
/**
* @brief Logs a buffer of hexadecimal bytes at the specified log level.
@@ -173,7 +173,7 @@ static inline void esp_log_buffer_char(const char *tag, const void *buffer, uint
}
/** @endcond */
#endif // !BOOTLOADER_BUILD || __DOXYGEN__
#endif // !NON_OS_BUILD || __DOXYGEN__
#ifdef __cplusplus
}