debug response beacon

set mrf mode to pan coordinator
This commit is contained in:
Sebastien Lorquet 2015-08-10 17:24:22 +02:00
parent 0ed2a4491f
commit 329c680d60

View File

@ -157,6 +157,7 @@ static int coord_command_beacon_req(FAR struct ieee_coord_s *coord)
FAR struct ieee_frame_s *rx = &coord->rxbuf;
FAR struct ieee802154_packet_s *tx = &coord->txbuf.packet;
FAR struct ieee802154_addr_s dest;
int i;
printf("Beacon request\n");
@ -196,6 +197,9 @@ static int coord_command_beacon_req(FAR struct ieee_coord_s *coord)
tx->data[tx->len++] = '/';
tx->data[tx->len++] = '0';
printf("Beacon: ");
for(i=0;i<tx->len;i++) printf("%02X", tx->data[i]);
printf("\n");
return write(coord->fd, tx, sizeof(struct ieee802154_packet_s));
}
@ -334,6 +338,7 @@ int coord_task(int s_argc, char **s_argv)
ieee802154_setchan (g_coord.fd , g_coord.chan );
ieee802154_setsaddr(g_coord.fd , g_coord.addr.ia_saddr);
ieee802154_setpanid(g_coord.fd , g_coord.addr.ia_panid);
ieee802154_setdevmode(g_coord.fd, IEEE802154_MODE_PANCOORD);
if(g_coord.fd<0)
{