Name translation failed......

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

 running the sample program as indicated in  : AN75320

   

Starting MAKE...

   
    creating project.mk    
   
    name translation failed on C:/PROGRA~1/Cypress/PSoC\ Designer/5.4/Common/CypressSemiBuildMgr - 3   
   
    name translation failed on C:\PROGRA~1\Cypress\PSoC - 2   
   
    name translation failed on Designer\5.4\Common\CypressSemiBuildMgr\tools\include\CY8C29000 - 3   
   
    make: *** No rule to make target `D:\PSOC', needed by `lib/obj/lcd.o'.  Stop.   
   
        
   
    Project1_HelloWorld - 1 error(s) 0 warning(s) 19:47:41   
   
        
   
        
   
    running on xp 32 bit.......   
   
    Please suggest whats the solution.....   
   
        
0 Likes
1 Solution
Anonymous
Not applicable

Please kindly follow this procedure.

- Uninstall PSoC Designer 5.4
- Delete the directory C:\Program Files\Cypress\PSoC Designer\5.4
- From the Start menu, select Run.
- In the Run window, type cmd.
- In the DOS window, type fsutil behavior query disable8dot3
- If the result is disable8dot3 = 0 you are done.
- If the result is disable8dot3 = 1, type fsutil behavior set disable8dot3=0.
- Reboot the computer
- Install PSoC Designer 5.4 in the directory C:\Cypress
- Reboot the system
- Create a new empty project and check the build process

View solution in original post

0 Likes
7 Replies
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked
        Can you please post the complete project here, so that we all can have a look at? (File -> Archive Project and the upload the resulting .zip file hereunsing ie)   
   
Bob   
0 Likes
Anonymous
Not applicable

 //----------------------------------------------------------------------------

   

// C main line

   

//----------------------------------------------------------------------------

   

 

   

#include <m8c.h>        // part specific constants and macros

   

#include "PSoCAPI.h"    // PSoC API definitions for all User Modules

   

 

   

 

   

void main(void)

   

{

   

// M8C_EnableGInt ; // Uncomment this line to enable Global Interrupts

   

// Insert your main routine code here.

   

static unsigned int index;

   

LCD_Start();

   

LCD_Position(0,0);

   

LCD_PrCString("Hello World!");

   

LCD_Position(1,0);

   

LCD_PrCString("I am Alive!");

   

LED1_PWM_Start();

   

LED2_PWM_Start();

   

while(1)

   

{

   

 PRT0DR ^= 0x02;

   

 for(index = 0; index < 22000;index++);

   

}

   

}

   
        
0 Likes
Anonymous
Not applicable
0 Likes
Anonymous
Not applicable

 please find the attached project.

0 Likes
lock attach
Attachments are accessible only for community members.
Anonymous
Not applicable

Please find the attached project

0 Likes
SampathS_11
Moderator
Moderator
Moderator
250 sign-ins 250 solutions authored 5 questions asked

 This issue is documented in a Knowledge Base Article, at the following link

   

http://www.cypress.com/?id=4&rID=28169

0 Likes
Anonymous
Not applicable

Please kindly follow this procedure.

- Uninstall PSoC Designer 5.4
- Delete the directory C:\Program Files\Cypress\PSoC Designer\5.4
- From the Start menu, select Run.
- In the Run window, type cmd.
- In the DOS window, type fsutil behavior query disable8dot3
- If the result is disable8dot3 = 0 you are done.
- If the result is disable8dot3 = 1, type fsutil behavior set disable8dot3=0.
- Reboot the computer
- Install PSoC Designer 5.4 in the directory C:\Cypress
- Reboot the system
- Create a new empty project and check the build process

0 Likes