EmbeddedRelated.com

LPC2378 User Manual location?

Started by John Speth in LPC200016 years ago 2 replies

Hi Group- I have the Keil MBC2300 eval board and on it is the LPC2378. Referring to the NXP web site on the LPC2378 details page, the only...

Hi Group- I have the Keil MBC2300 eval board and on it is the LPC2378. Referring to the NXP web site on the LPC2378 details page, the only user manual it offers is for the LPC210x part. That part doesn't have USB so I can't find any information about programming the LPC2378 USB registers. Can anyone please tell me where the LPC2378 User Manual is located? Thanks, John.


IAR Kickstart Code Size Limitation?

Started by tkreyche in LPC200019 years ago 1 reply

Hi Group, I recently got the IAR Kickstart Kit for LPC210x and have read all the docs and compiled and run sample apps --...

Hi Group, I recently got the IAR Kickstart Kit for LPC210x and have read all the docs and compiled and run sample apps -- everything works fine. I'm confused by the code size limitation of the kit, the docs say "The kit also comes with a 32K code-limited version


LPC210x Timer1 help

Started by Jason in LPC200013 years ago 39 replies

Hey guys im having a issue running timer1. Im not sure if its Crossworks or the actual code. Im using Crossworks 2 My code is: ...

Hey guys im having a issue running timer1. Im not sure if its Crossworks or the actual code. Im using Crossworks 2 My code is: T1TCR=0x0; T1TC=0x01; T1PR=0x0; T1PC=0x0; T1MCR=0x6; // Reset & Stop on match T1MR0=50000; // Timer 1 Match Reg T1TCR=0x1; // Start timer The issue is T1TC value doesnt increment past 1. It starts on 0 then 1 then no more...


Thumb mode compile error in IAR EW

Started by Hanns Tappeiner in LPC200015 years ago 3 replies

Hi, I use IAR Embedded workbench to write code for the LPC210x I wrote some interrupt code and it works fine. It is based on some of the...

Hi, I use IAR Embedded workbench to write code for the LPC210x I wrote some interrupt code and it works fine. It is based on some of the examples. But when Itry to compile it in thumb mode, I get the following compile error: Error[Ta007]: Cannot call a __thumb function from arm mode The line which causes the problem looks like this: (*interrupt_function)(); //Call interrupt function H...