Compilation error Marlin May 23, 2016 01:59AM |
Registered: 9 years ago Posts: 14 |
Quote
log
sketch\module\lcd\../../module/HAL/HAL.h:81:142: error: 'DIOLCD_PINS_D4_PIN' was not declared in this scope #define _WRITE(port, v) do { if (v) {DIO ## port ## _PORT -> PIO_SODR = DIO ## port ## _PIN; } else {DIO ## port ## _PORT->PIO_CODR = DIO ## port ## _PIN; }; } while (0) ^ sketch\module\lcd\../../module/HAL/HAL.h:82:24: note: in expansion of macro '_WRITE' #define WRITE(pin,v) _WRITE(pin,v) ^ sketch\module\lcd\../../module/HAL/HAL.h:93:47: note: in expansion of macro 'WRITE' #define OUT_WRITE(IO, v) { SET_OUTPUT(IO); WRITE(IO, v); } ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:91:7: note: in expansion of macro 'OUT_WRITE' OUT_WRITE(ST7920_CLK_PIN, HIGH); ^ In file included from sketch\module\lcd\dogm_lcd_implementation.h:64:0, from sketch\module\lcd\ultralcd.cpp:84: sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:33:25: error: 'LCD_PINS_RS' was not declared in this scope #define ST7920_CS_PIN LCD_PINS_RS ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:55:50: note: in expansion of macro 'ST7920_CS_PIN' #define ST7920_CS() {digitalWrite(ST7920_CS_PIN, 1);u8g_10MicroDelay();} ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:93:7: note: in expansion of macro 'ST7920_CS' ST7920_CS(); ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:33:25: error: 'LCD_PINS_RS' was not declared in this scope #define ST7920_CS_PIN LCD_PINS_RS ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:56:50: note: in expansion of macro 'ST7920_CS_PIN' #define ST7920_NCS() {digitalWrite(ST7920_CS_PIN, 0);} ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:109:7: note: in expansion of macro 'ST7920_NCS' ST7920_NCS(); ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:33:25: error: 'LCD_PINS_RS' was not declared in this scope #define ST7920_CS_PIN LCD_PINS_RS ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:55:50: note: in expansion of macro 'ST7920_CS_PIN' #define ST7920_CS() {digitalWrite(ST7920_CS_PIN, 1);u8g_10MicroDelay();} ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:120:7: note: in expansion of macro 'ST7920_CS' ST7920_CS(); ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:33:25: error: 'LCD_PINS_RS' was not declared in this scope #define ST7920_CS_PIN LCD_PINS_RS ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:56:50: note: in expansion of macro 'ST7920_CS_PIN' #define ST7920_NCS() {digitalWrite(ST7920_CS_PIN, 0);} ^ sketch\module\lcd\ultralcd_st7920_u8glib_rrd.h:135:7: note: in expansion of macro 'ST7920_NCS' ST7920_NCS(); ^ exit status 1 Ошибка компиляции для платы Arduino Due (Programming Port).
Re: Compilation error Marlin May 23, 2016 04:53AM |
Admin Registered: 14 years ago Posts: 7,176 |
Re: Compilation error Marlin May 23, 2016 07:16AM |
Registered: 9 years ago Posts: 14 |
Re: Compilation error Marlin May 23, 2016 08:21AM |
Registered: 9 years ago Posts: 552 |
Re: Compilation error Marlin May 23, 2016 01:27PM |
Registered: 9 years ago Posts: 14 |
Re: Compilation error Marlin May 23, 2016 05:54PM |
Registered: 9 years ago Posts: 552 |
Re: Compilation error Marlin May 24, 2016 01:15AM |
Registered: 9 years ago Posts: 14 |
Re: Compilation error Marlin May 24, 2016 10:06AM |
Registered: 9 years ago Posts: 14 |