16 lines
193 B
C
16 lines
193 B
C
#ifndef __WLAN_TEST_H_
|
|
#define __WLAN_TEST_H_
|
|
#include "rk_pcba_test_led.h"
|
|
|
|
void *wlan_test(void *argv);
|
|
|
|
struct wlan_msg {
|
|
int result;
|
|
int x;
|
|
int y;
|
|
int w;
|
|
int h;
|
|
char *ssid;
|
|
};
|
|
#endif
|