Blame view

Tangible/tangibleInterface.c 251 Bytes
67b73333   amoreau   Ajout du squelette
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #include <avr/io.h>
  #include <util/delay.h>
  #include <stdio.h>
  
  #include "serial.h"
  #include "ethernet.h"
  #include "w5100.h"
  #include "socket.h"
  
  #define MAC_SIZE	6
  #define IPV4_SIZE	4
  
  int main(void)
  {
  init_printf();
  // Your code here !!
  return 0;
  }