mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-08 08:05:26 +00:00
Added percentage output in netsim
This commit is contained in:
parent
7581aa5916
commit
d7982e41c9
@ -28,7 +28,7 @@
|
|||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: test-rudolph1.c,v 1.4 2007/04/02 10:04:37 adamdunkels Exp $
|
* $Id: test-rudolph1.c,v 1.5 2007/04/02 17:51:54 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#define FILESIZE 200
|
#define FILESIZE 2000
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
PROCESS(test_rudolph1_process, "Rudolph1 test");
|
PROCESS(test_rudolph1_process, "Rudolph1 test");
|
||||||
@ -60,6 +60,13 @@ write_chunk(struct rudolph1_conn *c, int offset, int flag,
|
|||||||
char *data, int datalen)
|
char *data, int datalen)
|
||||||
{
|
{
|
||||||
int fd;
|
int fd;
|
||||||
|
#if NETSIM
|
||||||
|
{
|
||||||
|
char buf[100];
|
||||||
|
sprintf(buf, "%d%%", (100 * (offset + datalen)) / FILESIZE);
|
||||||
|
ether_set_text(buf);
|
||||||
|
}
|
||||||
|
#endif /* NETSIM */
|
||||||
|
|
||||||
if(flag == RUDOLPH1_FLAG_NEWFILE) {
|
if(flag == RUDOLPH1_FLAG_NEWFILE) {
|
||||||
/*printf("+++ rudolph1 new file incoming at %lu\n", clock_time());*/
|
/*printf("+++ rudolph1 new file incoming at %lu\n", clock_time());*/
|
||||||
@ -145,7 +152,10 @@ PROCESS_THREAD(test_rudolph1_process, ev, data)
|
|||||||
}
|
}
|
||||||
cfs_close(fd);
|
cfs_close(fd);
|
||||||
}
|
}
|
||||||
rudolph1_send(&rudolph1, CLOCK_SECOND / 2);
|
rudolph1_send(&rudolph1, CLOCK_SECOND * 2);
|
||||||
|
#if NETSIM
|
||||||
|
ether_send_done();
|
||||||
|
#endif /* NETSIM */
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -162,7 +172,7 @@ PROCESS_THREAD(test_rudolph1_process, ev, data)
|
|||||||
}
|
}
|
||||||
cfs_close(fd);
|
cfs_close(fd);
|
||||||
}
|
}
|
||||||
rudolph1_send(&rudolph1, CLOCK_SECOND / 2);
|
rudolph1_send(&rudolph1, CLOCK_SECOND * 2);
|
||||||
|
|
||||||
PROCESS_WAIT_EVENT_UNTIL(ev == sensors_event &&
|
PROCESS_WAIT_EVENT_UNTIL(ev == sensors_event &&
|
||||||
data == &button_sensor);
|
data == &button_sensor);
|
||||||
|
Loading…
Reference in New Issue
Block a user