mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-15 22:48:14 +08:00
35 lines
904 B
C
35 lines
904 B
C
/**
|
|
******************************************************************************
|
|
* @file cpu.h
|
|
* @author William Xu
|
|
* @version V1.0.0
|
|
* @date 22-Aug-2016
|
|
* @brief This file provide the arch options for LWIP tcpip stack
|
|
******************************************************************************
|
|
*
|
|
* UNPUBLISHED PROPRIETARY SOURCE CODE
|
|
* Copyright (c) 2016 MXCHIP Inc.
|
|
*
|
|
* The contents of this file may not be disclosed to third parties, copied or
|
|
* duplicated in any form, in whole or in part, without the prior written
|
|
* permission of MXCHIP Corporation.
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef INCLUDED_CPU_H_
|
|
#define INCLUDED_CPU_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef BYTE_ORDER
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C" */
|
|
#endif
|
|
|
|
#endif /* ifndef INCLUDED_CPU_H_ */
|