Lines Matching full:channel
65 uint8_t channel;
69 void set_proto(uint16_t handle, uint16_t psm, uint8_t channel, uint32_t proto)
73 if (psm > 0 && psm < 0x1000 && !channel)
76 if (!psm && channel)
80 if (proto_table[i].handle == handle && proto_table[i].psm == psm && proto_table[i].channel == channel) {
85 if (pos < 0 && !proto_table[i].handle && !proto_table[i].psm && !proto_table[i].channel)
94 proto_table[pos].channel = channel;
98 uint32_t get_proto(uint16_t handle, uint16_t psm, uint8_t channel)
102 if (!psm && channel)
106 if (proto_table[i].handle == handle && proto_table[i].psm == psm && proto_table[i].channel == channel)
110 if (proto_table[i].psm == psm && proto_table[i].channel == channel)
197 fr->channel = frm->channel;