| ||||||||||||||||
useoqpsk = 1, | Using OQPSK-250 modulation with raised cosine filtering with roll-off factor 0.8 (RC-0.8) for pulse shaping and scrambler enabled. These values can be combined with the reset value of register RG_TRX_CTRL_2 into the variable phymode = 0x3c.
| |||||||||||||||
gctxoffset = 2 | Offset value for the TX output power. For more details refer to table 7-16 (Mode-dependent setting of GC_TX_OFFS) in the AT86RF212 datasheet.
| |||||||||||||||
| ||||||||||||||||
txpower = {indexvalue} | The value for the register RG_PHY_TX_PWR retrieved from table 7-15 (Recommended Mapping of TX Power, Frequency Band, and PHY_TX_PWR) in the AT86RF212 datasheet.
| |||||||||||||||
| ||||||||||||||||
ccband = 1 | The RF channel band 1 allows to adjust the center frequencies from 769.0 up to 794.5 MHz according to . | |||||||||||||||
ccnumber = {110,130,150,170} | Configuration of center frequencies for CWPAN channels defined on IEEE channel page 5.
| |||||||||||||||
Use Cases:
/* AT86RF212::TRX_OFF */ pm = trx_reg_read(RG_TRX_CTRL_2); pm = pm & 0xc0; pm = pm | phymode; trx_reg_write(RG_TRX_CTRL_2, pm); trx_bit_write(SR_GC_TX_OFFS, gctxoffset); trx_reg_write(RG_PHY_TX_PWR, txpower); trx_bit_write(SR_CC_BAND, ccband); trx_bit_write(SR_CC_NUMBER, ccnumber);
1.5.6