EmbeddedRelated.com
The 2024 Embedded Online Conference

MCB2100 LPC2114 starter code

Started by petermccormick1 in LPC200020 years ago 2 replies

We have used Keil Uv2 (assemblers & C) and Ceibo emulators & programmers for the 87C554 family of chips for years. The 87C is great but it is...

We have used Keil Uv2 (assemblers & C) and Ceibo emulators & programmers for the 87C554 family of chips for years. The 87C is great but it is becoming an antique. We are migrating to the LPC2114 and have purchased the Keil Ulink and MCB2100 to ramp up. Keil does not seem to have much sample code to work with the MCB2100 for starters. Are there any web sites with code, flash programmin


problem in CAN

Started by harisha eh in LPC200017 years ago 7 replies

hello group, Im using lpc2129 in MCB2100 board.im facing problem in CAN(Controller Area Network) communication in hardware.Actually...

hello group, Im using lpc2129 in MCB2100 board.im facing problem in CAN(Controller Area Network) communication in hardware.Actually i connected two MCB2100 board,im just sending char in hypertermial through UART1(but communication between two board is through CAN only).i connected CANL to CANL & CANH to CANH. Transmission is done through push message function in which ...


TCP/IP over serial port on Keil MCB2100 (lpc2129)

Started by a_s_...@yahoo.com in LPC200018 years ago 4 replies

I guess a tcp/ip stack hasn\'t ever been ported on the keil mcb2100, particularly running on the philips lpc2129 processor. Badly need...

I guess a tcp/ip stack hasn\'t ever been ported on the keil mcb2100, particularly running on the philips lpc2129 processor. Badly need documentation and/or source for porting a tcp/ip stack, running on any OS... FreeRTOS, eCOS, whatever.... but over the serial port of the keil motherboard. Any help appreciated. http://dudafunk.myvnc.com ------------------------ Yahoo! Groups Sponsor -------...


LPC BASIC CAN ?

Started by balabh2000 in LPC200020 years ago 2 replies

Hi i have been working on the FULL CAN code provided in the files section as an example. I am workin on MCB2100 boards and was...

Hi i have been working on the FULL CAN code provided in the files section as an example. I am workin on MCB2100 boards and was wondering if it was possible to configure the same in BASIC CAN mode. If i just try disabling the global acceptance filter using the A


__ram attribute in Keil CA compiler

Started by varuzhandanielyan in LPC200019 years ago 1 reply

I have written very simple code just to evaluate the LPC2129 speed for the Keil MCB2100 board: void Meander(void) { ...

I have written very simple code just to evaluate the LPC2129 speed for the Keil MCB2100 board: void Meander(void) { unsigned int n; n = 0x00010000; while (1) { IOSET1 = n; IOCLR1 = n; } } It works well and I can s


CAN communication between 2 LPC2129 microcontrollers

Started by ronald_smeets in LPC200018 years ago 12 replies

Dear all, I'm working on a project with 2 LPC2129 microcontrollers. I want them to communicate with eachother using CAN. The hardware setup...

Dear all, I'm working on a project with 2 LPC2129 microcontrollers. I want them to communicate with eachother using CAN. The hardware setup of both controllers is 'adapted' from the MCB2100 Evaluation board (so with the same CAN driver IC's etc). The microcontrollers run on a 16Mhz crystal, with PLL multiplier set to 4 and VPBDIV also to 4. Now I want to transmit data from CAN1 on uC...


Re: Cannot jump into ADC's VIC (LPC2129,2138 on MCB2100 board)

Started by Aalt Lokhorst in LPC200018 years ago

Hello J?rgen I think you need to use VICIntEnable = 0x00040000 instead of VICIntEnable = 0x00004000 Or even more readable if...

Hello J?rgen I think you need to use VICIntEnable = 0x00040000 instead of VICIntEnable = 0x00004000 Or even more readable if you try to set bit 18: VICIntEnable = (1<<18); If you don't want to rely on the default value of VICIntSelect then it is better to clear bit 18 in this register (to be sure the ADC interrupt wel


LPC21xx and UART0 problem

Started by riccardoventrella in LPC200017 years ago 9 replies

Hi, I'm using a MCB2100 with a LPC2129. I've written a sort of home made printf using the hyperterminal as a debugger window, but up to now I...

Hi, I'm using a MCB2100 with a LPC2129. I've written a sort of home made printf using the hyperterminal as a debugger window, but up to now I used UART1 and all went good. Now I have to port my code on a proprietary board mounting a LPC2194 that has just the UART0 exposed. I've ported the code to the UART0 in this way: ...init stuff PINSEL0 = 0x00000005; /* Enable RxD0 and TxD0 ...


LPC2129 - Capture help requested :)

Started by Lasse Madsen in LPC200019 years ago 1 reply

Hi all I'm sitting with the MCB2100 from Keil trying to get the capture input CAP1,0 & CAP1,1 to work (P0.10 and P0.11) I...

Hi all I'm sitting with the MCB2100 from Keil trying to get the capture input CAP1,0 & CAP1,1 to work (P0.10 and P0.11) I have used the following code to make the inputs capture friendly... PINSEL0&=0xFFAFFFFF; T1CCR=0x1B; // I would like to captur


H-JTAG

Started by Fernando Barboza in LPC200017 years ago 4 replies

Hello all! I have tried to use Keil (V.3.03) with H-JTAG server (V.0.43) and Wiggler, but I didn't have success. ...

Hello all! I have tried to use Keil (V.3.03) with H-JTAG server (V.0.43) and Wiggler, but I didn't have success. When I start debug mode in Keil, my Target (MCB2100) don't is update with new software. The software is starting and breakpoint don't function properly. I made my JTAG according the site H-JTAG. Can somebody help me? ...


LPC210x Flash Utility with RTS/DTR Control

Started by Richard in LPC200020 years ago 6 replies

I have uploaded this version to the files area. I also uploaded a picture of the required circuitry. This circuitry is already ...

I have uploaded this version to the files area. I also uploaded a picture of the required circuitry. This circuitry is already implemented on the IAR Kickstart and Keil MCB2100 evaluation boards. It is really handy as ISP development can be done relatively quickly and "hands


AN10438 Philips LPC2000 CAN driver Problems

Started by "davidj.vpac" in LPC200016 years ago 1 reply

I'm sure that here must have been an update to this or resolution logged somewhere. Have installed uVision3 and gcc. My target is a...

I'm sure that here must have been an update to this or resolution logged somewhere. Have installed uVision3 and gcc. My target is a MCB2100 / LPC2129 system. Q1. The source is a mixture of LPC2129 and LPC2294 references The target is 2129 but the specific header files are 2294 ???? Q2. The AN says: Make sure that ADS1.2 is installed in your C:\Program Files\ARM\ADSV1_2 ??? ...


IAP command problems

Started by koerner_stefan in LPC200019 years ago 4 replies

Could anyone help me to run the IAP commands on KEIL MCB2100 (LPC2129)? I am working with the ARM RVDS tools (& RV ICE) and...

Could anyone help me to run the IAP commands on KEIL MCB2100 (LPC2129)? I am working with the ARM RVDS tools (& RV ICE) and tried to run a small sample calling the IAP commands (program runs from iRAM). Most time I get a "memory access violation" several


Open OCD Issues

Started by Richard in LPC200017 years ago 2 replies

I finally have Open OCD (Running through eclipse) functioning on an IAR Kickstart board (LPC2106). Yea! I am unable to get it to run on a...

I finally have Open OCD (Running through eclipse) functioning on an IAR Kickstart board (LPC2106). Yea! I am unable to get it to run on a Keil board, the MCB2100 (LPC2124). The debugger APPEARS to program the micro but then it just hangs while the "launching" progress bar runs, forever. The console output when I start the debugger: (gdb) target state: halted target halted in ARM st...


MCB2100 - BlinkCAN example

Started by Rodrigo in LPC200020 years ago 1 reply

I can’t use the COS feature of the MicroCanOpen implementation... I’m using a 300ms inhibit time in the AD message,...

I can’t use the COS feature of the MicroCanOpen implementation... I’m using a 300ms inhibit time in the AD message, but it always get an error


RTX Kernel

Started by Sreedevi in LPC200016 years ago 7 replies

Hai I tried to run a sample program of rtx_blinky which shows following errors= . Compiling is ok.....but when linking..the error...

Hai I tried to run a sample program of rtx_blinky which shows following errors= . Compiling is ok.....but when linking..the error follows... What will be the reason for this.. =A0=20=20=20=20=20=20=20=20=20 Build target 'MCB2100' linking... .\Obj\Blinky.axf: Error: L6218E: Undefined symbol os_dly_wait (referred fro= m blinky.o). .\Obj\Blinky.axf: Error: L6218E: Undefined symbol os...


LPC2129 UART Help Needed

Started by rtos2010 in LPC200014 years ago 5 replies

I'm using the Keil MCB2100 Demo Board. LPC2129, 12MHZ crystal and PLLCFG_Val = 0x00000024 I'm using this UART demo code from " raju_nem ...

I'm using the Keil MCB2100 Demo Board. LPC2129, 12MHZ crystal and PLLCFG_Val = 0x00000024 I'm using this UART demo code from " raju_nem " at the following user group link/ It says "testing" near the code so I;m not sure it is fully working correctly? http://tech.groups.yahoo.com/group/lpc2000/files/LPC2129_UART/


Urgent IAR EWARM with uCOS-II :-( ?

Started by eng_amrahmed2011 in LPC200018 years ago 5 replies

Salam, Urgent, I need help :-( I can't get uCOS-II work with IAR (for ARM) Can you please send any ready project that works with these boards...

Salam, Urgent, I need help :-( I can't get uCOS-II work with IAR (for ARM) Can you please send any ready project that works with these boards (or any LPC2000) MCB2100 MCB2130 Olimex LPC2129 I use IAR EWARM 4.31A Project at http://groups.yahoo.com/group/lpc200 0/files/uCOS-II/ Or Can you take look to my project and tell



The 2024 Embedded Online Conference