3.2.3 Non-Microchip MCU Support

Each microcontroller have its own development tool and document. User must use their MCU-specific tool chain documentation.

User needs to modify the RNWF02 services with the respective MCU functionality.

For example: In Wi-Fi service the UART read function in the sys_rnwf_interface.c file need to be replaced with the respective MCU UART read function.

static inline size_t SYS_RNWF_IF_CommandRespRead(uint8_t* pRdBuffer, const size_t size)
{
    return SERCOM0_USART_Read(pRdBuffer, size);
}