Skip to content

Commit

Permalink
WS Lib: Fixed byte order of fixed channel
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarkko Paso committed May 14, 2018
1 parent 1f9162d commit bd88fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/6LoWPAN/ws/ws_ie_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ uint8_t *ws_wp_nested_hopping_schedule_write(uint8_t *ptr,struct ws_hopping_sche
switch (hopping_schedule->channel_function) {
case 0:
//Fixed channel inline
ptr = common_write_16_bit(hopping_schedule->fixed_channel, ptr);
ptr = common_write_16_bit_inverse(hopping_schedule->fixed_channel, ptr);
break;
case 1:
case 2:
Expand Down

0 comments on commit bd88fa0

Please sign in to comment.