mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-03-19 19:22:55 +00:00
32 lines
618 B
C
32 lines
618 B
C
|
/*
|
||
|
* Copyright (C) 2015-2017 Alibaba Group Holding Limited
|
||
|
*/
|
||
|
|
||
|
#ifndef HAL_SOC_H
|
||
|
#define HAL_SOC_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#include <hal/soc/adc.h>
|
||
|
#include <hal/soc/flash.h>
|
||
|
#include <hal/soc/gpio.h>
|
||
|
#include <hal/soc/i2c.h>
|
||
|
#include <hal/soc/nand.h>
|
||
|
#include <hal/soc/nor.h>
|
||
|
#include <hal/soc/pwm.h>
|
||
|
#include <hal/soc/qspi.h>
|
||
|
#include <hal/soc/rng.h>
|
||
|
#include <hal/soc/rtc.h>
|
||
|
#include <hal/soc/sd.h>
|
||
|
#include <hal/soc/spi.h>
|
||
|
#include <hal/soc/timer.h>
|
||
|
#include <hal/soc/uart.h>
|
||
|
#include <hal/soc/wdg.h>
|
||
|
#include <hal/soc/interpt.h>
|
||
|
|
||
|
#define HAL_WAIT_FOREVER 0xFFFFFFFFU
|
||
|
|
||
|
#endif /* HAL_SOC_H */
|
||
|
|