> I would like to know how to change the output RF power to the maximum for > Mica2 motes at 433 Mhz and at 918Mhz. > I have seen that the default RF power value is 0x0F (0dBm at 433, -6dBm at > 916). I have seen in the CC1000 datasheet that the maximum output power is > FF. How many dbm correspond to 433Mhz and to 916Mhz? 10 and 5 dBm, respectively. By the way, that's also in the datasheet. It's on page 32.
> I would like to know how to change the output RF power to the maximum value. > Shall I do something like that? > call RadioStrengthControl.setRFPower(FF); You'll need to use 0xFF, otherwise the compiler would complain. > or > call RadioStrengthControl.setRFPower(255); This is correct. Janos _______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
