Return the error code from grbl_init()

pull/1866/head
Daniele Forsi IU5HKX 2025-08-23 20:38:56 +02:00
rodzic 5acd75fecc
commit 7fdbc99911
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -448,11 +448,11 @@ grbltrk_rot_set_conf(ROT *rot, hamlib_token_t token, const char *val)
static int
grbltrk_rot_open(ROT *rot)
{
int r = RIG_OK;
int r;
rot_debug(RIG_DEBUG_TRACE, "%s:%d\n", __func__, __LINE__);
grbl_init(rot);
r = grbl_init(rot);
return r;
}