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