lpc

Debugging/Testing LPC code

Updating the object in the hosting driver will show any syntax errors, and any runtimes are logged in the appropriate way. I can inspect globals in the object and inherit using commands, but I'm at a loss when it comes to inspecting function-scoped variables and parameters, or stepping through functions and inspecting during the executio...

How to process Sound with Java?

Hey, i have to implement the LPC (linear predictive coding) Algorithm with Java and quiet frankly don't have a clue where to start. Could someone please point me into a right direction.. I can't. of course, use already implemented algorithms from the java sound api (if its provides a solution). thanks for you help fabian ...

Vector Quantization in Speech Processing Explanation

Hi all, I'm having trouble determining from this research paper exactly how I can reproduce the Standard Vector Quantization algorithm to determine the language of an unidentified speech input, based on a training set of data. Here's some basic info: Abstract info Language recognition (e.g. Japanese, English, German, etc) using acoustic...

ARM LPC1768 UART0 configuration problem, wrong baud rate.

My baud rate should be 115200, but it is 892.9 void UART0_Init(int pclk, int baudrate) { unsigned long int DLest; //unsigned long int pclk; unsigned int temp; // Turn on power to UART0 SC->PCONP |= PCUART0_POWERON; // Set PINSEL0 so that P0.2 = TXD0, P0.3 = RXD0 PINCON->PINSEL0 = (PINCON->PINSEL0 & ~...