Skip to content

Commit

Permalink
axis_test.c is updated
Browse files Browse the repository at this point in the history
  • Loading branch information
shtaxxx committed Mar 11, 2016
1 parent 6c1ef75 commit 858a600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sample/axis_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ int main(int argc, char** argv)

unsigned int value = atoi(argv[1]);

axis_write_4b(2, 0, value);
axis_write_4b(0, 0, value);
printf("write: %d\n", value);

axis_read_4b(2, 8, &value);
axis_read_4b(0, 8, &value);
printf("read: %d\n", value);

axis_close();
Expand Down

0 comments on commit 858a600

Please sign in to comment.