CAT_cw_is_active=1;
if (!mox) {
// activate PTT
- g_idle_add(ext_mox_update ,(gpointer)1);
+ g_idle_add(ext_mox_update ,GINT_TO_POINTER(1));
// have to wait until it is really there
// Note that if out-of-band, we would wait
// forever here, so allow at most 200 msec
// If a CW key has been hit, we continue in TX mode.
// Otherwise, switch PTT off.
if (!cw_key_hit && mox) {
- g_idle_add(ext_mox_update ,(gpointer)0);
+ g_idle_add(ext_mox_update ,GINT_TO_POINTER(0));
}
// Let the CAT system swallow incoming CW commands by setting cw_busy to -1.
// Do so until no CAT CW message has arrived for 1 second
if (cw_busy || num_buf > 0) continue;
CAT_cw_is_active=0;
if (!cw_key_hit) {
- g_idle_add(ext_mox_update ,(gpointer)0);
+ g_idle_add(ext_mox_update ,GINT_TO_POINTER(0));
// wait up to 500 msec for MOX having gone
// otherwise there might be a race condition when sending
// the next character really soon
cw_busy=0;
if (CAT_cw_is_active) {
CAT_cw_is_active=0;
- g_idle_add(ext_mox_update ,(gpointer)0);
+ g_idle_add(ext_mox_update ,GINT_TO_POINTER(0));
}
return NULL;
}
send_resp(client->fd,reply) ;
} else if(command[5]==';') {
int val=atoi(&command[4]);
- ext_set_split((gpointer) val);
+ ext_set_split(GINT_TO_POINTER(val));
}
break;
case 'R': //ZZSR
send_resp(client->fd,reply) ;
} else if(command[5]==';') {
int val=atoi(&command[4]);
- ext_set_split((gpointer) val);
+ ext_set_split(GINT_TO_POINTER(val));
}
break;
case 'Y': //ZZSY
send_resp(client->fd,reply) ;
} else if(command[3]==';') {
int val=atoi(&command[2]);
- ext_set_split((gpointer) val);
+ ext_set_split(GINT_TO_POINTER(val));
}
break;
case 'W': //FW
g_mutex_init(&mutex_busy->m);
// This routine encapsulates the thread call
- rigctl_server_thread_id = g_thread_new( "rigctl server", rigctl_server, (gpointer)(long)rigctl_port_base);
+ rigctl_server_thread_id = g_thread_new( "rigctl server", rigctl_server, GINT_TO_POINTER(rigctl_port_base));
if( ! rigctl_server_thread_id )
{
g_print("g_thread_new failed on rigctl_server\n");