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

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

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uKadecot/trunk/uip/net/ip/uip_arch.h

    r157 r158  
    6262#define __UIP_ARCH_H__
    6363
    64 #include "uip.h"
     64#include "net/ip/uip.h"
    6565
    6666/**
     
    8282 * \param op16 A 16-bit integer in host byte order.
    8383 */
    84 void uip_add32(u8_t *op32, u16_t op16);
     84void uip_add32(uint8_t *op32, uint16_t op16);
    8585
    8686/**
     
    103103 * \return The Internet checksum of the buffer.
    104104 */
    105 u16_t uip_chksum(u16_t *buf, u16_t len);
     105uint16_t uip_chksum(uint16_t *buf, uint16_t len);
    106106
    107107/**
     
    114114 * buffer.
    115115 */
    116 u16_t uip_ipchksum(void);
     116uint16_t uip_ipchksum(void);
    117117
    118118/**
     
    129129 * to by uip_appdata.
    130130 */
    131 u16_t uip_tcpchksum(void);
     131uint16_t uip_tcpchksum(void);
    132132
    133 u16_t uip_udpchksum(void);
     133uint16_t uip_udpchksum(void);
    134134
    135135/** @} */
Note: See TracChangeset for help on using the changeset viewer.