MK 4.2.5 January 30, 2016 06:22AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 30, 2016 09:01AM |
Registered: 11 years ago Posts: 739 |
Re: MK 4.2.5 January 30, 2016 09:09AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 30, 2016 09:14AM |
Registered: 10 years ago Posts: 6,409 |
Quote
lamerhouse
allora .. prima considerazione la cartella su github si chaima ancor marlinKimbra
caricato su prusa i3 test iniziale assi tutto ok ..endstop ok .. motori ok, pibot ok
lanciata una stampa di 15 minuti vediamo ..
Re: MK 4.2.5 January 30, 2016 09:16AM |
Registered: 10 years ago Posts: 6,409 |
Quote
maralb
EndStop che piacciano a Me?????
Eprom Veloce come Repetier?????
Re: MK 4.2.5 January 30, 2016 09:33AM |
Registered: 11 years ago Posts: 415 |
In file included from sketch\base.h:44:0, from X:\3d stampante\firmware_ok\MarlinKimbra-dev\MarlinKimbra\MarlinKimbra.ino:192: sketch\module/sanitycheck.h:1459:10: error: #error DEPENDENCY ERROR: You must set Z_PROBE_PIN to a valid pin if you enable Z_PROBE_ENDSTOP #error DEPENDENCY ERROR: You must set Z_PROBE_PIN to a valid pin if you enable Z_PROBE_ENDSTOP ^ exit status 1 Errore durante la compilazione
sketch\module\MK_Main.cpp: In function 'void gcode_M0_M1()': sketch\module\MK_Main.cpp:4191:9: error: 'IS_SD_PRINTING' was not declared in this scope if (IS_SD_PRINTING) ^ exit status 1 Errore durante la compilazione
Re: MK 4.2.5 January 30, 2016 09:48AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 30, 2016 09:58AM |
Registered: 11 years ago Posts: 415 |
In file included from sketch\module\lcd\ultralcd.cpp:44:0: sketch\module\lcd\dogm_lcd_implementation.h:14:21: fatal error: ../base.h: No such file or directory #include "../base.h" ^ compilation terminated. exit status 1 Errore durante la compilazione
Re: MK 4.2.5 January 30, 2016 10:18AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 30, 2016 10:26AM |
Registered: 11 years ago Posts: 415 |
C:\Program Files (x86)\Arduino\libraries\U8glib\utility\u8g_rot.c:48:1: warning: initialization from incompatible pointer type [enabled by default] u8g_dev_t u8g_dev_rot = { u8g_dev_rot_dummy_fn, NULL, NULL }; ^ C:\Program Files (x86)\Arduino\libraries\U8glib\utility\u8g_rot.c:48:1: warning: (near initialization for 'u8g_dev_rot.dev_fn') [enabled by default]
Re: MK 4.2.5 January 30, 2016 10:56AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 30, 2016 11:06AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 30, 2016 11:13AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 30, 2016 12:46PM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 30, 2016 01:09PM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 30, 2016 01:39PM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 30, 2016 02:02PM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 30, 2016 06:09PM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 31, 2016 02:57AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 31, 2016 05:29AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 31, 2016 07:14AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 31, 2016 07:27AM |
Registered: 11 years ago Posts: 415 |
sketch\module\HAL.cpp:89:3: error: 'ring_buffer_tx' does not name a type ring_buffer_tx tx_buffer = { { 0 }, 0, 0}; ^ sketch\module\HAL.cpp: In function 'void rf_store_char(unsigned char, ring_buffer*)': sketch\module\HAL.cpp:92:38: error: 'SERIAL_BUFFER_MASK' was not declared in this scope uint8_t i = (buffer->head + 1) & SERIAL_BUFFER_MASK; ^ sketch\module\HAL.cpp: In function 'void __vector_26()': sketch\module\HAL.cpp:153:13: error: 'tx_buffer' was not declared in this scope if (tx_buffer.head == tx_buffer.tail) { ^ sketch\module\HAL.cpp:156:37: error: 'bit_clear' was not declared in this scope bit_clear(UCSR0B, UDRIE0); ^ sketch\module\HAL.cpp:171:51: error: 'SERIAL_TX_BUFFER_MASK' was not declared in this scope tx_buffer.tail = (tx_buffer.tail + 1) & SERIAL_TX_BUFFER_MASK; ^ sketch\module\HAL.cpp: At global scope: sketch\module\HAL.cpp:262:62: error: 'ring_buffer_tx' has not been declared MKHardwareSerial::MKHardwareSerial(ring_buffer *rx_buffer, ring_buffer_tx *tx_buffer, ^ sketch\module\HAL.cpp:262:3: error: prototype for 'MKHardwareSerial::MKHardwareSerial(ring_buffer*, int*, volatile uint8_t*, volatile uint8_t*, volatile uint8_t*, volatile uint8_t*, volatile uint8_t*, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t)' does not match any in class 'MKHardwareSerial' MKHardwareSerial::MKHardwareSerial(ring_buffer *rx_buffer, ring_buffer_tx *tx_buffer, ^ In file included from sketch\module\../module/HAL/HAL.h:76:0, from sketch\module\../base.h:38, from sketch\module\HAL.cpp:26: sketch\module\../module/HAL/HardwareSerial.h:75:9: error: candidates are: constexpr MKHardwareSerial::MKHardwareSerial(MKHardwareSerial&&) class MKHardwareSerial { ^ sketch\module\../module/HAL/HardwareSerial.h:75:9: error: constexpr MKHardwareSerial::MKHardwareSerial(const MKHardwareSerial&) sketch\module\../module/HAL/HardwareSerial.h:77:7: error: MKHardwareSerial::MKHardwareSerial() MKHardwareSerial(); ^ sketch\module\HAL.cpp:283:8: error: prototype for 'void MKHardwareSerial::begin(long unsigned int)' does not match any in class 'MKHardwareSerial' void MKHardwareSerial::begin(unsigned long baud) { ^ In file included from sketch\module\../module/HAL/HAL.h:76:0, from sketch\module\../base.h:38, from sketch\module\HAL.cpp:26: sketch\module\../module/HAL/HardwareSerial.h:78:12: error: candidate is: void MKHardwareSerial::begin(long int) void begin(long); ^ sketch\module\HAL.cpp: In member function 'void MKHardwareSerial::end()': sketch\module\HAL.cpp:331:12: error: '_tx_buffer' was not declared in this scope while (_tx_buffer->head != _tx_buffer->tail) ^ sketch\module\HAL.cpp:334:16: error: '_ucsrb' was not declared in this scope bit_clear(*_ucsrb, _rxen); ^ sketch\module\HAL.cpp:334:24: error: '_rxen' was not declared in this scope bit_clear(*_ucsrb, _rxen); ^ sketch\module\HAL.cpp:334:29: error: 'bit_clear' was not declared in this scope bit_clear(*_ucsrb, _rxen); ^ sketch\module\HAL.cpp:335:24: error: '_txen' was not declared in this scope bit_clear(*_ucsrb, _txen); ^ sketch\module\HAL.cpp:336:24: error: '_rxcie' was not declared in this scope bit_clear(*_ucsrb, _rxcie); ^ sketch\module\HAL.cpp:337:24: error: '_udrie' was not declared in this scope bit_clear(*_ucsrb, _udrie); ^ sketch\module\HAL.cpp:343:5: error: '_rx_buffer' was not declared in this scope _rx_buffer->head = _rx_buffer->tail; ^ sketch\module\HAL.cpp: At global scope: sketch\module\HAL.cpp:346:7: error: redefinition of 'int MKHardwareSerial::available()' int MKHardwareSerial::available(void) { ^ In file included from sketch\module\../module/HAL/HAL.h:76:0, from sketch\module\../base.h:38, from sketch\module\HAL.cpp:26: sketch\module\../module/HAL/HardwareSerial.h:84:24: error: 'int MKHardwareSerial::available()' previously defined here FORCE_INLINE int available(void) { ^ sketch\module\HAL.cpp:350:42: error: no 'int MKHardwareSerialutputUnused()' member function declared in class 'MKHardwareSerial' int MKHardwareSerialutputUnused(void) { ^ sketch\module\HAL.cpp: In member function 'int MKHardwareSerial::peek()': sketch\module\HAL.cpp:355:9: error: '_rx_buffer' was not declared in this scope if (_rx_buffer->head == _rx_buffer->tail) ^ sketch\module\HAL.cpp:357:12: error: '_rx_buffer' was not declared in this scope return _rx_buffer->buffer[_rx_buffer->tail]; ^ sketch\module\HAL.cpp: In member function 'int MKHardwareSerial::read()': sketch\module\HAL.cpp:362:9: error: '_rx_buffer' was not declared in this scope if (_rx_buffer->head == _rx_buffer->tail) { ^ sketch\module\HAL.cpp:365:23: error: '_rx_buffer' was not declared in this scope unsigned char c = _rx_buffer->buffer[_rx_buffer->tail]; ^ sketch\module\HAL.cpp:366:49: error: 'SERIAL_BUFFER_MASK' was not declared in this scope _rx_buffer->tail = (_rx_buffer->tail + 1) & SERIAL_BUFFER_MASK; ^ sketch\module\HAL.cpp: In member function 'void MKHardwareSerial::flush()': sketch\module\HAL.cpp:371:12: error: '_tx_buffer' was not declared in this scope while (_tx_buffer->head != _tx_buffer->tail); ^ sketch\module\HAL.cpp: At global scope: sketch\module\HAL.cpp:382:5: error: prototype for 'size_t MKHardwareSerial::write(uint8_t)' does not match any in class 'MKHardwareSerial' MKHardwareSerial::write(uint8_t c) { ^ In file included from sketch\module\../module/HAL/HAL.h:76:0, from sketch\module\../base.h:38, from sketch\module\HAL.cpp:26: sketch\module\../module/HAL/HardwareSerial.h:110:25: error: candidates are: void MKHardwareSerial::write(const uint8_t*, size_t) FORCE_INLINE void write(const uint8_t *buffer, size_t size) { while (size--) write(*buffer++); } ^ sketch\module\../module/HAL/HardwareSerial.h:109:25: error: void MKHardwareSerial::write(const char*) FORCE_INLINE void write(const char *str) { while (*str) write(*str++); } ^ sketch\module\../module/HAL/HardwareSerial.h:88:25: error: void MKHardwareSerial::write(uint8_t) FORCE_INLINE void write(uint8_t c) { ^ sketch\module\HAL.cpp:408:44: error: 'tx_buffer' was not declared in this scope MKHardwareSerial MKSerial(&rx_buffer, &tx_buffer, &UBRR0H, &UBRR0L, &UCSR0A, &UCSR0B, &UDR0, RXEN0, TXEN0, RXCIE0, UDRIE0, U2X0); ^ exit status 1 Errore durante la compilazione
Re: MK 4.2.5 January 31, 2016 08:35AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 31, 2016 08:44AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 31, 2016 08:48AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 31, 2016 08:56AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 31, 2016 09:18AM |
Registered: 10 years ago Posts: 268 |
15:14:00.027 : Info: Bed probe heights: 0.1875 0.2063 0.2125 0.1938 0.2062 mean 0.2013 15:14:03.011 : Info: Bed probe heights: 0.0250 0.0313 0.0313 0.0313 0.0375 mean 0.0313 15:14:06.104 : Info: Bed probe heights: -0.8812 -0.8812 -0.8812 -0.8812 -0.8875 mean -0.8825 15:14:09.479 : Info: Bed probe heights: 0.0500 0.0250 0.0313 0.0375 0.0188 mean 0.0325 15:14:12.432 : Info: Bed probe heights: 0.5125 0.5000 0.5125 0.5000 0.4938 mean 0.5038 15:14:15.370 : Info: Bed probe heights: -0.0250 0.0000 0.0000 -0.0062 -0.0562 mean -0.0175 15:14:18.839 : Info: Bed probe heights: 0.5625 0.5625 0.5688 0.5750 0.5688 mean 0.5675 15:14:22.136 : Info: Bed probe heights: 0.1938 0.2125 0.2125 0.2188 0.2125 mean 0.2100 15:14:22.136 : Echo: | Z-Tower Endstop Offsets 15:14:22.136 : Echo: | 0.0313 X:-1.5050 Y:-5.8537 Z:-0.6790 15:14:22.151 : Echo: | 0.5675 -0.8825 Tower Offsets 15:14:22.151 : Echo: | 0.2100 A:0.00 B:0.00 C:0.00 15:14:22.151 : Echo: | 0.0325 -0.0175 I:0.50 J:2.00 K:-3.00 15:14:22.151 : Echo: | 0.5038 Delta Radius: 177.0000 15:14:22.167 : Echo: | X-Tower Y-Tower Diagonal Rod: 288.0000 15:14:22.167 : Echo: Endstop adjustment complete 15:14:22.870 : Info: <<< gcode_G30 15:14:22.933 : Error: ;?????4??F??[??z???????X?z5g??]??#??0??d??8_?w?????????F?????w????????????Yz?N????Z?p??@k?e?6[V???[?????Y???????r??S}???????;??#??????n*M?~??????ru?O?.x?Kjv???S<|{????????O?{~?q?????]?I??&;?????KjbgK 15:14:22.948 : ??)???~?m??????l??o?z??t?Q???V???????f??????????{??kCo|?O????r???????T?N??)??^?????r?z>?5?????????w???{??>n?L???O ????W?????????1iu?R>????y???v??f]79??????s?????n?????*??Y"b%????]??|.?????>???+??????.W.?#????7?{^?|m<????]?6,{?-????i? 15:14:22.964 : k0?U???? ?;i?l;????-??????????w`r????y????y?J?d?5x"?????V?Z?$???7???????~??v??`???P???????k5????c?E?+.????'D?w 15:14:22.964 : ?z2??7?????f7r4r??v??{ub?k???1???3y??????{???????}??????'?6_?j??vb?9O??h???m???b?'D??)la?0?o?K????-h????>???#???<???? 15:14:22.979 : ????????????????4??&M????m?{s?????t???E?d????54 15:14:22.979 : Resend: 55
Re: MK 4.2.5 January 31, 2016 09:22AM |
Registered: 10 years ago Posts: 6,409 |
Re: MK 4.2.5 January 31, 2016 11:14AM |
Registered: 11 years ago Posts: 415 |
Re: MK 4.2.5 January 31, 2016 11:52AM |
Registered: 10 years ago Posts: 6,409 |