Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
249 views

LPC1700 won't wake up from deep sleep

I have firmware running on LPC1754, 59 and 68 + FreeRTOS + CMSIS. I'd like to be able to put the microcontroller in the lowest power mode possible, but: "sleep" is not enough. Once the ...
3
votes
1answer
706 views

Vector Quantization in Speech Processing Explanation

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 ...
3
votes
1answer
158 views

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 ...
2
votes
0answers
77 views

SDHC SPI write issues

I've been trying to do an SD card interface with the LPC1766 SPI peripheral for a while and right now I'm stuck in a problem that I couldn't find the answer anywhere. The problem is: SDHC cards are ...
2
votes
2answers
254 views

LPC17xx: Check if RTC is running

I am using NXP LPC17xx family microcontrollers (LPC1759 and LPC1768). How can I determine if RTC is running for sure? I am doing a test on LPC_RTC->CCR & RTC_CCR_CLKEN but it seems no much ...
2
votes
2answers
2k views

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 ...
2
votes
1answer
210 views

How to process Sound with Java?

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 ...
1
vote
1answer
63 views

Handling SERIRQ Interrupts from LPC-Connected Devices

How are SERIRQ interrupts generated by devices connected via an LPC (Low Pin Count) bus handled by Linux device drivers? In particular, how is an interrupt generated by one device on the bus ...
0
votes
0answers
40 views

LPC2148 Setting up interrupt for bluetooth

I am making additions to a firmware code previously written for colecting data through a sensor and then sending it to the PC over bluetooth.Earlier the sending over Bluetooth was not interrupt driven ...
0
votes
0answers
51 views

What is the limitation of LPC like hot code-swapping?

I'm currently looking into building a highly scriptable game-server and currently I'm researching different scripting languages. Coming from a background of some high-level MUD programming I'm very ...
0
votes
1answer
269 views

providing more heap in Keil

I am working on MCB2300 (with LPC2378 processor)and using keil uVision4. In my program I am creating dynamic memory using malloc() function. As all dynamic contents will be stored in heap, I need to ...