Explorar el Código

No SERIAL_STATS for LPC, STM32 (#18145)

Jason Smith hace 5 años
padre
commit
dcb90a8d61
No account linked to committer's email address

+ 8
- 0
Marlin/src/HAL/LPC1768/inc/SanityCheck.h Ver fichero

251
 
251
 
252
   #undef USEDI2CDEV_M
252
   #undef USEDI2CDEV_M
253
 #endif
253
 #endif
254
+
255
+#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
256
+  #error "SERIAL_STATS_MAX_RX_QUEUED is not supported on this platform."
257
+#endif
258
+
259
+#if ENABLED(SERIAL_STATS_DROPPED_RX)
260
+  #error "SERIAL_STATS_DROPPED_RX is not supported on this platform."
261
+#endif  

+ 8
- 0
Marlin/src/HAL/STM32/inc/SanityCheck.h Ver fichero

48
 #if !defined(STM32F4xx) && ENABLED(FLASH_EEPROM_LEVELING)
48
 #if !defined(STM32F4xx) && ENABLED(FLASH_EEPROM_LEVELING)
49
   #error "FLASH_EEPROM_LEVELING is currently only supported on STM32F4 hardware."
49
   #error "FLASH_EEPROM_LEVELING is currently only supported on STM32F4 hardware."
50
 #endif
50
 #endif
51
+
52
+#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
53
+  #error "SERIAL_STATS_MAX_RX_QUEUED is not supported on this platform."
54
+#endif
55
+
56
+#if ENABLED(SERIAL_STATS_DROPPED_RX)
57
+  #error "SERIAL_STATS_DROPPED_RX is not supported on this platform."
58
+#endif  

+ 8
- 0
Marlin/src/HAL/STM32F1/inc/SanityCheck.h Ver fichero

49
   #endif
49
   #endif
50
   #error "SDCARD_EEPROM_EMULATION requires SDSUPPORT. Enable SDSUPPORT or choose another EEPROM emulation."
50
   #error "SDCARD_EEPROM_EMULATION requires SDSUPPORT. Enable SDSUPPORT or choose another EEPROM emulation."
51
 #endif
51
 #endif
52
+
53
+#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
54
+  #error "SERIAL_STATS_MAX_RX_QUEUED is not supported on this platform."
55
+#endif
56
+
57
+#if ENABLED(SERIAL_STATS_DROPPED_RX)
58
+  #error "SERIAL_STATS_DROPPED_RX is not supported on this platform."
59
+#endif  

Loading…
Cancelar
Guardar