Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Iar embedded workbench

Status
Not open for further replies.

Mahesh_vs

Newbie level 2
Joined
Sep 20, 2010
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Bangalore, India
Activity points
1,294
Dear All,

I am using IAR EMBEDDED WORKBENCH kickstart 6.0 version IDE.
But, while i am trying to build all files in the project, the compiler gives following error.

Build error: Multiple tools write to the same file.

And the project is not built. Please guide me to solve the issue & execute the project.

Regards
Mahesh V S
 

Hi Everybody

I´ve following problem in a iar c embedded workbench v.3.1

// Working with EEPROM
#ifndef _eeprom_h_
#define _eeprom_h_

__eeprom __no_init unsigned int eeWaitState @ 0x01;

void EEPROMInit (void);

#endif


When a try to compile this source code, I get this error


Error[Pe077]: this declaration has no storage class or type specifier

I checked several solutions but nothing solve

Thanks in advance for your help
 

Dear All
I am try to built a template project of STM32F10XX on IAR Embedded workbench tools . I am getting error as "Incompatible declaration " . When i go to the line it point to the line containing extern keyword. plz help me as soon as possible
 

HI,
Wrt the Incompatible declaration, without seeing your code its tough to tell. But here's the extract from a link below

You cannot combine an assignment and an extern declaration.

First declare it as extern:

extern int stack_counter;
Then assign it:

stack_counter = 0; //0 is the default value anyway!

https://stackoverflow.com/questions/4268589/warning-in-extern-declaration


WRT to IAR download the latest version of IAR from the source website. That might solve all these errors.


All the Best
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top