Lines Matching +full:0 +full:dbm

43       - 0
47 Selects Channel Page accordingly with IEEE 802.15.4 standard. The Page 0
48 is used in both Sub-Giga and 2.4GHz. It allows select channels 0-10 in
49 Sub-Giga band (0: BPSK-20, 1-10: BPSK-40) and 11-26 in 2.4GHz band
51 (0: OQPSK-SIN-RC-100, 1-10: OQPSK-SIN-250). Channel 5 is for Sub-Giga
52 (JAPAN) and selects (0-3: OQPSK-RC-250) .
53 0: Page 0 - BPSK-20 [0], BPSK-40 [1-10], O-QPSK-250 [11-26].
54 2: Page 2 - OQPSK-SIN-RC-100 [0], OQPSK-SIN-250 [1-10].
55 5: Page 5 - OQPSK-RC-250 [0-3].
59 default: [0x00]
62 local regulations. By default this value set an output power above 0dBm
66 2.4GHz is 0x0f and 0xff for Sub-Giga. See PHY_TX_PWR at datasheet for
77 tx-pwr-min = -17 dBm and tx-pwr-max = +4 dBm. Using 48 elements in the
80 tx-pwr-min = [01 11]; /* -17.0 dBm */
81 tx-pwr-max = [00 04]; /* 4.0 dBm */
83 07 07 07 08 08 09 09 0a
84 0a 0a 0b 0b 0b 0b 0c 0c
85 0c 0c 0d 0d 0d 0d 0d 0d
86 0d 0d 0e 0e 0e 0e 0e 0e
87 0e 0e 0e 0e 0e 0e 0f 0f];
90 using the linear step in dBm as:
92 linear_step = (4 - (-17)) / (48 - 1) => ~0.45 dBm
94 Assuming that user wants set 0 dBm as output power:
96 table_index = abs((0 - 4) / 0.45) => 8.95 ( round to 9 )
97 output_power = tx-pwr-table[9] => 0x07 ( 0 dBm as table 9-9 )
99 Note when tx-pwr-min is [0x00, 0x00] and tx-pwr-max is [0x00, 0x00]
101 first element of the tx-pwr-table array, which is 0x00 by default. This
103 sets the transceiver to use always a value above 0 dBm as output power.
107 default: [0x00, 0x00]
109 This value represent minimum normalized value in dBm for the transceiver
112 the signal indication [0x00-positive, 0x01-negative] and second element
113 is the minimal value in dBm for the transceiver output power. By default,
114 the combination of tx-pwr-min as [0x00, 0x00] and tx-pwr-max as [0x00,
115 0x00] will create a fixed transmission power.
119 default: [0x00, 0x00]
121 This value represent maximum normalized value in dBm for the transceiver
124 the signal indication [ 0x00-positive] and second element is the maximum
125 value in dBm for the transceiver output power. By default, the
126 combination of tx-pwr-max as [0x00, 0x00] and tx-pwr-min as [0x00,
127 0x00] will create a fixed transmission power.