2016-04-02 09:03:03 +02:00
|
|
|
#include "cw.h"
|
|
|
|
|
2018-03-17 17:29:09 +01:00
|
|
|
/*
|
2016-04-12 09:02:55 +02:00
|
|
|
int xcw_put_elem_radio_administrative_state(uint8_t *dst,int radio_id,mbag_t radio)
|
2016-04-02 09:03:03 +02:00
|
|
|
{
|
|
|
|
cw_put_byte(dst+4,radio_id);
|
|
|
|
cw_put_byte(dst+5,mbag_get_byte(radio,CW_RADIOITEM_ADMIN_STATE,CW_RADIO_ADMIN_STATE_DISABLED));
|
|
|
|
return 2 + cw_put_elem_hdr(dst,CW_ELEM_RADIO_ADMINISTRATIVE_STATE,2);
|
|
|
|
}
|
2018-03-17 17:29:09 +01:00
|
|
|
*/
|
2016-04-02 09:03:03 +02:00
|
|
|
|