Hi Mark,
These are my experiences of getting the simulator working with SP3
My experience loading uTasker SP3 on an LM3S6965 demo board.
I'm using Rowley Crossworks V1.7 build 16 as my arm compiler
and Visual Studio 2008 SP1 as my windows compiler.
This is the sequence I followed.
1. I did a clean install of the uTasker LM3Sxxxx beta software
2. I then applied SP1, SP2 and SP3 in order
3. I made the changes detailed in the forum relating to SP3
4. I renamed config_sp3.h to config.h
5. I undefined SPI_FILE_SYSTEM in config.h (I was not using that)
6. I selected EK_LM3S6965 as the target device
7. I opened uTaskerV1-3.dsp is VS2008 wheich converted the project into a VS2008 project
8. Next I tried to compile the simulator, It failed to compile with the following error
Error 1 error RC2104 : undefined keyword or key name: ID_WIRESHARK_REPLAYLASTFILE
The only way I could get it to compile was to make the following changes to the uTasker.rc file
POPUP "&Wireshark"
BEGIN
// MENUITEM "&Replay last file", ID_WIRESHARK_REPLAYLASTFILE
MENUITEM "&Load Wireshark/Ethereal file to play back", ID_ETHEREAL
END
POPUP "&LAN"
BEGIN
MENUITEM "Select working &NIC", ID_LAN_NIC
END
POPUP "US&B"
BEGIN
MENUITEM "&Enumeration", ID_TEST_ENUMERATION
// MENUITEM "&Disconnect", ID_USB_DISCONNECT
// MENUITEM "Attach &low speed device", ID_USB_CONNECTLOWSPEEDDEVICE
// MENUITEM "Attach &full speed device", ID_USB_CONNECTFULLSPEEDDEVICE
END
POPUP "&Port Sim"
BEGIN
// MENUITEM "&Repeat last script", ID_PORTSIM_REPEATLASTSCRIPT
MENUITEM "&Open Script", ID_PORTSIMULATOR_OPENSCRIPT
END
10. The project is now working in the simulator
Any ideas why I had to change the uTasker.rc file
Cheers
Martin