Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 09. May 2019 15:56 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 350 |
In file included from sketch\MarlinConfig.h:30:0, from C:\Users\Andre\Downloads\3D\Firmware\Custom A10\Configuration_A10.1.18\Configuration_A10.1.18.ino:31: Configuration.h:652: error: expected unqualified-id before numeric constant #define Z_ENDSTOP_SERVO_NR 0 // Defaults to SERVO 0 connector. ^ sketch\SanityCheck.h:685:6: note: in expansion of macro 'Z_ENDSTOP_SERVO_NR' */Z_ENDSTOP_SERVO_NR ^ exit status 1 expected unqualified-id before numeric constant
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 09. May 2019 18:01 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 300 |
/**
Number of servos
For some servo-related options NUM_SERVOS will be set automatically.
Set this manually if there are extra servos needing manual control.
Leave undefined or set to 0 to entirely disable the servo subsystem.
*/
#define NUM_SERVOS 2 // Servo index starts with 0 for M280 command
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 10. May 2019 01:27 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 350 |
#define Z_ENDSTOP_SERVO_NR 0 // Defaults to SERVO 0 connector. #define Z_SERVO_ANGLES {70,0} // Z Servo Deploy and Stow angles. #define NUM_SERVOS 1
In file included from sketch\MarlinConfig.h:30:0,
from C:\Users\Andre\Downloads\3D\Firmware\Custom A10\Configuration_A10.1.18\Configuration_A10.1.18.ino:31:
Configuration.h:652: error: expected unqualified-id before numeric constant
#define Z_ENDSTOP_SERVO_NR 0 // Defaults to SERVO 0 connector.
^
sketch\SanityCheck.h:685:6: note: in expansion of macro 'Z_ENDSTOP_SERVO_NR'
*/Z_ENDSTOP_SERVO_NR
^
exit status 1
expected unqualified-id before numeric constant
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 10. May 2019 03:46 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 10. May 2019 11:37 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 350 |
#define NUM_SERVOS 2 // Servo index starts with 0 for M280 command #define SERVO_DELAY { 300, 300, 300 }
#define NUM_SERVOS 2 // Servo index starts with 0 for M280 command #define SERVO_DELAY { 300, 300 }
Arduino: 1.8.5 (Windows 10), Board: "Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)" In file included from sketch\MarlinConfig.h:40:0, from C:\Users\Andre\Downloads\3D\Firmware\Custom A10\Configuration_A10.1.18\Configuration_A10.1.18.ino:31: SanityCheck.h:555: error: #error "Z_ENDSTOP_SERVO_NR, switching nozzle, or switching extruder is required for DEACTIVATE_SERVOS_AFTER_MOVE." #error "Z_ENDSTOP_SERVO_NR, switching nozzle, or switching extruder is required for DEACTIVATE_SERVOS_AFTER_MOVE." ^ exit status 1 #error "Z_ENDSTOP_SERVO_NR, switching nozzle, or switching extruder is required for DEACTIVATE_SERVOS_AFTER_MOVE."Also muss
wieder auskommentiert werden.Quote
#define DEACTIVATE_SERVOS_AFTER_MOVE
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 11. May 2019 08:19 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 350 |
In file included from C:\Users\Andre\AppData\Local\Temp\arduino_build_421737\sketch\MarlinConfig.h:30:0,
from C:\Users\Andre\Downloads\3D\Firmware\Custom A10\Configuration_A10.1.18_mit_Servo_0\Configuration_A10.1.18_mit_Servo_0.ino:31:
Configuration.h:658: error: expected unqualified-id before numeric constant
#define Z_ENDSTOP_SERVO_NR 0 // Defaults to SERVO 0 connector.
^
C:\Users\Andre\AppData\Local\Temp\arduino_build_421737\sketch\SanityCheck.h:685:6: note: in expansion of macro 'Z_ENDSTOP_SERVO_NR'
*/Z_ENDSTOP_SERVO_NR
^
Bibliothek LiquidCrystal in Version 1.0.7 im Ordner: C:\Portable Programs\arduino-1.8.5\libraries\LiquidCrystal wird verwendet
exit status 1
expected unqualified-id before numeric constant
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 11. May 2019 09:36 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 300 |
/**
* Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
*
* Enable this option for a probe connected to the Z Min endstop pin.
*/
#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
/**
* Z Servo Probe, such as an endstop switch on a rotating arm.
*/
#define Z_PROBE_SERVO_NR 0 // Defaults to SERVO 0 connector.
#define Z_SERVO_ANGLES {70,0} // Z Servo Deploy and Stow angles
#define AUTO_BED_LEVELING_3POINT
/**
* Number of servos
*
* For some servo-related options NUM_SERVOS will be set automatically.
* Set this manually if there are extra servos needing manual control.
* Leave undefined or set to 0 to entirely disable the servo subsystem.
*/
#define NUM_SERVOS 1 // Servo index starts with 0 for M280 command
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht 11. May 2019 11:34 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: Servo Endstop konfigurieren - Fehler - ich finde den Fehler nicht (gelöst) 12. May 2019 10:31 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 350 |