I have converted the registers as indicated but have become stuck with the following translation.
LPC2300::vic_vector(4,TCPClockHandler, 0xf);
LPC2300::vic_enable(4);
This relates to the setting up of the VIC at handl the TCPClockHandler interrupt
What is the new code i need to use to replace these two new lines.
The provided Keil MCB23xx project for easy web has these two lines instead
VICVectAddr4 = (unsigned int)TCPClockHandler; // set interrupt vector in 4
VICIntEnable = 0x00000010; // Enable Timer0 Interrupt
but these two lines do not compile either, as they too use the old non CMSIS compliant system.
What can i use to replace these two lines to setup the VIC correctly?
Best Regards
David Giles
Dear all,
the provided example for the easyweb implementation does not compile with the latest versions of the libraries.
I had some while back being using Version 11 of the mbed library but now with version 19 I have problems compiling. I'm not entirely sure its the mbed libary and I suspect the SFR registers that the software refere to are not vissible by the compiler. I have tried compiling for both LPC17xx and LPC23xx and changed the specific include <LPC23xx> to <LPC17xx> respectively but this does not help.
Has the compiler been upgraded since this example was first done ?
Can you provide me with a ZIP file of a working easyweb example that compiles so i can modify it for another aplication.