New Twitter tweet commands added

This commit is contained in:
adamdunkels 2009-05-11 17:11:56 +00:00
parent 6808bb387b
commit 2c6c665309
2 changed files with 9 additions and 5 deletions

View file

@ -8,8 +8,8 @@ shell_src = shell.c shell-reboot.c \
shell-checkpoint.c shell-power.c \
shell-tcpsend.c shell-udpsend.c shell-ping.c shell-netstat.c \
shell-rime-sendcmd.c shell-download.c shell-rime-neighbors.c \
shell-rime-unicast.c
#shell-rsh.c
shell-rime-unicast.c \
shell-tweet.c
shell_dsc = shell-dsc.c
APPS += webbrowser
@ -36,6 +36,9 @@ ifndef PLATFORM_BUILD
override telnet_src = telnet.c
endif
APPS += twitter
include $(CONTIKI)/apps/twitter/Makefile.twitter
ifeq ($(TARGET),sky)
shell_src += shell-sky.c shell-exec.c
shell_src += shell-sky.c shell-exec.c shell-sensortweet.c
endif

View file

@ -48,7 +48,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: shell.h,v 1.17 2009/05/10 21:05:06 adamdunkels Exp $
* $Id: shell.h,v 1.18 2009/05/11 17:11:56 adamdunkels Exp $
*/
/**
@ -353,7 +353,6 @@ struct shell_input {
* @}
*/
#include "shell-blink.h"
#include "shell-checkpoint.h"
#include "shell-coffee.h"
@ -379,10 +378,12 @@ struct shell_input {
#include "shell-rsh.h"
#include "shell-run.h"
#include "shell-sendtest.h"
#include "shell-sensortweet.h"
#include "shell-sky.h"
#include "shell-tcpsend.h"
#include "shell-text.h"
#include "shell-time.h"
#include "shell-tweet.h"
#include "shell-udpsend.h"
#include "shell-vars.h"
#include "shell-wget.h"