bonsoir, je viens d'essayer d'utiliser MicroC. pourriez vous me dire si j'ai bien fait car ça n'a pas l'air de marcher:
- en connectant l'easydspic, clignottent successivement RB, RC RD et RF.
- dans microC, je cree un nouveau projet
- je cree un nouveau fichier nommé "hello world".
et là il me dit que le fichier *.c n'existe pas.
-je regarde sur le bureau, et je vois qu'il a créé un "hello world.c"
- je colle ce code:
- j'appuie sur build, et de nouveau "file '.c' not found"Code:/* * Project name: Led_Blinking (The simplest simple example) * Target Platform: dsPIC * Copyright: (c) mikroElektronika, 2006. * Revision History: 20050410: - Initial release; * Description: Simple "Hello world" example for the world of dsPIC MCUs; * Test configuration: MCU: dsPIC30F4013 Dev.Board: EASYdsPIC2 Oscillator: EC, PLL4 = 4x10.000MHz Ext. Modules: None. SW: mikroC for dsPIC v1.0.0.0. * NOTES: None. */ int main() { //--- turn off A/D inputs ADPCFG = 0xFFFF; LATB = 0; TRISB = 0; LATC = 0; TRISC = 0; LATD = 0; TRISD = 0; LATF = 0xFFFF; TRISF = 0; while(1) { LATF = ~LATF; LATB = ~LATB; Delay_ms(2000); LATB = ~LATB; LATC = ~LATC; Delay_ms(2000); LATC = ~LATC; LATD = ~LATD; Delay_ms(2000); LATD = ~LATD; LATF = ~LATF; Delay_ms(2000); } }//~!
?????
- je zappe ce probleme et j'ouvre dsPICFLASH Programmer
- j'appuie sur load hex, et je cherche hello world.hex (fournis)
- j'appuie sur write
- et là je vois une barre qui defile, suite à quoi les leds arrete de clignotter. pourtant le "hello world" devrait les faire clignotter.
auriez vous une explication?
merci
-----