Copied 'contiki_arg[c|v]' from 'native' to the other desktop targets.
- On the retro targets support for 'contiki_arg[c|v]' is optional as accesing arg[c|v] is rather expensive.
This commit is contained in:
parent
510678bed0
commit
fc983e2e79
@ -69,6 +69,10 @@ high-level configuration macros may be set:
|
|||||||
- Default: 0
|
- Default: 0
|
||||||
- Purpose: Enable CTK mouse support and load a mouse driver.
|
- Purpose: Enable CTK mouse support and load a mouse driver.
|
||||||
|
|
||||||
|
- WITH_ARGS
|
||||||
|
- Default: 0
|
||||||
|
- Purpose: Enable support for contiki_argc / contiki_argv.
|
||||||
|
|
||||||
- WITH_PFS
|
- WITH_PFS
|
||||||
- Default: 0
|
- Default: 0
|
||||||
- Purpose: Implement the CFS interface with a Platform-specific File System
|
- Purpose: Implement the CFS interface with a Platform-specific File System
|
||||||
|
@ -55,13 +55,29 @@ PROCINIT(&etimer_process,
|
|||||||
&tcpip_process
|
&tcpip_process
|
||||||
RESOLV_PROCESS);
|
RESOLV_PROCESS);
|
||||||
|
|
||||||
|
static struct ethernet_config *ethernet_config;
|
||||||
|
|
||||||
void clock_update(void);
|
void clock_update(void);
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
|
#if WITH_ARGS
|
||||||
|
|
||||||
|
int contiki_argc;
|
||||||
|
char **contiki_argv;
|
||||||
|
|
||||||
|
void
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
contiki_argc = argc;
|
||||||
|
contiki_argv = argv;
|
||||||
|
|
||||||
|
#else /* WITH_ARGS */
|
||||||
|
|
||||||
void
|
void
|
||||||
main(void)
|
main(void)
|
||||||
{
|
{
|
||||||
struct ethernet_config *ethernet_config;
|
|
||||||
|
#endif /* WITH_ARGS */
|
||||||
|
|
||||||
#if WITH_REBOOT
|
#if WITH_REBOOT
|
||||||
rebootafterexit();
|
rebootafterexit();
|
||||||
|
@ -55,11 +55,27 @@ PROCINIT(&etimer_process,
|
|||||||
&tcpip_process
|
&tcpip_process
|
||||||
RESOLV_PROCESS);
|
RESOLV_PROCESS);
|
||||||
|
|
||||||
|
static struct ethernet_config *ethernet_config;
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
|
#if WITH_ARGS
|
||||||
|
|
||||||
|
int contiki_argc;
|
||||||
|
char **contiki_argv;
|
||||||
|
|
||||||
|
void
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
contiki_argc = argc;
|
||||||
|
contiki_argv = argv;
|
||||||
|
|
||||||
|
#else /* WITH_ARGS */
|
||||||
|
|
||||||
void
|
void
|
||||||
main(void)
|
main(void)
|
||||||
{
|
{
|
||||||
struct ethernet_config *ethernet_config;
|
|
||||||
|
#endif /* WITH_ARGS */
|
||||||
|
|
||||||
clrscr();
|
clrscr();
|
||||||
bordercolor(BORDERCOLOR);
|
bordercolor(BORDERCOLOR);
|
||||||
|
@ -57,11 +57,27 @@ PROCINIT(&etimer_process,
|
|||||||
&tcpip_process
|
&tcpip_process
|
||||||
RESOLV_PROCESS);
|
RESOLV_PROCESS);
|
||||||
|
|
||||||
|
static struct ethernet_config *ethernet_config;
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
|
#if WITH_ARGS
|
||||||
|
|
||||||
|
int contiki_argc;
|
||||||
|
char **contiki_argv;
|
||||||
|
|
||||||
|
void
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
contiki_argc = argc;
|
||||||
|
contiki_argv = argv;
|
||||||
|
|
||||||
|
#else /* WITH_ARGS */
|
||||||
|
|
||||||
void
|
void
|
||||||
main(void)
|
main(void)
|
||||||
{
|
{
|
||||||
struct ethernet_config *ethernet_config;
|
|
||||||
|
#endif /* WITH_ARGS */
|
||||||
|
|
||||||
videomode(VIDEOMODE_80COL);
|
videomode(VIDEOMODE_80COL);
|
||||||
|
|
||||||
|
@ -57,11 +57,27 @@ PROCINIT(&etimer_process,
|
|||||||
&tcpip_process
|
&tcpip_process
|
||||||
RESOLV_PROCESS);
|
RESOLV_PROCESS);
|
||||||
|
|
||||||
|
static struct ethernet_config *ethernet_config;
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
|
#if WITH_ARGS
|
||||||
|
|
||||||
|
int contiki_argc;
|
||||||
|
char **contiki_argv;
|
||||||
|
|
||||||
|
void
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
contiki_argc = argc;
|
||||||
|
contiki_argv = argv;
|
||||||
|
|
||||||
|
#else /* WITH_ARGS */
|
||||||
|
|
||||||
void
|
void
|
||||||
main(void)
|
main(void)
|
||||||
{
|
{
|
||||||
struct ethernet_config *ethernet_config;
|
|
||||||
|
#endif /* WITH_ARGS */
|
||||||
|
|
||||||
process_init();
|
process_init();
|
||||||
|
|
||||||
|
@ -176,9 +176,27 @@ sprint_ip6(uip_ip6addr_t addr)
|
|||||||
}
|
}
|
||||||
#endif /* UIP_CONF_IPV6 */
|
#endif /* UIP_CONF_IPV6 */
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
int contiki_argc = 0;
|
||||||
|
char **contiki_argv;
|
||||||
|
|
||||||
int
|
int
|
||||||
main(void)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
/* crappy way of remembering and accessing argc/v */
|
||||||
|
contiki_argc = argc;
|
||||||
|
contiki_argv = argv;
|
||||||
|
|
||||||
|
/* minimal-net under windows is hardcoded to use the first one or two args */
|
||||||
|
/* for wpcap configuration so this needs to be "removed" from contiki_args */
|
||||||
|
#ifdef __CYGWIN__
|
||||||
|
contiki_argc--;
|
||||||
|
contiki_argv++;
|
||||||
|
#ifdef UIP_FALLBACK_INTERFACE
|
||||||
|
contiki_argc--;
|
||||||
|
contiki_argv++;
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
clock_init();
|
clock_init();
|
||||||
#if UIP_CONF_IPV6
|
#if UIP_CONF_IPV6
|
||||||
/* A hard coded address overrides the stack default MAC address to
|
/* A hard coded address overrides the stack default MAC address to
|
||||||
|
@ -95,9 +95,24 @@ log_message(const char *part1, const char *part2)
|
|||||||
debug_printf("%s%s\n", part1, part2);
|
debug_printf("%s%s\n", part1, part2);
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------------------*/
|
||||||
|
int contiki_argc = 0;
|
||||||
|
char **contiki_argv;
|
||||||
|
|
||||||
int
|
int
|
||||||
main(void)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
contiki_argc = argc;
|
||||||
|
contiki_argv = argv;
|
||||||
|
|
||||||
|
/* The first one or two args are used for wpcap configuration */
|
||||||
|
/* so this needs to be "removed" from contiki_args. */
|
||||||
|
contiki_argc--;
|
||||||
|
contiki_argv++;
|
||||||
|
#ifdef UIP_FALLBACK_INTERFACE
|
||||||
|
contiki_argc--;
|
||||||
|
contiki_argv++;
|
||||||
|
#endif
|
||||||
|
|
||||||
process_init();
|
process_init();
|
||||||
|
|
||||||
procinit_init();
|
procinit_init();
|
||||||
|
Loading…
Reference in New Issue
Block a user