Hello,
 
	I am trying to interface my LB060X01-RD01 eink display with an STM32L152 processor and was successfully able to use the existing driver for ED060SC4 to display content on the display. Here, I am able to successfully displays strings and other graphics on the display, however I am facing issues on using the function: gdispFillArea(); 
	This function works for smaller values of cx and cy, however when large values are used like cx=100 and cy=100, the program resets. 
	For example:
 
	gdispFillArea(6, 64, 50 , 100, 1); will successfully fill the area of the eink display with white. 
	But, gdispFillArea(6, 64, 60 , 100, 1); will result in the program resetting itself.
 
	In brief, whenever the values of cx and cy are higher than a particular limit, the program resets. What maybe causing this, or how can I find a solution? Thank you.