Dear members, I have many queries regarding External SRAM 1)i have a problem to sectorize my sram(2MB) lets i divide my sram into 256K blocks . how i do this. ...
Try #define printf iprintf in a global include file and see how you go. Cheers, Bruce ... From: lpc2000@yahoogroups.com [mailto:lpc2000@yahoogroups.com] On...
... option in Makefile? Not really. ... It is the full blown complete support for the printf, sprintf, etc. functions. It is not designed to be small. It was...
... Do a search in the FreeRTOS download for a file called printf-stdarg.c. That implements a teeny tiny printf() that you can direct anywhere you like. Note...
Hi, check your .map file if printf() from the standard library is still in the executable. If so, then you did something wrong. You have to replace all your...
... I have done the same thing. Nothing as sophisticated as printf() but just a set of functions for printing chars, strings. hex bytes, hex shorts, hex ints,...
Hi all, i'm looking for the examples that is beeing refered to in the manual. does any body know where the can be downloaded?? pleas help. i'd like to...
Do the USB lines need extra ESD protection going into the LPC2148, or are they protected well enough? Does anyone have any experience in this area? How about...
Sutton Mehaffey
sutton@...
Jul 1, 2009 7:21 pm
43023
You should run it through one of those line terms like USBUF01. Chris. [Non-text portions of this message have been removed]...
I, Thanks for the reply. But I already had the book. In chapter 8 they refer to tutorial examples. It's these files that I'm looking for. Martijn From:...
Hi. When I launch vTaskDelay() on the FreeRTOS code the task doesn't return from delay if the argument isn't 0. By analisying I found that the vTaskYeld is not...
I've just found that the system isn't switching context. The unique way of performing a context switch is by forcing it throught the vTaskDelay(0), there is...
Agree with Foltos here. There must be a printf (or variant) left behind in your code. Ensure all files that include the global #define have re-compiled (check...
hi richard, thanks for the reply. my led is attached to pin P1.16. i tried your code and unfortunately it did not work. compiled fine though. thanks for...
I have used some of the modules from the Keil NXP USB bootloader example (described in AN1064) to implement a USB MSC interface on a new product I'm...
... In main.c Change all the instances of FIO0... to FIO1... (5 places) Change all the instances of 0x00000400 with 1<<10 (5 places) Lines 30, 31, 32 and 39,...
... This is nearly always because the tick interrupt is not working. If the tick is not working, time is not progressing, and if time is not progressing, the...
... Depending on his library, printf may still be included in the final output. He may also need the -ffunction-sections and -fdata-sections compiler options...
... As per my previous email, check that the tick interrupt is working. There are two different versions of prvSetupTimerInterrupt() in the download, one in...
I have checked out that still not working, I am using the following thing in my project. i have created a file u.cpp and including it with startup file...
sukhdeep singh schrieb: Why do you want to compile main() as C++ ?? Just compile everything as C and leave C++ where it belongs: Application code, not...
... How exactly are you measuring your code size? Hopefully not just by looking at the size of the elf file... Have you tried other methods to reduce code...