|
@@ -241,6 +241,23 @@ const unsigned int dropsegments=5; //everything with less than this number of st
|
241
|
241
|
#ifdef ULTIPANEL
|
242
|
242
|
#undef SDCARDDETECTINVERTED
|
243
|
243
|
#endif
|
|
244
|
+
|
|
245
|
+// Power Signal Control Definitions
|
|
246
|
+// By default use ATX definition
|
|
247
|
+#ifndef POWER_SUPPLY
|
|
248
|
+ #define POWER_SUPPLY 1
|
|
249
|
+#endif
|
|
250
|
+// 1 = ATX
|
|
251
|
+#if (POWER_SUPPLY == 1)
|
|
252
|
+ #define PS_ON_AWAKE LOW
|
|
253
|
+ #define PS_ON_ASLEEP HIGH
|
|
254
|
+#endif
|
|
255
|
+// 2 = X-Box 360 203W
|
|
256
|
+#if (POWER_SUPPLY == 2)
|
|
257
|
+ #define PS_ON_AWAKE HIGH
|
|
258
|
+ #define PS_ON_ASLEEP LOW
|
|
259
|
+#endif
|
|
260
|
+
|
244
|
261
|
//===========================================================================
|
245
|
262
|
//=============================Buffers ============================
|
246
|
263
|
//===========================================================================
|