Lines Matching full:speed
4 * This application provides functions to get/set fan speed / PWM dutycycle.
46 printf( "\t--set-fan-speed: Set Fan's speed. Takes the RPM value as the last argument\n" ); in ShowUsage()
52 printf( "\t--get-fan-speed: Get Fan's speed\n" ); in ShowUsage()
76 if( strcmp( argv[ i ], "--set-fan-speed" ) == 0 ) in process_arguments()
120 else if( strcmp( argv[ i ], "--get-fan-speed" ) == 0 ) in process_arguments()
167 Verbose ("Inside Set Fan Speed \n"); in main()
171 printf ( "Set Fan Speed Failed \n"); in main()
174 printf ( "Fan Speed set Successfully\n"); in main()
177 Verbose ("Inside Get Fan Speed \n"); in main()
181 printf ( "Get Fan Speed Failed \n"); in main()
184 printf("Fan %d speed is %d \n", fannum, rpmvalue); in main()