Lines Matching refs:carrier
38 uint32_t carrier;
272 * The iguanair creates the carrier by busy spinning after each half period.
277 static int iguanair_set_tx_carrier(struct rc_dev *dev, uint32_t carrier)
281 if (carrier < 25000 || carrier > 150000)
284 if (carrier != ir->carrier) {
287 ir->carrier = carrier;
289 cycles = DIV_ROUND_CLOSEST(24000000, carrier * 2) -
333 /* convert from us to carrier periods */
335 periods = DIV_ROUND_CLOSEST(txbuf[i] * ir->carrier, 1000000);