mirror of
https://github.com/espressif/esp-sr.git
synced 2025-09-15 15:28:44 +08:00
18 lines
331 B
C
18 lines
331 B
C
#pragma once
|
|
|
|
#include "esp_nsn_iface.h"
|
|
|
|
/*
|
|
The prefix of nset
|
|
Now there are nsnet1 and nsnet2
|
|
*/
|
|
#define ESP_NSNET_PREFIX "nsnet"
|
|
|
|
/**
|
|
* @brief Get the nsnet handle from model name
|
|
*
|
|
* @param model_name The name of model
|
|
* @returns The handle of multinet
|
|
*/
|
|
esp_nsn_iface_t *esp_nsnet_handle_from_name(char *model_name);
|