コード例 #1
0
ファイル: main.c プロジェクト: 1nfused/iaea-framework
int rp_app_exit(void)
{
    fprintf(stderr, "Unloading scope version %s-%s.\n", VERSION_STR, REVISION_STR);

    rp_osc_worker_exit();

    return 0;
}
コード例 #2
0
ファイル: main.c プロジェクト: MBDTF/RedPitayaOriginal
int rp_app_exit(void)
{
    fprintf(stderr, "Unloading scope (with gen+pid extensions) version %s-%s.\n", VERSION_STR, REVISION_STR);

    rp_osc_worker_exit();
    generate_exit();

    return 0;
}
コード例 #3
0
ファイル: main.c プロジェクト: 1nfused/RemoteAccess
int rp_app_exit(void)
{
    fprintf(stderr, "Unloading 1Ch scope + IST sensor Control version %s-%s.\n", VERSION_STR, REVISION_STR);

    Stop_ISTctrl(&rp_main_params[0]);
    rp_osc_worker_exit();
    generate_exit();

    return 0;
}
コード例 #4
0
ファイル: main_osc.c プロジェクト: alexrault/RedPitaya
/** @brief Cleans up oscilloscope application sub-modules and structures.
 * 
 * This function cleans up worker module.
 *
 * @retval 0 Always returns 0.
 */
int rp_app_exit(void)
{
    rp_osc_worker_exit();

    return 0;
}