17 lines
188 B
C
17 lines
188 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @brief Initialize deep-learning application task.
|
||
|
*
|
||
|
*/
|
||
|
void app_dl_init();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|