Bonjour,
je ne parviens pas à compiler ce petit bout de code, avec MPLAB compilateur MCC18 pour PIC18F...
j'ai ce message récurrent:voici mon code (le but étant de formater un entier vers une chaine de caractères):section 'STDLIB', unsupported relocation type
Merci,Code:#include <p18f458.h> #include <stdlib.h> #pragma config OSC=HS, OSCS=OFF // Oscillateur Selection, Oscillateur Switch #pragma config PWRT=OFF, BOR=OFF, BORV=45 // Power-up Timer, Brown-out Reset, Brown-out Voltage #pragma config WDT=OFF, WDTPS=128 // Watchdog Timer, Watchdog Protscaler #pragma config STVR=OFF, LVP=OFF, DEBUG=OFF // Stack Overflow Reset, LowVoltage ICSP, Background Debugger void main(void) { int i = 15; char str[20]; itoa(i,str); }
Johan
-----