mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-22 17:24:16 +00:00
24 lines
739 B
C
24 lines
739 B
C
|
//----------------------------------------------------------------------------//
|
||
|
#ifndef __MAIN_TEST_H
|
||
|
#define __MAIN_TEST_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Exported test functions ------------------------------------------------------- */
|
||
|
void do_ping_test(char *ip, int size, int count, int interval);
|
||
|
void do_ping_call(char *ip, int loop, int count);
|
||
|
void do_deinit_test(int mode, int ap_started);
|
||
|
void interactive_question(char *question, char *choice, char *buf, int buf_size);
|
||
|
void start_interactive_mode(void);
|
||
|
void post_init(unsigned int config_start_ap);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __MAIN_TEST_H
|
||
|
|
||
|
//----------------------------------------------------------------------------//
|