The LPC1343 includes a wonderfully easy to use USB bootloader that will cause your board to enumerate as a 32KB mass storage device. All you have to do to update the firmware is delete to old binary file, paste a new one in, and reset the device. Unfortunately, there's a bug in the current version of the LPCXpresso IDE that inserts the wrong checksum in the binary file, meaning that it will be rejected and you'll automatically go into the bootloader or ISP mode after reset since the contents of the internal flash has been deleted. While Code Red/NXP has provided a command-line tool to fix this (as of version 3.1), it's awfully annoying to have to go into the command-line every time. Thankfully, it's easy to add a post-build step to create a binary file and update the checksum to a valid value. All you have to do is follow these three simple steps:
- Right-click on your project in the Project Explorer, and select the Properties menu item.
- In C/C++ Build select Settings and switch to the Build Steps tab.
- In the Post-build steps group box, change the Command text to the following:
arm-none-eabi-size ${BuildArtifactFileName}; arm-none-eabi-objcopy -O binary ${BuildArtifactFileName} ${BuildArtifactFileBaseName}.bin; checksum ${BuildArtifactFileBaseName}.bin;
The screen should look something like this:

Now every time you build your project, a binary file will automatically be created, and the checksum utility will be executed. All you have to do is copy the .bin file to the board with the USB bootloader.