forked from PAWPAW-Mirror/lib_xua
26 lines
500 B
C
26 lines
500 B
C
// Copyright 2017-2023 XMOS LIMITED.
|
|
// This Software is subject to the terms of the XMOS Public Licence: Version 1.
|
|
#ifndef _XUA_H_
|
|
#define _XUA_H_
|
|
|
|
#include <xs1.h>
|
|
|
|
#include "xua_conf_full.h"
|
|
|
|
#ifndef __ASSEMBLER__
|
|
#include "xua_audiohub.h"
|
|
#include "xua_endpoint0.h"
|
|
#include "xua_buffer.h"
|
|
#include "xua_mixer.h"
|
|
#endif
|
|
|
|
#ifdef __XC__
|
|
#include "xua_clocking.h"
|
|
#include "xua_midi.h"
|
|
#if XUA_NUM_PDM_MICS > 0
|
|
#include "xua_pdm_mic.h"
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|