Should I attempt to use the rpc_wrap calls for a new host?
Although the branch code, as it stands seems incomplete - it seems like this is where I should concentrate my efforts.
If this action is recommended then
Should I scrap esp_wifi_init
and go for:
esp_hosted_init(esp_hosted_up_cb)
and register the rpc calls?
Any pointers as how to hook previous slave code would be appreciated...
What is the purpose of esp_hosted_up_cb. Is it just a generic callback for the user to implement stuff after initialization?
I had been working with station_example.c from examples/wifi/station. I assume I should start with TEST_RAW_TP?
Where should a new "esp_wifi_init" (for port) be invoked?
I'll keep it brief here.
Should I attempt to use the rpc_wrap calls for a new host? Although the branch code, as it stands seems incomplete - it seems like this is where I should concentrate my efforts.
If this action is recommended then Should I scrap esp_wifi_init and go for: esp_hosted_init(esp_hosted_up_cb) and register the rpc calls?
Any pointers as how to hook previous slave code would be appreciated...