ap6212 softap support

This commit is contained in:
August 2018-08-10 14:17:52 +08:00
parent 73a04365cb
commit 6e8b520dcb
7 changed files with 13 additions and 10 deletions

View file

@ -44,8 +44,8 @@ bool DriverTool::TakeOwnershipOfFirmwareReload() {
return true;
}
bool DriverTool::LoadDriver() {
return ::wifi_load_driver() == 0;
bool DriverTool::LoadDriver(int mode) {
return ::wifi_load_driver(mode) == 0;
}
bool DriverTool::UnloadDriver() {

View file

@ -27,7 +27,7 @@ extern "C"
*
* @return 0 on success, < 0 on failure.
*/
int wifi_load_driver();
int wifi_load_driver(int mode);
/**
* Unload the Wi-Fi driver.

View file

@ -36,7 +36,7 @@ class DriverTool {
// These methods allow manipulation of the WiFi driver.
// They all return true on success, and false otherwise.
virtual bool LoadDriver();
virtual bool LoadDriver(int mode);
virtual bool UnloadDriver();
virtual bool IsDriverLoaded();

View file

@ -140,7 +140,7 @@ int is_wifi_driver_loaded(const char* wifi_driver_name) {
#endif
}
int wifi_load_driver() {
int wifi_load_driver(int mode) {
#ifdef WIFI_DRIVER_MODULE_PATH
char module_path[128] = {0};
char module_arg[128] = {0};
@ -149,7 +149,7 @@ int wifi_load_driver() {
return 0;
}
LOG(ERROR) << "wifi_load_driver: Start to insmod " << wifi_driver_name << ".ko";
get_driver_module_arg(module_arg);
get_driver_module_arg(module_arg, mode);
LOG(ERROR) << "module_arg= " << module_arg;
if (!strstr(WIFI_DRIVER_MODULE_PATH, ".ko")) {
snprintf(module_path, sizeof(module_path), "%s%s.ko", WIFI_DRIVER_MODULE_PATH, wifi_driver_name);