repo.or.cz
/
LuatOS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix: 对不支持weak的bsp, luat_http_client_onevent报重复定义了
[LuatOS.git]
/
luat
/
include
/
luat_dac.h
blob
d07a6301099f943c08e317d141d2fb6f2ce72c81
1
2
#ifndef LUAT_DAC_H
3
#define LUAT_DAC_H
4
5
#include
"luat_base.h"
6
7
int
luat_dac_setup
(
uint32_t
ch
,
uint32_t
freq
,
uint32_t
mode
);
8
int
luat_dac_write
(
uint32_t
ch
,
uint16_t
*
buff
,
size_t
len
);
9
int
luat_dac_close
(
uint32_t
ch
);
10
11
#endif
12