Parcourir la source

ignored unused functions if u8g2 module is skipped anyhow

devsaurus il y a 6 ans
Parent
commit
4375e09c0b
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  1. 7 0
      components/modules/u8g2.c

+ 7 - 0
components/modules/u8g2.c

@@ -12,6 +12,13 @@
 
 #include "spi_common.h"
 
+#include "sdkconfig.h"
+#ifndef CONFIG_LUA_MODULE_U8G2
+// ignore unused functions if u8g2 module will be skipped anyhow
+#pragma GCC diagnostic ignored "-Wunused-function"
+#endif
+
+
 typedef struct {
   int font_ref;
   int host_ref;