mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Removed clock stuff from main file.
This commit is contained in:
parent
b23f4fc89d
commit
bc46e8a49e
@ -30,26 +30,15 @@
|
|||||||
*
|
*
|
||||||
* Author: Oliver Schmidt <ol.sc@web.de>
|
* Author: Oliver Schmidt <ol.sc@web.de>
|
||||||
*
|
*
|
||||||
* $Id: contiki-main.c,v 1.1 2007/01/03 10:29:17 oliverschmidt Exp $
|
* $Id: contiki-main.c,v 1.2 2007/05/29 22:02:37 oliverschmidt Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "contiki.h"
|
|
||||||
#include "contiki-net.h"
|
#include "contiki-net.h"
|
||||||
|
|
||||||
#include "sys/clock.h"
|
|
||||||
#include "sys/etimer.h"
|
|
||||||
|
|
||||||
PROCINIT(&etimer_process,
|
PROCINIT(&etimer_process,
|
||||||
&tcpip_process,
|
&tcpip_process);
|
||||||
&resolv_process);
|
|
||||||
|
|
||||||
#if CTK_CONF_MOUSE_SUPPORT
|
|
||||||
#define TICK_COUNT 2800
|
|
||||||
#else
|
|
||||||
#define TICK_COUNT 4200
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
@ -64,22 +53,6 @@ log_message(const char *part1, const char *part2)
|
|||||||
fprintf(stderr, "%s%s\n", part1, part2);
|
fprintf(stderr, "%s%s\n", part1, part2);
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
clock_time_t
|
|
||||||
clock_time(void)
|
|
||||||
{
|
|
||||||
static clock_time_t count, clock;
|
|
||||||
|
|
||||||
// count += tick;
|
|
||||||
count += 1;
|
|
||||||
|
|
||||||
if(count == TICK_COUNT) {
|
|
||||||
count = 0;
|
|
||||||
++clock;
|
|
||||||
}
|
|
||||||
|
|
||||||
return clock;
|
|
||||||
}
|
|
||||||
/*-----------------------------------------------------------------------------------*/
|
|
||||||
void
|
void
|
||||||
main(void)
|
main(void)
|
||||||
{
|
{
|
||||||
@ -92,7 +65,7 @@ main(void)
|
|||||||
#if 1
|
#if 1
|
||||||
{
|
{
|
||||||
uip_ipaddr_t addr;
|
uip_ipaddr_t addr;
|
||||||
uip_ipaddr(&addr, 192,168,0,222);
|
uip_ipaddr(&addr, 192,168,0,128);
|
||||||
uip_sethostaddr(&addr);
|
uip_sethostaddr(&addr);
|
||||||
|
|
||||||
uip_ipaddr(&addr, 255,255,255,0);
|
uip_ipaddr(&addr, 255,255,255,0);
|
||||||
|
Loading…
Reference in New Issue
Block a user