Hello,
I have used the standard API library along wiht other source and header files from theGUI. I've tested out the commands for turning off LEDs or changing patterns and everything works great.
I am having issues getting the patterndisplay mode to work properly. I've used the following code:
LCR_SetMode(TRUE);
LCR_LoadSplash(1);
LCR_AddToPatLut(0, 1, 8, 1, false, false, false, true);
LCR_SetPatternConfig(1, 1, 50, 1);
LCR_SetExposure_FramePeriod(10000, 10000);
LCR_SetPatternTriggerMode(0); //change to 1 if it doesn't work
LCR_SendPatLut(void);
LCR_SendSplashLut(); <----- ISSUE HERE
LCR_ValidatePatLutData(); <----- ISSUE HERE
The issue I encounter is SendSplashLut requires two entries..... (unsigned char *lutEntries, unsigned int numEntries).
The pointer is causing issues! What do I substitute for *lutEntries?
Thanks for your help!
-Evan