Host requirements
A microcontroller host can use the FMAC driver to access the Wi-Fi capabilities of the WF200. In order to do so, the host has several requirements that are described below.
Bus communication
The first requirement of the host is to support either SPI or SDIO communication.
SPI bus
The WF200 supports SPI 8-bit up to 50MHz. In addition to the SPI connections (MISO, MOSI, clock), the host will require two GPIOs to manage the chip select and interrupt functionalities. You can refer to wf200_hardware to connect the host to WF200. The chip select is active in the reset state and the interrupt is detected on a rising edge. In case of power save features support, the host will require an additional GPIO (GPIO_WUP) for the wake-up functionality.
SDIO bus
The WF200 supports SDIO 4-bit up to 50MHz. By default, the interrupt occurs on the SDIO data line 1. This can be changed using the PDS (wf200_pds) enabling the interrupt on the GPIO_WIRQ pin. This option can be useful in case of power save support. The WF200 follows the SDIO specification ver 2.0. In case of power save features support, the host has to manage an additional GPIO (GPIO_WUP) for the wake-up functionality.
Host memory requirements
Flash memory
The firmware 2.0.0 needs 300KB of memory on the host side. It is then sent to the WF200 during the initialization phase. For future proof updates, we recommend to keep at least 350KB free on the host side.
RAM memory
The RAM memory used to run the driver is small (<1KB for the context structure) and only consists of maintaining WF200 context.
Host API functions implementation
The host has to implement a set of functions to enable the driver to access multiple resources (Firmware, GPIOs, memory, busses...). The implementation of these functions are dependent on the platform and type of operating system used. The list of functions required to be implemented by the host are located in the
wf200_host_api.h
file.
The first set of functions is responsible of initializing the host and retrieving the firmware information.
The host also needs to provide GPIO access to the FMAC driver.
In addition, several functions serve to manage the confirmations and indications coming from WF200.
These functions allocate or free memory.
The last set of required functions are to support the chosen communication bus.
WF200 input buffers limit
When sending commands and frames to the WF200, the host has to manage the number of input buffers available on the WF200 side. The number of available buffers is shared in the startup indication during initialization. The host must maintain the number of commands/frames not yet acknowledged by a confirmation. It can be done through a simple counter or by using a semaphore. The host API includes a dedicated function hook to manage this limit on the host side.
You can refer to the startup indication structure to retrieve the number of available input buffers (NumInpChBufs in HiStartupIndBody_t ).
WF200 receive frame loop
The host is responsible for detecting an interrupt coming from WF200 and calling ::wf200_receive_frame. Depending on the returned status of ::wf200_receive_frame, the host has to either call the function again or stop the communication with the WF200. In addition, the host will also have to manage the priority between the received frames and the packets to be sent from the host . The balance between RX and TX is use case dependent. It is up to the host to manage this balance in high throughput situations.
wf200_host_post_event() implementation
The host has to manage the indications received from WF200. It is done through the wf200_host_post_event() function. The list of possible indications sent by WF200 can be found on the dedicated indications page. The information reported by each indication is described in wfx_fm_api.h.
Integration Steps
When integrating the FMAC driver into a new system these are the recommended steps.
1. Implement host functions for communication bus and OS
Implement the bus communication functions for SPI or SDIO and the other functions described above.
2. Test bus communication
Refer to the details in the wf200_initialization page for each initialization step and make sure configuration is completely successfully.
3. Use the WF200 FMAC driver API to initiate a WiFi connection and send/receive data
This step requires implementing the receive frame loop as described above.