EpdV230.rar not working on ATmega2560

Using seeedstudio.com/wiki/Small_e-Paper_Shield as my barcode is “V EG020BS011 006 4B5 0490”

[code]Arduino: 1.6.4 (Windows 7), Board: “Arduino Mega or Mega 2560, ATmega2560 (Mega 2560)”

In file included from epdV230_text.ino:24:0:
Documents\AeroFS\Development\Arduino\libraries\epdV230/ePaper.h: In function ‘void sd_read(long int, uint8_t*, uint8_t)’:
Documents\AeroFS\Development\Arduino\libraries\epdV230/ePaper.h:141:6: error: ‘class sd_epaper’ has no member named ‘getLine’
eSD.getLine(line_address, (uint8_t *)data, byte_length);
^
Error compiling.
[/code]

There’s code in sd_epaper.h for getLine but it’s all in define blocks, there’s no getLine for my chip.

/*********************************************************************************************************
** Function name:           getLine
** Descriptions:            getLine
*********************************************************************************************************/
#if defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega328P__)
unsigned char sd_epaper::getLine(long line_address, uint8_t *dta, uint8_t byte_length)
{
	//spi_on();
	new_image.seek(line_address);
	new_image.read(dta, byte_length);
}
#endif

So, I’ve been at this all night

Finally found a combination of board & software that works

EpdV230.rar + frearduino leonardo. == WORKS

Small_ePaper_Shield + frearduino leonardo. == no go
Both combinations + Funduino Mega 2560 == no go (can’t even compile EpdV230.rar
Both combinations + NANO DCCduino (Atmega328) == no go (eSD.begin() never returns)

Perhaps the devs for the EpdV230 library would like to catch up? I’ll gladly burn a few images and test for them

Found and commented out the offending its of code in the EpdV230 source, doesn’t display anything on an ATmega2560.