bonjour à tous.j' ai un problème l'ors de la compilation de programme ccs avec mplab 8.et CC5X
voici un des programmes que j'ai essayé de compiler.
#include <16f84.h>
/* global variables */
char a;
bit b1, b2;
/* assign names to port pins */
bit in @ PORTB.0;
bit out @ PORTB.1;
void sub( void)
{
char i; /* a local variable */
/* generate 20 pulses */
for ( i = 0; i < 20; i++) {
out = 1;
nop();
out = 0;
}
}
void main( void)
{
// if (TO == 1 && PD == 1 /* power up */) {
// WARM_RESET:
// clearRAM(); // clear all RAM
// }
/* NOTE 1: some devices have a comparator module
that have to be switched off to use certain
pins as digital IO */
//CMCON = 0x07; // switch comparators off
/* NOTE 2: devices having AD converter may need to
configure the pins assigned to 'in' and 'out' as
digital IO */
//ADCON1 = ..
/* First decide the initial output level on the
output port pins, and then define the input/
output configuration. This avoids spikes at the
output pins. */
PORTB = 0b.0000.0010; /* out = 1 */
TRISB = 0b.1111.0001; /* xxxx 0001 */
a = 9; /* value assigned to global variable */
do {
if (in == 0) /* stop if 'in' is low */
break;
sub();
} while ( -- a > 0); /* 9 iterations */
// if (some condition)
// goto WARM_RESET;
/* main is terminated by a SLEEP instruction */
}
l' orsque je compile mon programme,les message dans la fenêtre ' output sont les suivants:
Executing: "C:\Program Files\Microchip\MPASM Suite\CC5X.EXE" +FM "testc3.C" +DF +LN +T +A +M +Z +Y=9 +EA
Error : Unable to open file 'FM'
Error options: -ew: no warning details -ed: no error details -eL: list details
BUILD FAILED: Wed May 27 00:00:29 2009
je ne sait pas à quoi correspondent ces erreures .si quelq'un peut m'aider à resoudre ce problème en sachant que j'ai essayé de compiler plusieurs petits prgrammes en ccs et ce sont toujours les mêmes erreures qui reviennent
merci d'avance pour votre aide .
-----