Ignore:
Timestamp:
Feb 20, 2016, 10:43:32 PM (8 years ago)
Author:
coas-nagasima
Message:

インクルードのパス指定をContikiに合わせ変更。
整数型の型名をContikiに合わせ変更。

Location:
uKadecot/trunk/src/ukadecot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uKadecot/trunk/src/ukadecot/main.c

    r152 r158  
    5353#include "rx630_msvc/rx630.h"
    5454#endif
    55 #include <uip.h>
    56 #include <pt.h>
     55#include <net/ip/uip.h>
     56#include <sys/pt.h>
    5757#include "uip_adpt.h"
    5858#include "wamp.h"
     
    458458static void main_initialize()
    459459{
    460         extern u8_t my_ip[4];
    461         extern u8_t my_netmask[4];
    462         extern u8_t my_default_router[4];
     460        extern uint8_t my_ip[4];
     461        extern uint8_t my_netmask[4];
     462        extern uint8_t my_default_router[4];
    463463        uint8_t btn1, btn2;
    464464        uint8_t data[32], c;
  • uKadecot/trunk/src/ukadecot/uip-conf.h

    r108 r158  
    6363 * \hideinitializer
    6464 */
    65 typedef unsigned char u8_t;
     65typedef unsigned char uint8_t;
    6666
    6767/**
     
    7272 * \hideinitializer
    7373 */
    74 typedef unsigned short u16_t;
     74typedef unsigned short uint16_t;
    7575
    7676/**
     
    181181/*#include "hello-world.h"*/
    182182/*#include "telnetd.h"*/
    183 #include "webserver.h"
    184 #include "dhcpc.h"
     183#include "webserver/webserver.h"
     184#include "dhcpc/dhcpc.h"
    185185/*#include "resolv.h"*/
    186186/*#include "webclient.h"*/
    187187/*#include "httpd.h"*/
    188188
    189 #include "timer.h"
    190 #include "pt.h"
     189#include "sys/timer.h"
     190#include "sys/pt.h"
    191191
    192192struct ecnl_state {
Note: See TracChangeset for help on using the changeset viewer.