⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main_mimo.c

📁 This model is just testing an idea of MIMO, which IEEE802.11n will have. But I havo not seen the s
💻 C
字号:
/*****************************************************************************//*   FIle Name : main_mimo.c                                             *//*   Description : WLAN multiple PPDU Tests                                  *//*   author : miffie                                                         *//*   Date   : aug/11/05                                                      *//*   Copyright (c) 2005 miffie   All rights reserved.                        *//*****************************************************************************/#include <stdio.h>#include <stdlib.h>#include <math.h>//Global variableschar   print_on = 1 ;static  double pi = 3.141592654 ;#define  PRINTF if (print_on) printf#define  FPRINTF if (print_on) fprintf#include "../env/files.h"main(int argc , char *argv[]) { //main int 	ii ;int     number_tests = 3 ;//int     number_tests = 10 ;int	fail ;  //Main     sscanf(argv[1], "%d" , &ii) ;    //printf(" argv=%d\n" , ii ) ;    srand( ii ) ;  //    PRINTF("\n") ;    PRINTF("S T A R T  %0d th test\n" ,ii ) ;    PRINTF("\n") ;    fail = mimo_random () ;    if (fail) { PRINTF("%dth test failed\n", ii) ; }    else { PRINTF("%dth test passed ^x^)v\n", ii) ; }    PRINTF("\n") ;    exit ( fail ) ;} //main

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -