Skip to content
Snippets Groups Projects
Client_API.c 120 KiB
Newer Older
Muhammad Fadhil Ginting's avatar
Muhammad Fadhil Ginting committed
3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsFopen(const uint8_t path[], const uint8_t mode[], uint32_t *id){
	FLR_RESULT returncode = CLIENT_pkgFileopsFopen(path, mode, id);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Fopen()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsFclose(const uint32_t id){
	FLR_RESULT returncode = CLIENT_pkgFileopsFclose(id);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Fclose()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsFread(const uint32_t id, const uint32_t length, uint8_t buf[], uint32_t *ret){
	FLR_RESULT returncode = CLIENT_pkgFileopsFread(id, length, buf, ret);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Fread()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsFwrite(const uint32_t id, const uint32_t length, const uint8_t buf[], uint32_t *ret){
	FLR_RESULT returncode = CLIENT_pkgFileopsFwrite(id, length, buf, ret);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Fwrite()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsFtell(const uint32_t id, uint32_t *offset){
	FLR_RESULT returncode = CLIENT_pkgFileopsFtell(id, offset);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Ftell()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsFseek(const uint32_t id, const uint32_t offset, const uint32_t origin){
	FLR_RESULT returncode = CLIENT_pkgFileopsFseek(id, offset, origin);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Fseek()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsFtruncate(const uint32_t id, const uint32_t length){
	FLR_RESULT returncode = CLIENT_pkgFileopsFtruncate(id, length);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Ftruncate()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsRmdir(const uint8_t path[]){
	FLR_RESULT returncode = CLIENT_pkgFileopsRmdir(path);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Rmdir()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsRm(const uint8_t path[]){
	FLR_RESULT returncode = CLIENT_pkgFileopsRm(path);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Rm()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsRename(const uint8_t oldpath[], const uint8_t newpath[]){
	FLR_RESULT returncode = CLIENT_pkgFileopsRename(oldpath, newpath);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Rename()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT fileOpsGetFileSize(const uint8_t path[], uint32_t *fileLength){
	FLR_RESULT returncode = CLIENT_pkgFileopsGetFileSize(path, fileLength);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetFileSize()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT jffs2Mount(){
	FLR_RESULT returncode = CLIENT_pkgJffs2Mount();
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Mount()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT jffs2Unmount(){
	FLR_RESULT returncode = CLIENT_pkgJffs2Unmount();
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of Unmount()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT jffs2GetState(FLR_JFFS2_STATE_E *state){
	FLR_RESULT returncode = CLIENT_pkgJffs2GetState(state);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetState()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT splashScreenSetDuration(const uint32_t screen_num, const uint32_t periodMs){
	FLR_RESULT returncode = CLIENT_pkgSplashscreenSetDuration(screen_num, periodMs);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetDuration()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT splashScreenSetDataType(const uint32_t screen_num, const FLR_SPLASHSCREEN_FILETYPE_E filetype){
	FLR_RESULT returncode = CLIENT_pkgSplashscreenSetDataType(screen_num, filetype);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetDataType()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT splashScreenSetBackground(const uint32_t screen_num, const uint32_t backgroundColor){
	FLR_RESULT returncode = CLIENT_pkgSplashscreenSetBackground(screen_num, backgroundColor);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetBackground()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT splashScreenGetDuration(const uint32_t screen_num, uint32_t *periodMs){
	FLR_RESULT returncode = CLIENT_pkgSplashscreenGetDuration(screen_num, periodMs);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetDuration()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT splashScreenGetDataType(const uint32_t screen_num, FLR_SPLASHSCREEN_FILETYPE_E *filetype){
	FLR_RESULT returncode = CLIENT_pkgSplashscreenGetDataType(screen_num, filetype);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetDataType()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT splashScreenGetBackground(const uint32_t screen_num, uint32_t *backgroundColor){
	FLR_RESULT returncode = CLIENT_pkgSplashscreenGetBackground(screen_num, backgroundColor);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetBackground()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT systemSymbolsGetID(const FLR_SYSTEMSYMBOLS_SYMBOL_E symbol, uint8_t *id, FLR_SYSTEMSYMBOLS_ID_TYPE_E *id_type){
	FLR_RESULT returncode = CLIENT_pkgSystemsymbolsGetID(symbol, id, id_type);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetID()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT systemSymbolsSetID(const FLR_SYSTEMSYMBOLS_SYMBOL_E symbol, const uint8_t id, const FLR_SYSTEMSYMBOLS_ID_TYPE_E id_type){
	FLR_RESULT returncode = CLIENT_pkgSystemsymbolsSetID(symbol, id, id_type);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetID()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT systemSymbolsGetEnable(const FLR_SYSTEMSYMBOLS_SYMBOL_E symbol, FLR_ENABLE_E *enabled){
	FLR_RESULT returncode = CLIENT_pkgSystemsymbolsGetEnable(symbol, enabled);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetEnable()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT systemSymbolsSetEnable(const FLR_SYSTEMSYMBOLS_SYMBOL_E symbol, const FLR_ENABLE_E enabled){
	FLR_RESULT returncode = CLIENT_pkgSystemsymbolsSetEnable(symbol, enabled);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetEnable()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcGetScaleFactor(float *data){
	FLR_RESULT returncode = CLIENT_pkgSffcGetScaleFactor(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetScaleFactor()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcGetDeltaTempLinearCoeff(float *data){
	FLR_RESULT returncode = CLIENT_pkgSffcGetDeltaTempLinearCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetDeltaTempLinearCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcSetDeltaTempLinearCoeff(const float data){
	FLR_RESULT returncode = CLIENT_pkgSffcSetDeltaTempLinearCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetDeltaTempLinearCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcGetDeltaTempOffsetCoeff(float *data){
	FLR_RESULT returncode = CLIENT_pkgSffcGetDeltaTempOffsetCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetDeltaTempOffsetCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcSetDeltaTempOffsetCoeff(const float data){
	FLR_RESULT returncode = CLIENT_pkgSffcSetDeltaTempOffsetCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetDeltaTempOffsetCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcGetFpaTempLinearCoeff(float *data){
	FLR_RESULT returncode = CLIENT_pkgSffcGetFpaTempLinearCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetFpaTempLinearCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcSetFpaTempLinearCoeff(const float data){
	FLR_RESULT returncode = CLIENT_pkgSffcSetFpaTempLinearCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetFpaTempLinearCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcGetFpaTempOffsetCoeff(float *data){
	FLR_RESULT returncode = CLIENT_pkgSffcGetFpaTempOffsetCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetFpaTempOffsetCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcSetFpaTempOffsetCoeff(const float data){
	FLR_RESULT returncode = CLIENT_pkgSffcSetFpaTempOffsetCoeff(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetFpaTempOffsetCoeff()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcGetDeltaTempTimeLimitInSecs(uint32_t *data){
	FLR_RESULT returncode = CLIENT_pkgSffcGetDeltaTempTimeLimitInSecs(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetDeltaTempTimeLimitInSecs()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT sffcSetDeltaTempTimeLimitInSecs(const uint32_t data){
	FLR_RESULT returncode = CLIENT_pkgSffcSetDeltaTempTimeLimitInSecs(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetDeltaTempTimeLimitInSecs()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetTotalHistPixelsInROI(uint32_t *totalPixelsInROI){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetTotalHistPixelsInROI(totalPixelsInROI);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetTotalHistPixelsInROI()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetPopBelowLowToHighThresh(uint32_t *popBelowLowToHighThresh){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetPopBelowLowToHighThresh(popBelowLowToHighThresh);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetPopBelowLowToHighThresh()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetPopAboveHighToLowThresh(uint32_t *popAboveHighToLowThresh){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetPopAboveHighToLowThresh(popAboveHighToLowThresh);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetPopAboveHighToLowThresh()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsSetROI(const FLR_ROI_T roi){
	FLR_RESULT returncode = CLIENT_pkgImagestatsSetROI(roi);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetROI()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetROI(FLR_ROI_T *roi){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetROI(roi);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetROI()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetFirstBin(uint16_t *firstBin){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetFirstBin(firstBin);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetFirstBin()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetLastBin(uint16_t *lastBin){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetLastBin(lastBin);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetLastBin()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetMean(uint16_t *mean){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetMean(mean);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetMean()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetFirstBinInROI(uint16_t *firstBinInROI){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetFirstBinInROI(firstBinInROI);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetFirstBinInROI()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetLastBinInROI(uint16_t *lastBinInROI){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetLastBinInROI(lastBinInROI);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetLastBinInROI()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT imageStatsGetMeanInROI(uint16_t *meanInROI){
	FLR_RESULT returncode = CLIENT_pkgImagestatsGetMeanInROI(meanInROI);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetMeanInROI()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrSetEnableState(const FLR_ENABLE_E data){
	FLR_RESULT returncode = CLIENT_pkgSrnrSetEnableState(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetEnableState()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrGetEnableState(FLR_ENABLE_E *data){
	FLR_RESULT returncode = CLIENT_pkgSrnrGetEnableState(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetEnableState()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrSetThRowSum(const uint16_t data){
	FLR_RESULT returncode = CLIENT_pkgSrnrSetThRowSum(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetThRowSum()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrGetThRowSum(uint16_t *data){
	FLR_RESULT returncode = CLIENT_pkgSrnrGetThRowSum(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetThRowSum()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrSetThPixel(const uint16_t data){
	FLR_RESULT returncode = CLIENT_pkgSrnrSetThPixel(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetThPixel()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrGetThPixel(uint16_t *data){
	FLR_RESULT returncode = CLIENT_pkgSrnrGetThPixel(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetThPixel()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrSetMaxCorr(const uint16_t data){
	FLR_RESULT returncode = CLIENT_pkgSrnrSetMaxCorr(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of SetMaxCorr()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrGetMaxCorr(uint16_t *data){
	FLR_RESULT returncode = CLIENT_pkgSrnrGetMaxCorr(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetMaxCorr()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrGetThPixelApplied(uint16_t *data){
	FLR_RESULT returncode = CLIENT_pkgSrnrGetThPixelApplied(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetThPixelApplied()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT srnrGetMaxCorrApplied(uint16_t *data){
	FLR_RESULT returncode = CLIENT_pkgSrnrGetMaxCorrApplied(data);
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of GetMaxCorrApplied()

// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT dummyBadCommand(){
	FLR_RESULT returncode = CLIENT_pkgDummyBadCommand();
	// Check for any errorcode
	if((uint32_t) returncode){
		return returncode;
	}
	return R_SUCCESS;
} // End of BadCommand()