Dear Reader
I am working on NXP RW612 SoC and trying to send and receive a raw wifi packet using NXP Wifi driver between two devices without any handshake.
Do you have any idea how I can implement it?
The following functions have not been implemented yet, and only their signature is available in the Wifi.h file :
int wifi_raw_packet_send(const t_u8 *packet, t_u32 length);
int wifi_raw_packet_recv(t_u8 **data, t_u32 *pkt_type);
Do I need to set the receiver in monitoring mode and use the following function in the transmitter?
int wifi_inject_frame(const enum wlan_bss_type bss_type, const uint8_t *buff, const size_t len)