Yahoo Groups archive

Lpc2000

Index last updated: 2026-04-28 23:31 UTC

Messages

Browse messages

Page 39 of 329 · 16407 messages matched

Re: {To TomW} GCC-Bug in IRQs

2006-03-26 by roger_lynx

... already. At ... the whole ... prologue/epilogue with inline ... registers are really used, so I have ... which is a wast of performance. Yes. IRQ

Thread view Attachments: 0

Re: [lpc2000] {To TomW} GCC-Bug in IRQs

2006-03-25 by Robert Adsett

... According to the APCS A (called)subroutine must preserve the contents of the registers r4-r8, r10, r11 and SP . R0-R3 are temporary/parameter registers

Thread view Attachments: 0

Re: [lpc2000] efsl FAT lib on Keil

2006-03-25 by Tom Walsh

... Ah, better licensing terms. TomW -- Tom Walsh - WN3L - Embedded Systems Consultant http://openhardware.net, http://cyberiansoftware.com Windows? No

Thread view Attachments: 0

Re: [lpc2000] C-code question

2006-03-25 by Robert Adsett

... retCode id declared as type tS8 and initialized to 0. tS8 will defined elsewhere At a guess (and only a guess), it s meant to be a mnemonic for type

Thread view Attachments: 0

Re: [lpc2000] C-code question

2006-03-25 by Dave Hylands

Hi heedaf, ... This declares a variable called retCode using a type called tS8 and initializes it to zero. The tS8 type is probably declared somewhere like

Thread view Attachments: 0

Re: [lpc2000] C-code question

2006-03-25 by Robert Bacs

I guess it means an 8 bits signed type. Boby ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best

Thread view Attachments: 0

C-code question

2006-03-25 by heedaf

In the following sample code does anyone know what tS8 (tS8 retCode = 0;) do/mean? It is contained in a .h file. tS8 i2cWrite(tU8 addr, tU8 extraCmd, tU16

Thread view Attachments: 0

Re: [lpc2000] {To TomW} GCC-Bug in IRQs

2006-03-25 by David Hawkins

... Then perhaps this :) irq_isr: sub lr, lr, #4 stmfd sp!, {r0-r3, ip, lr} bl irq_handler ldmfd sp!, {r0-r3, ip, pc}^ /* VICVectAddr dispatch loop */ void

Thread view Attachments: 0

Re: [lpc2000] RISC vs CISC

2006-03-25 by Xtian Xultz

... I understand, but my problem is that my SPI devices are 25 cm away (in another board) from the board with my uC. So, I have two boards with SPI devices

Thread view Attachments: 0

Re: [lpc2000] {To TomW} GCC-Bug in IRQs

2006-03-25 by David Hawkins

... You mean something like this .... irq_isr: /* Save IRQ context, including the APCS registers, and r4-6 */ sub lr, lr, #4 stmfd sp!, {r0-r6, ip, lr} /*

Thread view Attachments: 0

RE: [lpc2000] Another newlib question

2006-03-25 by Joel Winarske

Hi Alex, In addition to Tom s info this is a good reference: http://billgatliff.com/drupal/node/25 Also the Ethernut project has a good number of examples for

Thread view Attachments: 0

Re: [lpc2000] {To TomW} GCC-Bug in IRQs

2006-03-25 by Robert Adsett

... If you write a stub that problem disappears. The procedure call standard ensures that the proper registers are saved when you call out of the stub. You

Thread view Attachments: 0

Re: [lpc2000] {To TomW} GCC-Bug in IRQs

2006-03-25 by Robert Adsett

... Rather than go through all this hand-wringing why not just write an assembly stub? You d know it was correct and you d be done already. At most it would

Thread view Attachments: 0

Re: [lpc2000] efsl FAT lib on Keil

2006-03-25 by Bertrik Sikken

... Indeed, windows xp offers FAT32 as default for my 256MB SD-card and 128MB flash drive when formatting, but I have no doubt that linux can also format them

Thread view Attachments: 0

Re: [lpc2000] efsl FAT lib on Keil

2006-03-25 by Tom Walsh

... Yes, it only supports 12/16 bit FATs. As far as I know, the only way you can get a Compact Flash or SD card with 32bit FATs is to format them under

Thread view Attachments: 0

Re: [lpc2000] Another newlib question

2006-03-25 by Tom Walsh

... I use newlib, it drives the RDCF2 FAT filesystem for the SD card, and newlib functions are used extensively throughout the code: memcpy, strncmp, etc. I

Thread view Attachments: 0

Re: [lpc2000] {To TomW} GCC-Bug in IRQs

2006-03-25 by Tom Walsh

... I am not sure what your question is. Why do you feel you have to intentionally suppress the apcs stack frame? Regards, TomW -- Tom Walsh - WN3L - Embedded

Thread view Attachments: 0

{To TomW} GCC-Bug in IRQs

2006-03-25 by Sten

Hello Tom, some days ago I discovered a GCC bug on interrupt service routines for functions with __attribute__((interrupt( IRQ ))). At GCC-Bugzilla I found

Thread view Attachments: 0

How Can I Configure Timer? -To get this

2006-03-25 by Saravanakumar S

Hi all, I am newbie to this field .Can you please help me to come out of this problem. I modify the pgm, to generate the 100KHz frequency with 50% duty cycle

Thread view Attachments: 0

Re: spurious interrupts on LPC

2006-03-25 by Jayasooriah

Hello, For what it is worth, here is a summary of the issues surrounding the very first question I raised relating to spurious interrupts on LPC 2000 family.

Thread view Attachments: 0

Re: [lpc2000] JTAG problem

2006-03-25 by Leon Heller

... From: jk jlkj To: LPC 2000 Sent: Saturday, March 25, 2006 12:03 PM Subject: [lpc2000] JTAG problem ...

Thread view Attachments: 0

Re: [lpc2000] JTAG problem

2006-03-25 by Seb Tarris

Hi, Do you use the IAR compiler v4.30A ? So yes, there is a problem with the UBROF8 debug format, and you must install the IAR patch Xlink 4.59 or more.

Thread view Attachments: 0

JTAG problem

2006-03-25 by jk jlkj

Hi Friends, Any one knows what this JTAG error means. The debug session could not be started. Either the debugger intialization failed, or else the file

Thread view Attachments: 0

Re: [lpc2000] Re: efsl FAT lib on Keil

2006-03-25 by Mukund Deshmukh

... We are using MMC with LPC2138 and efsl for playing raw audio data. The quality of sound at 8bit, 8000 samples is too good. With 10 bit , and at higher

Thread view Attachments: 0

RE: [lpc2000] Re: RTC problem in 2136

2006-03-25 by Pandurang Shinde

hi, thanks for suuggestion,i check my initlization & i nowhere found that i am writing one reserved bit. My RTC initlization routine is as below. CCR=0x13; /*

Thread view Attachments: 0

Re: spurious interrupts on LPC

2006-03-24 by Jayasooriah

Hah! I wonder who is saving face here. Did you not also jump on Ralph Hempel bandwagon. Remember, the flawed one? It just goes on to show that it does not

Thread view Attachments: 0

Move to quarantaine

This moves the raw source file on disk only. The archive index is not changed automatically, so you still need to run a manual refresh afterward.