Hi Elliot, if you are running a shell example such as gnrc_networking you can use the following command:
ifconfig 7 set power -3 where 7 is the interface ID and -3 is the power (in dBm). If you want to set this in your application code you could use the netapi, e.g.: uint8_t power = 100; ret = gnrc_netapi_set(ifs[0], NETOPT_TX_POWER, 0, &power, sizeof(power)); Cheers Peter Am 01.02.2018 um 00:18 schrieb Eliot CHAUVINEAU: > Hello, > > I am trying to do multi-hop routing with the Fit Iot Lab testbed,using the > m3 nodes. However, the nodes are very close and they can communicate > directly. Do you know if there is a way to change the transmission power > of the AT86RF231 module ? I have looked in the boards/iotlab-m3 folder, > and in the drivers/at86rf2xx folder, but I don't know exactly what to > change. > > Thank you, > > Eliot > > _______________________________________________ > users mailing list > [email protected] > https://lists.riot-os.org/mailman/listinfo/users > -- Peter Kietzmann Hamburg University of Applied Sciences Dept. Informatik, Internet Technologies Group Berliner Tor 7, 20099 Hamburg, Germany Fon: +49-40-42875-8426 Web: http://www.haw-hamburg.de/inet _______________________________________________ users mailing list [email protected] https://lists.riot-os.org/mailman/listinfo/users
