Vai al contenuto

RESET CARTUCCIA filamento XYZPrinting Da Vinci 1.0


Messaggi raccomandati

  • 2 settimane dopo...

 

 

salve a tutti .

mi potete indicarmi dove posso trovare un codice sempre se esite per fare il reset della cartuccia PLA non si trova ....
Cosa devo modificare del codice per ABS se voglio utilizzare il PLA visto che utilizzano temperature diversi?

ho già resettato quella ABS ma non posso portarla a 400 ho una 1.0aio quale versione dell'firmware devo dowgradare?

 

firmware attuale della stampante e 1.1.5 e possibie sostituire nel codice di reset ???

 

By default its set for the starter ABS cartdridge with 240m of filament

Verified with firmware 1.1.I sostituire con 1.1.5
and
Verificato with firmware 1.1. J o sostituire questo  by xnotar
*/

// Value to write to the EEPROM for remaining filament lenght
// Default Starter Cartdridge is 120m
//char x[] = {0xc0,0xd4,0x01,0x00}; //120m
char x[] = {0x80,0xa9,0x03,0x00}; //240m
//char x[] = {0x80,0x1a,0x06,0x00}; //400m
//char x[] = {0x3f, 0x42, 0x0f, 0x00}; //999m add by xnotar

il mio interesse e di utilizzare queste due soluzioni
 

Grazie mille

Link al commento
Condividi su altri siti

confermo che massimo supportato è 240m,sto cercando anche io i parametri da impostare nel chip per il pla ma non li ho ancora trovati ho posto anche la questione sul forum ma non ho ricevuto risposta.....tu hai la cartuccia originale del Pla ? forse leggendo con arduino i codici originali e facendone una copia si potrebbe andare a modificarli.....


Link al commento
Condividi su altri siti

  • 2 mesi dopo...

a me da quest errore:

Arduino:1.6.6 (Windows 8.1), Scheda:"Arduino/Genuino Uno"

Sketch_xnotar_14-09-2014:57: error: 'volatileboolean' does not name a type

  lSerial++;

 ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'void set_bus(boolean)':

Sketch_xnotar_14-09-2014:99: error: 'void set_bus(boolean)' was declared 'extern' and later 'static' [-fpermissive]

 static void set_bus(boolean state) {

                                  ^

Sketch_xnotar_14-09-2014:53: error: previous declaration of 'void set_bus(boolean)' [-fpermissive]

 {

      ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'boolean read_bus()':

Sketch_xnotar_14-09-2014:103: error: 'boolean read_bus()' was declared 'extern' and later 'static' [-fpermissive]

 static boolean read_bus(void) {

                             ^

Sketch_xnotar_14-09-2014:54: error: previous declaration of 'boolean read_bus()' [-fpermissive]

  unsigned char szTempBuffer[20] = {0};

         ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'void unio_inter_command_gap()':

Sketch_xnotar_14-09-2014:106: error: 'void unio_inter_command_gap()' was declared 'extern' and later 'static' [-fpermissive]

 static void unio_inter_command_gap(void) {

                                        ^

Sketch_xnotar_14-09-2014:55: error: previous declaration of 'void unio_inter_command_gap()' [-fpermissive]

  memcpy(szTempBuffer,&cArray[lAddress],lSize);

      ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'void unio_standby_pulse()':

Sketch_xnotar_14-09-2014:111: error: 'void unio_standby_pulse()' was declared 'extern' and later 'static' [-fpermissive]

 static void unio_standby_pulse(void) {

                                    ^

Sketch_xnotar_14-09-2014:56: error: previous declaration of 'void unio_standby_pulse()' [-fpermissive]

  long lSerial = atol((char *)szTempBuffer);

      ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'boolean read_bit()':

Sketch_xnotar_14-09-2014:132: error: 'boolean read_bit()' was declared 'extern' and later 'static' [-fpermissive]

 static boolean read_bit(void) {

                             ^

Sketch_xnotar_14-09-2014:58: error: previous declaration of 'boolean read_bit()' [-fpermissive]

  sprintf((char *)szTempBuffer,"%04d",lSerial);

         ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'boolean send_byte(byte, boolean)':

Sketch_xnotar_14-09-2014:140: error: 'boolean send_byte(byte, boolean)' was declared 'extern' and later 'static' [-fpermissive]

 static boolean send_byte(byte b, boolean mak) {

                                             ^

Sketch_xnotar_14-09-2014:59: error: previous declaration of 'boolean send_byte(byte, boolean)' [-fpermissive]

  memcpy(&cArray[lAddress],szTempBuffer,lSize);

         ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'boolean read_byte(byte*, boolean)':

Sketch_xnotar_14-09-2014:149: error: 'boolean read_byte(byte*, boolean)' was declared 'extern' and later 'static' [-fpermissive]

 static boolean read_byte(byte *b, boolean mak) {

                                              ^

Sketch_xnotar_14-09-2014:60: error: previous declaration of 'boolean read_byte(byte*, boolean)' [-fpermissive]

 }

         ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'boolean unio_send(const byte*, word, boolean)':

Sketch_xnotar_14-09-2014:161: error: 'boolean unio_send(const byte*, word, boolean)' was declared 'extern' and later 'static' [-fpermissive]

 static boolean unio_send(const byte *data,word length,boolean end) {

                                                                  ^

Sketch_xnotar_14-09-2014:61: error: previous declaration of 'boolean unio_send(const byte*, word, boolean)' [-fpermissive]

 

         ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'boolean unio_read(byte*, word)':

Sketch_xnotar_14-09-2014:168: error: 'boolean unio_read(byte*, word)' was declared 'extern' and later 'static' [-fpermissive]

 static boolean unio_read(byte *data,word length)  {

                                                ^

Sketch_xnotar_14-09-2014:62: error: previous declaration of 'boolean unio_read(byte*, word)' [-fpermissive]

 class NanodeUNIO {

         ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'void unio_start_header()':

Sketch_xnotar_14-09-2014:175: error: 'void unio_start_header()' was declared 'extern' and later 'static' [-fpermissive]

 static void unio_start_header(void) {

                                   ^

Sketch_xnotar_14-09-2014:63: error: previous declaration of 'void unio_start_header()' [-fpermissive]

  private:

      ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'void status(boolean)':

Sketch_xnotar_14-09-2014:302: error: 'void status(boolean)' was declared 'extern' and later 'static' [-fpermissive]

 static void status(boolean r)

                             ^

Sketch_xnotar_14-09-2014:64: error: previous declaration of 'void status(boolean)' [-fpermissive]

   byte addr;

      ^

C:\Users\Edevige\Desktop\Sketch_xnotar_14-09-2014\Sketch_xnotar_14-09-2014.ino: In function 'void dump_eeprom(word, word)':

Sketch_xnotar_14-09-2014:308: error: 'void dump_eeprom(word, word)' was declared 'extern' and later 'static' [-fpermissive]

 static void dump_eeprom(word address,word length)

                                                 ^

Sketch_xnotar_14-09-2014:65: error: previous declaration of 'void dump_eeprom(word, word)' [-fpermissive]

  public:

      ^

exit status 1
'volatileboolean' does not name a type

  Questo report potrebbe essere più ricco di informazioni con
  "Mostra un output dettagliato durante la compilazione"
  abilitato in "File > Impostazioni"

 

Link al commento
Condividi su altri siti

Partecipa alla conversazione

Puoi pubblicare ora e registrarti più tardi. Se hai un account, accedi ora per pubblicarlo con il tuo account.

Ospite
Rispondi a questa discussione...

×   Hai incollato il contenuto con la formattazione.   Rimuovere la formattazione

  Sono consentiti solo 75 emoticon max.

×   Il tuo collegamento è stato incorporato automaticamente.   Mostra come un collegamento

×   Il tuo contenuto precedente è stato ripristinato.   Pulisci editor

×   Non puoi incollare le immagini direttamente. Carica o inserisci immagini dall'URL.


×
×
  • Crea Nuovo...