コード例 #1
0
ファイル: target.c プロジェクト: 4712/cleanflight
static void* tcpThread(void* data) {
    UNUSED(data);

    dyad_init();
    dyad_setTickInterval(0.2f);
    dyad_setUpdateTimeout(0.5f);

    while (workerRunning) {
        dyad_update();
    }

    dyad_shutdown();
    printf("tcpThread end!!\n");
    return NULL;
}
コード例 #2
0
ファイル: dyad.hpp プロジェクト: cia48621793/dyad
		static void setTickInterval(double seconds) {
			dyad_setTickInterval(seconds);
		}