I had a few questions about the WiFi slice (TiWi-SL). Has XMOS abandoned this slice? The xTimeComposer libraries section (IP download system) seems to no long have anything related to the wifi slice. It is entirely possible that I just simple am blind, in which case would someone tell me how to locate it?
It is available through the XMOS GitHub page, but even that has not received attention for 2 years and is not fully documented.
I am trying to setup two sliceKits (each with a WiFi slice) and have them relay messages to each other, but the lack of documentation is slowing me down and making this tricky (for me at least).
It seems that the wifi client offers methods for creating a connection, xtcp_connect.
Code: Select all
void xtcp_connect(chanend c_xtcp, wifi_ap_config_t &ap_config)
Code: Select all
void xtcp_connect(chanend c_xtcp, int port_number, xtcp_ipaddr_t ipaddr, xtcp_protocol_t p)
It appears there is no currently available way for a new connection to be established from the SliceKIT running the wifi slice. It can connect and listen for incoming connections with an issue though, and once that connection is up it can send data. But I can't find a way to initiate this from the wifi slice side.
Has anyone done anything with this?
Any help or advice would be greatly appreciated.
Thanks in advance.