Ejemplo n.º 1
0
void QAudioManager::testLibraries()
{
	setError(QCoder::NoError);
	for(int i = 0; i < mSupportedCoders.size(); ++i)
	{
		testLibrary(mSupportedCoders[i]);
	}
}
Ejemplo n.º 2
0
void QAudioManager::addFileExtension(const QString coderName, const QString extension)
{
	setError(QCoder::NoError);
	QAbstractCoder *theCoder = coder(coderName, QAudioManager::Available);
	if(theCoder != NULL)
	{
		theCoder->addFileExtension(extension);
		testLibrary(theCoder);
	}
}
/// the library you have is shit. 
/// not sure what isnt working at this point i think i may have to 
/// humm
int main(void)
{
	FILE lcd_str = FDEV_SETUP_STREAM(TerminalChar, NULL, _FDEV_SETUP_RW);
	stdout = &lcd_str;

	struct LCD_Geometry *pointCurrent= &Current;
	struct LCD_Properties *pointProperties= &Properties;
	pointProperties->Rotation= 0;
	//ILI9481_Initalize();
SSD1289_Initalize();
	testLibrary(); 


}
Ejemplo n.º 4
0
int main(void)
{
	struct LCD_Geometry *pointCurrent= &Current;
	struct LCD_Properties *pointProperties= &Properties;
	FILE lcd_str = FDEV_SETUP_STREAM(TerminalChar, NULL, _FDEV_SETUP_RW);
	//FILE lcd_str = FDEV_SETUP_STREAM(USART_send, NULL, _FDEV_SETUP_RW);
	char *hellow = "hello";
	stdout = &lcd_str;

	USART_init();
	SPI_MasterInit();
	SSD1289_Initalize();
	

	
	testLibrary(); 

		
	//ReadBMP_ARRAY(40,40,BMP_IMAGE);
}