wifi_internal.h

Go to the documentation of this file.
1 //-------------------------------------------------------------------------------------------------
2 /**
3  * @file wifi_internal.h
4  *
5  * WiFi Service Command line internal headerfile
6  *
7  * Copyright (C) Sierra Wireless Inc.
8  */
9 //-------------------------------------------------------------------------------------------------
10 
11 #ifndef WIFI_INTERNAL_H
12 #define WIFI_INTERNAL_H
13 
14 #include "legato.h"
15 #include "interfaces.h"
16 
17 //--------------------------------------------------------------------------------------------------
18 /**
19  * Print help for WiFi client
20  */
21 //--------------------------------------------------------------------------------------------------
22 void PrintClientHelp(void);
23 
24 //--------------------------------------------------------------------------------------------------
25 /**
26  * Print help for WiFi access point
27  */
28 //--------------------------------------------------------------------------------------------------
29 void PrintApHelp(void);
30 
31 //--------------------------------------------------------------------------------------------------
32 /**
33  * Process commands for WiFi client service.
34  */
35 //--------------------------------------------------------------------------------------------------
37 (
38  const char *commandPtr, ///< [IN] Command to execute (NULL = run default command)
39  size_t numArgs ///< [IN] Number of arguments
40 );
41 
42 
43 //--------------------------------------------------------------------------------------------------
44 /**
45  * Process commands for WiFi client service.
46  */
47 //--------------------------------------------------------------------------------------------------
49 (
50  const char *commandPtr, ///< [IN] Command to execute (NULL = run default command)
51  size_t numArgs ///< [IN] Number of arguments
52 );
53 
54 #endif //WIFI_INTERNAL_H
void PrintApHelp(void)
void PrintClientHelp(void)
void ExecuteWifiApCommand(const char *commandPtr, size_t numArgs)
void ExecuteWifiClientCommand(const char *commandPtr, size_t numArgs)