From 717d68c217dd44b594af7c65285c57b2597992ac Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Tue, 9 Nov 2021 10:08:57 +0100 Subject: [PATCH] bug fix, not returning --- slsDetectorServers/slsDetectorServer/src/programViaBlackfin.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/slsDetectorServers/slsDetectorServer/src/programViaBlackfin.c b/slsDetectorServers/slsDetectorServer/src/programViaBlackfin.c index f4009b674..34af8413d 100644 --- a/slsDetectorServers/slsDetectorServer/src/programViaBlackfin.c +++ b/slsDetectorServers/slsDetectorServer/src/programViaBlackfin.c @@ -164,6 +164,7 @@ int FPGAdontTouchFlash(char *mess) { LOG(logINFO, ("\tgpio3: fpga dont touch flash\n")); } // usleep(100*1000); + return OK; } int FPGATouchFlash(char *mess) { @@ -189,6 +190,7 @@ int FPGATouchFlash(char *mess) { } LOG(logINFO, ("\tgpio3: setting input\n")); } + return OK; } int resetFPGA(char *mess) { @@ -203,6 +205,7 @@ int resetFPGA(char *mess) { return FAIL; } usleep(CTRL_SRVR_INIT_TIME_US); + return OK; } int emptyTempFolder(char *mess) {