I had done all things free addition is start But when I code run this problem is occurs this are the errors so please guide me 16:19:29 **** Incremental Build of configuration Debug for project LED_Blink **** make -r all bash.exe: warning: could not find /tmp, please create! Building file: ../src/main.c bash.exe: warning: could not find /tmp, please create! Invoking: MCU C Compiler arm-none-eabi-gcc -DDEBUG -D__CODE_RED -D__REDLIB__ -O0 -fno-common -g3 -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -mcpu=arm7tdmi -specs=redlib.specs -MMD -MP -MF"src/main.d" -MT"src/main.o" -MT"src/main.d" -o "src/main.o" "../src/main.c" bash.exe: warning: could not find /tmp, please create! ../src/main.c:1:64: fatal error: LPC24xx.h: No such file or directory compilation terminated. make: *** [src/main.o] Error 1 16:19:30 Build Finished (took 300ms)
Solved! Go to Solution.
1.The "bash.exe: warning: could not find /tmp" means your Windows environment doesn’t have a /tmp directory.
I think you can try to create a tmp folder.
2.fatal error: LPC24xx.h: No such file or directory
means your project can’t find the LPC2478 MCU header file.
I think you can try to add the include path to your project settings or
copy the file into your project’s include directory.
BR
Harry
The FT232RL is a USB-to-UART bridge chip.
It only provides a serial port connection for communication.
It cannot provide hardware debug, because it does not support ARM debug protocols.
If it’s debugging, I’ll suggest connecting an LPC-Link2.
BR
Harry
1.The "bash.exe: warning: could not find /tmp" means your Windows environment doesn’t have a /tmp directory.
I think you can try to create a tmp folder.
2.fatal error: LPC24xx.h: No such file or directory
means your project can’t find the LPC2478 MCU header file.
I think you can try to add the include path to your project settings or
copy the file into your project’s include directory.
BR
Harry