This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
reprapfirmware-dc42/network/lwip_test.h
2013-12-14 12:03:25 +00:00

33 lines
741 B
C

// Only modify this file to include
// - function definitions (prototypes)
// - include files
// - extern variable definitions
// In the appropriate section
#ifndef lwip_test_H_
#define lwip_test_H_
#include "Arduino.h"
//add your includes for the project lwip_test here
#include "SamNonDuePin.h"
#include "lwip/src/include/lwip/netif.h"
#include <stdio.h>
#include "ethernet_sam.h"
#include "timer_mgt_sam.h"
#include <stdarg.h>
#undef printf
//end of add your includes here
#ifdef __cplusplus
extern "C" {
#endif
void loop();
void setup();
#ifdef __cplusplus
} // extern "C"
#endif
//add your function definitions for the project lwip_test here
void printf(char *fmt, ... );
//Do not add code below this line
#endif /* lwip_test_H_ */