Add HAS_HEATED_BED conditional (#10495)

This commit is contained in:
Scott Lahteine 2018-04-23 17:13:01 -05:00 committed by GitHub
parent 10a25f733e
commit cb46cb8480
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 303 additions and 260 deletions

View file

@ -365,7 +365,7 @@ void GcodeSuite::process_parsed_command(
case 113: M113(); break; // M113: Set Host Keepalive interval
#endif
#if HAS_HEATER_BED && HAS_TEMP_BED
#if HAS_HEATED_BED
case 140: M140(); break; // M140: Set bed temperature
case 190: M190(); break; // M190: Wait for bed temperature to reach target
#endif