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.

[Moved] CAN Implementation Using PIC16F877A and MCP2515

Status
Not open for further replies.

rejithshreeram

Newbie level 1
Newbie level 1
Joined
Apr 29, 2015
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Visit site
Activity points
52
Reference Previous Thread:

https://www.edaboard.com/threads/271911/

I Done your Circuit and i developed my own CAN Code (Loop Back Mode). But I am not getting output.

The main abstract of that code is pic16f877a will receive a character from terminal and send to CAN Controller. the CAN controller will reply that same data to controller and the controller will display that character to terminal.

The code is given below

Code C - [expand]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
#include<pic.h>
 
#define DATA PORTD
#define RS RC0
#define EN RC1
#define RST RB0
#define CS RC2
 
char uf=0,cf=0,ud,cd[8];
 
void uartinit(void);
void uartsent(char);
void cansent(char);
void canread(void);
void intinit(void);
void spiinit(void);
void spisent(char);
void mcpinit(void);
void lcdinit(void);
void lcddat(char);
void lcdcmd(char);
void lcddel(void);
 
int main(void)
{
    uartinit();
    spiinit();
    intinit();
    lcdinit();
    mcpinit();
    lcdcmd(0x80);
    lcddat('$');
    uartsent('$');
    while(1)
    {
        if(uf)
        {
            uf=0;
            lcdcmd(0xc0);
            lcddat('U');
            cansent(ud);
 
        }
        
        if(cf)
        {
            cf=0;
            canread();
            lcdcmd(0xc8);
            lcddat(cd[0]);
            lcddat(cd[1]);
            lcddat(cd[2]);
            lcddat(cd[3]);
            lcddat(cd[4]);
            lcddat(cd[5]);
            lcddat(cd[6]);
            lcddat(cd[7]);
        }
    }
}
 
static void interrupt ISR(void)
{
    if(RCIF)
    {
        RCIF=0;
        ud=RCREG;
        uf=1;
    }
    
    if(RBIF)
    {
        RBIF=0;
        if(!RB4)
        {
            cf=1;
        }
    }
}
 
void cansent(char c)
{
    char x=0;   
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x36);
    spisent(c);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x37);
    spisent(c);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x38);
    spisent(c);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x39);
    spisent(c);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x3a);
    spisent(c);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x3b);
    spisent(c);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x3c);
    spisent(c);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x3d);
    spisent(c);
    CS=1;lcddel();
    
        
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x30);
    spisent(0x04);
    CS=1;lcddel();
 
    do
    {
    
        CS=0;lcddel();
        spisent(0x03);
        spisent(0x2c);
        spisent(0x00);
        CS=1;lcddel();
        x=SSPBUF;
        x=(x&0x04);
    }
    while(x!=0x04);
}
 
void canread(void)
{
    //  CLEAR INTERRUPT FLAGS
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x2c);
    spisent(0x00);
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D0)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x66);
    spisent(0x00);
    cd[0]=SSPBUF;
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D1)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x67);
    spisent(0x00);
    cd[1]=SSPBUF;
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D2)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x68);
    spisent(0x00);
    cd[2]=SSPBUF;
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D3)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x69);
    spisent(0x00);
    cd[3]=SSPBUF;
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D4)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x6a);
    spisent(0x00);
    cd[4]=SSPBUF;
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D5)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x6b);
    spisent(0x00);
    cd[5]=SSPBUF;
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D6)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x6c);
    spisent(0x00);
    cd[6]=SSPBUF;
    CS=1;lcddel();
    
    //  READING BUFFER DATAS(RXB0D7)
    CS=0;lcddel();
    spisent(0x03);
    spisent(0x6d);
    spisent(0x00);
    cd[7]=SSPBUF;
    CS=1;lcddel();
    
/*  CS=0;lcddel();
    spisent(0x02);
    spisent(0x30);
    spisent(0x04);
    CS=1;lcddel();
*/  
}
 
void uartinit(void)
{
    TXSTA=0x24;
    RCSTA=0x90;
    SPBRG=25;
}
 
void uartsent(char c)
{
    TXREG=c;
    while(!TXIF);
}
 
void intinit(void)
{
    GIE=1;PEIE=1;
    RBIE=1;RBIF=0;
    RCIE=1;RCIF=0;
}
 
void spiinit(void)
{
    TRISC5=0;
    TRISC3=0;
    TRISC2=0;
    
    SMP=0;CKP=0;
    CKE=1;
    SSPCON=0x22;
}
 
void spisent(char c)
{
    SSPBUF=c;
    while(!SSPIF);
}
 
void mcpinit(void)
{
    TRISB0=0;CS=0;      //      Chip Select
    RB0=0;lcddel();     //      Reset MCP 2515
    RB0=1;CS=1;
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x0f);
    spisent(0x80);
    CS=1;lcddel();
    
    lcddel();lcddel();
    lcddel();lcddel();  
    lcddel();lcddel();
    lcddel();lcddel();  
 
    CS=0;lcddel();      //
    spisent(0x02);      //      PIN CONFIGURATIONS
    spisent(0x0c);
    spisent(0x0f);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);      //      TXB0CTRL
    spisent(0x30);
    spisent(0x00);
    CS=1;lcddel();
    
    CS=0;lcddel();      //
    spisent(0x02);              
    spisent(0x31);      //      TXB0SIDH
    spisent(0x55);
    CS=1;lcddel();
        
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x32);      //      TXB0SIDL
    spisent(0x40);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x35);      //      TXB0DLC
    spisent(0x08);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x60);      //      RXB0CTRL
    spisent(0x20);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x61);      //      RXB0SIDH
    spisent(0x00);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x62);      //      RXB0SIDL
    spisent(0x00);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x00);      //      RXF0SIDH
    spisent(0x55);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x01);      //      RXF0SIDL
    spisent(0x40);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x20);      //      RXM0SIDH
    spisent(0xff);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x21);      //      RXM0SIDL
    spisent(0xe0);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x2a);      //
    spisent(0x93);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x29);
    spisent(0xb8);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x28);
    spisent(0x05);
    CS=1;lcddel();
    
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x2b);
    spisent(0x01);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x2c);
    spisent(0x00);
    CS=1;lcddel();
 
    CS=0;lcddel();
    spisent(0x02);
    spisent(0x0f);
    spisent(0x40);
    CS=1;lcddel();
    
    lcddel();lcddel();
    lcddel();lcddel();
    lcddel();lcddel();
    lcddel();lcddel();
}
 
void lcdinit(void)
{
    TRISC0=0;
    TRISC1=0;
    TRISD=0;
    
    lcdcmd(0x38);lcdcmd(0x01);
    lcdcmd(0x06);lcdcmd(0x0c);
}
 
void lcddat(char c)
{
    RS=1;
    EN=0;
    DATA=c;
    EN=1;
    lcddel();
    EN=0;
}
 
void lcdcmd(char c)
{
    RS=0;
    EN=0;
    DATA=c;
    EN=1;
    lcddel();
    EN=0;
}
 
void lcddel(void)
{
    int i;
    for(i=0;i<200;i++);
}




please check the code...............
 
Last edited by a moderator:

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top