36 lines
728 B
C
36 lines
728 B
C
|
|
#ifndef _HUGEIC_BASIC_INCLUDE_H_
|
||
|
|
#define _HUGEIC_BASIC_INCLUDE_H_
|
||
|
|
|
||
|
|
#include "typesdef.h"
|
||
|
|
#include "list.h"
|
||
|
|
#include "dev.h"
|
||
|
|
#include "devid.h"
|
||
|
|
#include "errno.h"
|
||
|
|
|
||
|
|
#include "osal/atomic.h"
|
||
|
|
#include "osal/ffs.h"
|
||
|
|
#include "osal/irq.h"
|
||
|
|
#include "osal/msgqueue.h"
|
||
|
|
#include "osal/mutex.h"
|
||
|
|
#include "osal/semaphore.h"
|
||
|
|
#include "osal/sleep.h"
|
||
|
|
#include "osal/string.h"
|
||
|
|
#include "osal/task.h"
|
||
|
|
#include "osal/timer.h"
|
||
|
|
#include "osal/time.h"
|
||
|
|
#include "osal/work.h"
|
||
|
|
#include "osal/event.h"
|
||
|
|
|
||
|
|
#include "hal/gpio.h"
|
||
|
|
#include "hal/dma.h"
|
||
|
|
#include "hal/crc.h"
|
||
|
|
#include "hal/uart.h"
|
||
|
|
|
||
|
|
#include "lib/common/common.h"
|
||
|
|
#include "lib/common/sysevt.h"
|
||
|
|
#include "lib/common/rbuffer.h"
|
||
|
|
#include "lib/heap/sysheap.h"
|
||
|
|
#include "lib/syscfg/syscfg.h"
|
||
|
|
|
||
|
|
#endif
|