Skip to content

Commit

Permalink
Merge pull request #485 from tyler-potyondy/dev/15.4-set-short-addr
Browse files Browse the repository at this point in the history
15.4 Set Address Syscall Fix
  • Loading branch information
alevy authored Jan 3, 2025
2 parents 8205794 + e8e0964 commit cc06bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libtock/net/syscalls/ieee802154_syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ returncode_t libtock_ieee802154_command_status(void) {
}

returncode_t libtock_ieee802154_command_set_address_short(uint16_t addr_short) {
syscall_return_t com = command(DRIVER_NUM_IEEE802154, COMMAND_STATUS, addr_short, 0);
syscall_return_t com = command(DRIVER_NUM_IEEE802154, COMMAND_SET_ADDR_SHORT, addr_short, 0);
return tock_command_return_novalue_to_returncode(com);
}

Expand Down

0 comments on commit cc06bc6

Please sign in to comment.