29 lines
405 B
C
29 lines
405 B
C
#ifndef __INCLUDES__
|
|
#define __INCLUDES__
|
|
|
|
#define PMU_SYSTEM 1
|
|
|
|
//utils
|
|
#include "typedef.h"
|
|
#include "typedef/assert.h"
|
|
|
|
#include "printf.h"
|
|
#include "string.h"
|
|
#include "delay.h"
|
|
|
|
//apps
|
|
#include "lib_config.h"
|
|
#include "sdk_config.h"
|
|
|
|
//driver
|
|
#include "power_interface.h"
|
|
#include "clock_interface.h"
|
|
#include "uart.h"
|
|
|
|
//system
|
|
#include "hwi.h"
|
|
#include "interrupt_hw.h"
|
|
#include "debug.h"
|
|
|
|
#endif
|