mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
16 lines
398 B
C
16 lines
398 B
C
/*------------------------------------------------------/
|
|
/ Copyright (c) 2020, Elehobica
|
|
/ Released under the BSD-2-Clause
|
|
/ refer to https://opensource.org/licenses/BSD-2-Clause
|
|
/------------------------------------------------------*/
|
|
|
|
#ifndef _I2S_UTIL_H_
|
|
#define _I2S_UTIL_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void init_i2s2(void);
|
|
void init_dma_i2s2(int32_t *memory_addr, uint32_t trans_number);
|
|
|
|
#endif
|