Home
last modified time | relevance | path

Searched refs:weight (Results 1 – 10 of 10) sorted by relevance

/RvlSDK-3.2/build/demos/wbcdemo/src/
Dbalance.c125 double weight[WPAD_PRESS_UNITS]; in main() local
161 w1 = weight[0]; // front right in main()
162 w2 = weight[1]; // back right in main()
163 w3 = weight[2]; // front left in main()
164 w4 = weight[3]; // back left in main()
217 WBCRead(&status, weight, (u32)(sizeof(weight) / sizeof(weight[0]))); in main()
218 total = (double)(weight[0]+weight[1]+weight[2]+weight[3]); in main()
Dsimple_wbc.c124 double weight[WPAD_PRESS_UNITS]; in main() local
179 WBCRead(&status, weight, (u32)(sizeof(weight) / sizeof(weight[0]))); in main()
180 total = (double)(weight[0]+weight[1]+weight[2]+weight[3]); in main()
Dhandling_weight.c419 double weight[WPAD_PRESS_UNITS]; in renderStatus() local
431 isExist = WBCRead(&status, weight, (u32)(sizeof(weight) / sizeof(weight[0]))); in renderStatus()
432 all = (double)(weight[0] + weight[1] + weight[2] + weight[3]); in renderStatus()
498 DEMOPrintf( 95, 55, 0, "%3.1f", weight[0]); in renderStatus()
499 DEMOPrintf( 95, 125, 0, "%3.1f", weight[1]); in renderStatus()
500 DEMOPrintf( 10, 55, 0, "%3.1f", weight[2]); in renderStatus()
501 DEMOPrintf( 10, 125, 0, "%3.1f", weight[3]); in renderStatus()
/RvlSDK-3.2/build/demos/kpaddemo/
Dmakefile54 CSRCS = graphic.c kfont.c main.c sample.c swing.c weight.c
60 BINNAMES = kpadsample swing weight
94 $(FULLBIN_ROOT)/weight$(BINSUFFIX): weight.o \
/RvlSDK-3.2/man/en_US/CSS/
Drevolution.css11 font-weight : bold;
29 font-weight : bold;
46 font-weight : bold;
148 font-weight : bold;
178 font-weight : normal;
188 font-weight : bold;
213 font-weight : bold;
224 font-weight : bold;
Dtitles2.css9 …lid;margin-left : 1px;margin-bottom : 1px;border-bottom-width : 2px;font-weight : bold;position : …
11 …lid;margin-left : 1px;margin-bottom : 1px;border-bottom-width : 2px;font-weight : bold;position : …
/RvlSDK-3.2/build/demos/kpaddemo/src/
Dweight.c195 DEMOPrintf( 95, 55, 0, "%3.1f", kpads[0].ex_status.bl.weight[0] ) ; in renderStatus()
196 DEMOPrintf( 95, 125, 0, "%3.1f", kpads[0].ex_status.bl.weight[1] ) ; in renderStatus()
197 DEMOPrintf( 10, 55, 0, "%3.1f", kpads[0].ex_status.bl.weight[2] ) ; in renderStatus()
198 DEMOPrintf( 10, 125, 0, "%3.1f", kpads[0].ex_status.bl.weight[3] ) ; in renderStatus()
/RvlSDK-3.2/include/revolution/
Dwbc.h50 s32 WBCRead ( WPADBLStatus *status, double weight[], u32 size );
Dkpad.h130 double weight[ WPAD_PRESS_UNITS ] ; member
/RvlSDK-3.2/build/libraries/kpad/src/
DKPAD.c1837 ep->bl.weight_err = WBCRead( &( uwp->u.bl ), ep->bl.weight, WPAD_PRESS_UNITS ) ; in read_kpad_ext()
1840 …ightAve [ idx ] = ( kp->wbcWeightAve[ idx ] * kp_wbc_ave_sample + ep->bl.weight[ idx ] ) / ( kp_wb… in read_kpad_ext()
2736 double weight[ WPAD_PRESS_UNITS ] ; in KPADiSamplingCallback() local
2737 if ( WBCRead( &( uwp->u.bl ), weight, WPAD_PRESS_UNITS ) >= 0 ) { in KPADiSamplingCallback()
2739 …e[ 0 ] = ( kp->wbcWeightAve[ 0 ] * ( kp->wbcWeightAveSampleCount - 1 ) + weight[ 0 ] ) / kp->wbcWe… in KPADiSamplingCallback()
2740 …e[ 1 ] = ( kp->wbcWeightAve[ 1 ] * ( kp->wbcWeightAveSampleCount - 1 ) + weight[ 1 ] ) / kp->wbcWe… in KPADiSamplingCallback()
2741 …e[ 2 ] = ( kp->wbcWeightAve[ 2 ] * ( kp->wbcWeightAveSampleCount - 1 ) + weight[ 2 ] ) / kp->wbcWe… in KPADiSamplingCallback()
2742 …e[ 3 ] = ( kp->wbcWeightAve[ 3 ] * ( kp->wbcWeightAveSampleCount - 1 ) + weight[ 3 ] ) / kp->wbcWe… in KPADiSamplingCallback()