mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
removed refences to printf2log.h
This commit is contained in:
parent
2fb6410e4d
commit
08502eb344
@ -28,14 +28,13 @@
|
||||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* $Id: hello-world.c,v 1.1 2008/04/22 13:07:49 fros4943 Exp $
|
||||
* $Id: hello-world.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include "contiki.h"
|
||||
|
||||
#include "printf2log.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#include <stdio.h> /* For printf() */
|
||||
/*---------------------------------------------------------------------------*/
|
||||
PROCESS(hello_world_process, "Hello world process");
|
||||
AUTOSTART_PROCESSES(&hello_world_process);
|
||||
|
@ -26,14 +26,13 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testbutton.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testbutton.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include "contiki.h"
|
||||
#include "dev/button-sensor.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
PROCESS(test_button_process, "Test button process");
|
||||
AUTOSTART_PROCESSES(&test_button_process);
|
||||
|
@ -26,7 +26,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testcfs.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testcfs.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include "contiki.h"
|
||||
@ -35,7 +35,6 @@
|
||||
#include "cfs/cfs.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
PROCESS(test_cfs_process, "Test CFS process");
|
||||
AUTOSTART_PROCESSES(&test_cfs_process);
|
||||
|
@ -26,14 +26,13 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testctimer.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testctimer.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include "contiki.h"
|
||||
#include "net/rime/ctimer.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
PROCESS(test_ctimer_process, "Callback timer test process");
|
||||
AUTOSTART_PROCESSES(&test_ctimer_process);
|
||||
|
@ -26,14 +26,13 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testetimer.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testetimer.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include "contiki.h"
|
||||
#include "sys/etimer.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
PROCESS(test_etimer_process, "Event timer test process");
|
||||
AUTOSTART_PROCESSES(&test_etimer_process);
|
||||
|
@ -26,7 +26,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testsensors.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testsensors.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include "contiki.h"
|
||||
@ -36,7 +36,6 @@
|
||||
#include "dev/radio-sensor.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
PROCESS(test_sensors_process, "Test sensors process");
|
||||
AUTOSTART_PROCESSES(&test_sensors_process);
|
||||
|
@ -26,7 +26,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testserial.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testserial.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include "contiki.h"
|
||||
@ -34,7 +34,6 @@
|
||||
#include "dev/rs232.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
PROCESS(test_serial_process, "Serial test process");
|
||||
AUTOSTART_PROCESSES(&test_serial_process);
|
||||
|
@ -26,7 +26,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testuaodv.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testuaodv.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
@ -38,7 +38,6 @@
|
||||
#include "net/uaodv-rt.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
#define COOJA_PORT 1234
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: testuip.c,v 1.1 2007/11/25 22:46:14 fros4943 Exp $
|
||||
* $Id: testuip.c,v 1.2 2008/10/03 09:39:38 fros4943 Exp $
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
@ -35,7 +35,6 @@
|
||||
#include "dev/leds.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "printf2log.h" /* COOJA specific: Transforms printf() to log_message() */
|
||||
|
||||
#define COOJA_PORT 1234
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user