mirror of
https://github.com/dimoniche/solarium.vlad.git
synced 2026-01-29 20:43:31 +03:00
27 lines
432 B
C
27 lines
432 B
C
#ifndef __INCLUDES_H__
|
|
#define __INCLUDES_H__
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
|
|
#include <iolpc2368.h>
|
|
#include <ucos_ii.h>
|
|
|
|
#include <cpu.h>
|
|
#include <lib_def.h>
|
|
#include <lib_mem.h>
|
|
#include <lib_str.h>
|
|
|
|
#include <app_cfg.h>
|
|
#include <bsp.h>
|
|
|
|
#if uC_TCPIP_MODULE > 0
|
|
#include <net.h>
|
|
#endif
|
|
|
|
#endif
|