Skip to content

Commit

Permalink
[15.4] Set Address Syscall Fix
Browse files Browse the repository at this point in the history
set short address syscall command number was mistakenly copied during
the libtock-sync rewrite
  • Loading branch information
tyler-potyondy committed Jan 3, 2025
1 parent 8205794 commit e8e0964
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 e8e0964

Please sign in to comment.