Example #1
0
void dsCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(dsCliShow_Descriptor);
	hResult += cliInstallCLIDescriptor(dsCliTest_Descriptor);

	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing ds cli tools");
	}
}
Example #2
0
HRESULT avsTestCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(avsCapture_Descriptor);
	hResult += cliInstallCLIDescriptor(avsDump_Descriptor);

	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing avsTest cli tools");
	}
	return hResult;
}
Example #3
0
void myAppCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	// This is where the developer will put her CLI tool installs
	// for example:
	//	hResult += cliInstallCLIDescriptor(evmSpi_Descriptor);
	//  ...
	
	hResult += cliInstallCLIDescriptor(evmSpi_Descriptor);
	hResult += cliInstallCLIDescriptor(evmMidi_Descriptor);
	hResult += cliInstallCLIDescriptor(evmLed_Descriptor);
	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing myApp cli tools");
	}
}
Example #4
0
void hpllCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;
	hResult += cliInstallCLIDescriptor(hpllDivider_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllPhaseOffset_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllJitterBW_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllMaxGliderRate_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllClock_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllCoast_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllReference_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllEnable_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllDump_Descriptor);
	hResult += cliInstallCLIDescriptor(hpllReset_Descriptor);

	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing hpll cli tools");
	}
}
Example #5
0
void memTestCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(memTest_Descriptor);

	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing memTest cli tools");
	}
}
Example #6
0
void mixer8CliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(mixer8GetMaster_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8SetMaster_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8GetChannel_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8SetChannel_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8SetAux_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8GetAux_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8SetCoef_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8Dump_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8DumpChannel_Descriptor);
	hResult += cliInstallCLIDescriptor(mixer8ReadOverFlow_Descriptor);

	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing mixer8 cli tools");
	}
}
Example #7
0
void grayCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(grayCliSetup_Descriptor);
	hResult += cliInstallCLIDescriptor(grayCliSetMode_Descriptor);
	hResult += cliInstallCLIDescriptor(grayCliGetMode_Descriptor);
	hResult += cliInstallCLIDescriptor(grayCliSetAccMode_Descriptor);
	hResult += cliInstallCLIDescriptor(grayCliGetAccMode_Descriptor);
	hResult += cliInstallCLIDescriptor(grayCliCallback_Descriptor);
	hResult += cliInstallCLIDescriptor(grayCliIntLog_Descriptor);
	//hResult += cliInstallCLIDescriptor(grayCliVolume_Descriptor);

	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing gray cli tools");
	}
}
Example #8
0
void diceCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(Sync_Descriptor);
	hResult += cliInstallCLIDescriptor(HPLL_Descriptor);
	hResult += cliInstallCLIDescriptor(Dump_Descriptor);
	hResult += cliInstallCLIDescriptor(DSAI_Descriptor);
	hResult += cliInstallCLIDescriptor(AES_Descriptor);
	hResult += cliInstallCLIDescriptor(BLOCKSYNC_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_RSMF_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_RS192_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_RSC_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_RSCI_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_RSDF_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_TSMF_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_TS192_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_TSC_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_TSCI_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_TSDF_Descriptor);
	hResult += cliInstallCLIDescriptor(I2S_DEFAULT_Descriptor);
	
	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing avs cli tools");
	}
}
Example #9
0
void cliBuiltInInstallTools(void)
{
	HRESULT			hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(ENV_Descriptor);
	hResult += cliInstallCLIDescriptor(GET_Descriptor);
	hResult += cliInstallCLIDescriptor(SET_Descriptor);
	hResult += cliInstallCLIDescriptor(SETM_Descriptor);
	hResult += cliInstallCLIDescriptor(GMS_Descriptor);
	hResult += cliInstallCLIDescriptor(DUMP_Descriptor);
	hResult += cliInstallCLIDescriptor(SPLASH_Descriptor);
	hResult += cliInstallCLIDescriptor(EXIT_Descriptor);
	hResult += cliInstallCLIDescriptor(RESET_Descriptor);
	hResult += cliInstallCLIDescriptor(ECHO_Descriptor);
	hResult += cliInstallCLIDescriptor(PROMPT_Descriptor);

	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing built-in cli tools");
	}
}
Example #10
0
void diceCliInstallTools(void)
{
	HRESULT		hResult = NO_ERROR;

	hResult += cliInstallCLIDescriptor(clkSrc_Descriptor);
	hResult += cliInstallCLIDescriptor(Dump_Descriptor);
	hResult += cliInstallCLIDescriptor(AES_Descriptor);
	hResult += cliInstallCLIDescriptor(AES_ProModeDescriptor);
	hResult += cliInstallCLIDescriptor(AES_CopyProtectDescriptor);
	hResult += cliInstallCLIDescriptor(AES_PreEmphasisDescriptor);
	hResult += cliInstallCLIDescriptor(AES_CategoryDescriptor);
	hResult += cliInstallCLIDescriptor(BLOCKSYNC_Descriptor);
	hResult += cliInstallCLIDescriptor(diceClkSync_Descriptor);
	hResult += cliInstallCLIDescriptor(diceClkMode_Descriptor);
	hResult += cliInstallCLIDescriptor(diceClkEClk_Descriptor);
	hResult += cliInstallCLIDescriptor(diceClkReset_Descriptor);
	hResult += cliInstallCLIDescriptor(diceAESEnable_Descriptor);
	hResult += cliInstallCLIDescriptor(diceAESSetMasterClk_Descriptor);
	hResult += cliInstallCLIDescriptor(diceAESDualwire_Descriptor);
	hResult += cliInstallCLIDescriptor(diceAdatEnable_Descriptor);
	
	if (hResult != NO_ERROR)
	{
		cliOutputLine("error installing dice cli tools");
	}

	//This is a hack, zluo
	hpllCliInstallTools();
}