Git Product home page Git Product logo

Comments (9)

ahmetcemturan avatar ahmetcemturan commented on August 15, 2024

Well I tried on arduino 1.0.1:

In file included from Commands.cpp:23:
/Reptier.h:23:21: error: Arduino.h: No such file or directory
/Reptier.h:165:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:165:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:165:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:165:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:190:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:190:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:190:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:190:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:213:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:213:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:213:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:213:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:215:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:215:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:215:1: error: invalid suffix "_WPORT" on integer constant
/Reptier.h:215:1: error: invalid suffix "_PIN" on integer constant
/Reptier.h:245:5: error: missing binary operator before token "3"
In file included from /Reptier.h:28,
from Commands.cpp:23:
gcode.h:30: error: 'byte' does not name a type
gcode.h:31: error: 'byte' does not name a type
gcode.h:37: error: 'byte' does not name a type
gcode.h:43: error: expected class-name before '{' token
gcode.h:71: error: 'byte' has not been declared
gcode.h:90: error: 'byte' does not name a type
In file included from Commands.cpp:23:
Reptier.h:75: error: 'byte' does not name a type
Reptier.h:79: error: 'byte' does not name a type
Reptier.h:80: error: 'byte' does not name a type
Reptier.h:81: error: 'byte' does not name a type
Reptier.h:84: error: 'byte' does not name a type
Reptier.h:106: error: 'byte' does not name a type
Reptier.h:107: error: 'byte' does not name a type
Reptier.h:111: error: 'byte' does not name a type
Reptier.h:114: error: 'byte' does not name a type
Reptier.h:124: error: 'byte' does not name a type
Reptier.h:142: error: variable or field 'extruder_select' declared void
Reptier.h:142: error: 'byte' was not declared in this scope
Reptier.h:146: error: 'byte' has not been declared
Reptier.h:151: error: variable or field 'extruder_set_direction' declared void
Reptier.h:151: error: 'byte' was not declared in this scope
Reptier.h:153: error: 'byte' does not name a type
/Reptier.h: In function 'void extruder_step()':
Reptier.h:164: error: 'HIGH' was not declared in this scope
Reptier.h:164: error: 'DIO4' was not declared in this scope
Reptier.h:164: error: expected ;' before numeric constant Reptier.h:164: error: 'DIO4' was not declared in this scope Reptier.h:164: error: expected;' before numeric constant
/Reptier.h: In function 'void extruder_unstep()':
Reptier.h:189: error: 'LOW' was not declared in this scope
Reptier.h:189: error: 'DIO4' was not declared in this scope
Reptier.h:189: error: expected ;' before numeric constant Reptier.h:189: error: 'DIO4' was not declared in this scope Reptier.h:189: error: expected;' before numeric constant
/Reptier.h: At global scope:
Reptier.h:209: error: variable or field 'extruder_set_direction' declared void
Reptier.h:209: error: 'byte' was not declared in this scope

from repetier-firmware.

repetier avatar repetier commented on August 15, 2024

It compiles with any Arduino version, at least at home. Are you compiling the latest master branch? Try with the default configuration before you start including your changes, perhaps a config change caused the error. C can be peculiar with missing chars.

from repetier-firmware.

ahmetcemturan avatar ahmetcemturan commented on August 15, 2024

OK will do that

Sent from my iPhone

On 4 Eki 2012, at 15:33, repetier [email protected] wrote:

It compiles with any Arduino version, at least at home. Are you compiling
the latest master branch? Try with the default configuration before you
start including your changes, perhaps a config change caused the error. C
can be peculiar with missing chars.


Reply to this email directly or view it on
GitHubhttps://github.com//issues/41#issuecomment-9139642.

from repetier-firmware.

ahmetcemturan avatar ahmetcemturan commented on August 15, 2024

It compiled OK.

İt breaks when I enter the pins for the heater… (#define EXT0_HEATER_PIN HEATER_0_PIN 14..)

Do I have to leave them blank? Is that only optional? The pins are defined in the pins.h file right?

From: repetier [mailto:[email protected]]
Sent: Thursday, October 04, 2012 3:34 PM
To: repetier/Repetier-Firmware
Cc: Ahmet Cem TURAN
Subject: Re: [Repetier-Firmware] Cant compile (arduino 23) (#41)

It compiles with any Arduino version, at least at home. Are you compiling the latest master branch? Try with the default configuration before you start including your changes, perhaps a config change caused the error. C can be peculiar with missing chars.


Reply to this email directly or view it on GitHub #41 (comment) .

https://github.com/notifications/beacon/J6T91GIPIyhU-8ti4GCGPxQfPAiFOGCO9-7UwfPWLDHKCEKOoBKislYdNVVuiEg9.gif

from repetier-firmware.

repetier avatar repetier commented on August 15, 2024

I see what you do and understand the errors now

#define EXT0_HEATER_PIN HEATER_0_PIN 14

is double. HEATER_0_PIN is the pin number which is defined in pins.h when you select the motherboard. If it is wrong in your case you could write
#define EXT0_HEATER_PIN 14
or after including pins.h do a redefinition like
#define HEATER_0_PIN 14

from repetier-firmware.

ahmetcemturan avatar ahmetcemturan commented on August 15, 2024

Ok my fault obviously.

from repetier-firmware.

ahmetcemturan avatar ahmetcemturan commented on August 15, 2024

Ok it worked, thx

But the PID values taken over from Marlin seem to come very weak…

Cant hardly reach 210c..

From: repetier [mailto:[email protected]]
Sent: Thursday, October 04, 2012 6:17 PM
To: repetier/Repetier-Firmware
Cc: Ahmet Cem TURAN
Subject: Re: [Repetier-Firmware] Cant compile (arduino 23) (#41)

I see what you do and understand the errors now

#define EXT0_HEATER_PIN HEATER_0_PIN 14

is double. HEATER_0_PIN is the pin number which is defined in pins.h when you select the motherboard. If it is wrong in your case you could write
#define EXT0_HEATER_PIN 14
or after including pins.h do a redefinition like
#define HEATER_0_PIN 14


Reply to this email directly or view it on GitHub #41 (comment) .

https://github.com/notifications/beacon/J6T91GIPIyhU-8ti4GCGPxQfPAiFOGCO9-7UwfPWLDHKCEKOoBKislYdNVVuiEg9.gif

from repetier-firmware.

repetier avatar repetier commented on August 15, 2024

PID values are not compatible with the one in Marlin. Use defaults for a start. The next version will have more compatible values.

Have you changed this value:
/** \brief The maximum value, I-gain can contribute to the output.

A good value is slightly higher then the output needed for your temperature.
Values for starts:
130 => PLA for temperatures from 170-180°C
180 => ABS for temperatures around 240°C

The precise values may differ for different nozzle/resistor combination.
Overridden if EEPROM activated.
*/
#define EXT0_PID_INTEGRAL_DRIVE_MAX 130

If you have enabled EEPROM change the value in eeprom settings.

from repetier-firmware.

ahmetcemturan avatar ahmetcemturan commented on August 15, 2024

Yes I tried increasing it

From: repetier [mailto:[email protected]]
Sent: Thursday, October 04, 2012 11:11 PM
To: repetier/Repetier-Firmware
Cc: Ahmet Cem TURAN
Subject: Re: [Repetier-Firmware] Cant compile (arduino 23) (#41)

PID values are not compatible with the one in Marlin. Use defaults for a start. The next version will have more compatible values.

Have you changed this value:
/** \brief The maximum value, I-gain can contribute to the output.

A good value is slightly higher then the output needed for your temperature.
Values for starts:
130 => PLA for temperatures from 170-180°C
180 => ABS for temperatures around 240°C

The precise values may differ for different nozzle/resistor combination.
Overridden if EEPROM activated.
*/
#define EXT0_PID_INTEGRAL_DRIVE_MAX 130

If you have enabled EEPROM change the value in eeprom settings.


Reply to this email directly or view it on GitHub #41 (comment) .

https://github.com/notifications/beacon/J6T91GIPIyhU-8ti4GCGPxQfPAiFOGCO9-7UwfPWLDHKCEKOoBKislYdNVVuiEg9.gif

from repetier-firmware.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.