We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db95ee commit 0ee0db3Copy full SHA for 0ee0db3
1 file changed
firmware/hw_layer/openblt/blt_conf.h
@@ -121,11 +121,19 @@
121
/** only USB supported, this is ignored but required */
122
#define BOOT_COM_RS232_CHANNEL_INDEX 0
123
124
+/** TODO: fix include mess and delete following hacks */
125
+#ifndef TRUE
126
+#define TRUE (1)
127
+#endif
128
+#ifndef FALSE
129
+#define FALSE (0)
130
131
+
132
#ifndef EFI_ETHERNET
133
#define EFI_ETHERNET FALSE
134
#endif
135
-#if (EFI_ETHERNET == TRUE)
136
+#if (EFI_ETHERNET)
137
/* The NET communication interface for firmware updates via TCP/IP is selected by setting
138
* the BOOT_COM_NET_ENABLE configurable to 1. The maximum amount of data bytes in a
139
* message for data transmission and reception is set through BOOT_COM_NET_TX_MAX_DATA
0 commit comments