fix printf pattern
This commit is contained in:
parent
3ab669578c
commit
a66a193f99
@ -111,7 +111,7 @@ void trickle_interval_over(void){
|
||||
while(1){
|
||||
thread_sleep();
|
||||
I = I*2;
|
||||
printf("TRICKLE new Interval %lu\n",I);
|
||||
printf("TRICKLE new Interval %u\n",I);
|
||||
if( I == 0 ){
|
||||
puts("[WARNING] Interval was 0");
|
||||
if( Imax == 0){
|
||||
|
||||
@ -191,7 +191,7 @@ void send_ieee802154_frame(ieee_802154_long_t *addr, uint8_t *payload,
|
||||
|
||||
p.data = buf;
|
||||
msg_send_receive(&mesg, &transceiver_rsp, transceiver_pid);
|
||||
printf("%s, %u: %lu\n", __FILE__, __LINE__, transceiver_rsp.content.value);
|
||||
printf("%s, %u: %u\n", __FILE__, __LINE__, transceiver_rsp.content.value);
|
||||
|
||||
hwtimer_wait(5000);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user