Skip to content

Commit bd88fa0

Browse files
author
Jarkko Paso
committed
WS Lib: Fixed byte order of fixed channel
1 parent 1f9162d commit bd88fa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/6LoWPAN/ws/ws_ie_lib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ uint8_t *ws_wp_nested_hopping_schedule_write(uint8_t *ptr,struct ws_hopping_sche
171171
switch (hopping_schedule->channel_function) {
172172
case 0:
173173
//Fixed channel inline
174-
ptr = common_write_16_bit(hopping_schedule->fixed_channel, ptr);
174+
ptr = common_write_16_bit_inverse(hopping_schedule->fixed_channel, ptr);
175175
break;
176176
case 1:
177177
case 2:

0 commit comments

Comments
 (0)