Subversion Repositories HomeAutomation

Rev

Rev 80 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 80 Rev 88
1
/*********************************************************************
1
/*********************************************************************
2
 *
2
 *
3
 *                  CAN specification
3
 *                  CAN specification
4
 *
4
 *
5
 *********************************************************************
5
 *********************************************************************
6
 * FileName:        CANdefs.h
6
 * FileName:        $HeadURL: https://svn.auml.se/svn/HomeAutomation/trunk/EmbeddedSoftware/PIC/canBoot/Include/CANdefs.h $
7
 *
-
 
8
 * Author               Date    Comment
7
 * Last changed:    $LastChangedDate: 2006-11-14 11:44:27 +0100 (Tue, 14 Nov 2006) $
9
 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8
 * By:              $LastChangedBy: johboh $
10
 * Johan Böhlin     21-10-06    Original        (Rev 1.0)
9
 * Revision:        $Revision: 88 $
11
 ********************************************************************/
10
 ********************************************************************/
12
// $Id: CANdefs.h 80 2006-11-11 20:22:39Z johboh $
-
 
13
 
11
 
14
#ifndef CANDEFS_H
12
#ifndef CANDEFS_H
15
#define CANDEFS_H
13
#define CANDEFS_H
16
 
14
 
17
#include <compiler.h>
15
#include <compiler.h>
18
 
16
 
19
#define CAN_BAUD 0.500000 //in Mbits/s
17
#define CAN_BAUD 0.500000 //in Mbits/s
20
//#define CAN_LOOPBACK_MODE
18
//#define CAN_LOOPBACK_MODE
21
 
19
 
22
 
20
 
23
// TQ(us) = (2 * (BRP + 1))/FOSC(MHz)
21
// TQ(us) = (2 * (BRP + 1))/FOSC(MHz)
24
// Nominal Bit Rate(kbit/s) = 1 / TBIT = 1 / (TQ(us) * 8)
22
// Nominal Bit Rate(kbit/s) = 1 / TBIT = 1 / (TQ(us) * 8)
25
// Where 8 is nominal bit time.
23
// Where 8 is nominal bit time.
26
// From this, BRP can be calculated.
24
// From this, BRP can be calculated.
27
//
25
//
28
// Nominal Bit Rate(kbit/s) = 1 / TBIT = 1 / ((2 * (BRP + 1))/FOSC(MHz) * 8)
26
// Nominal Bit Rate(kbit/s) = 1 / TBIT = 1 / ((2 * (BRP + 1))/FOSC(MHz) * 8)
29
                   
27
                   
30
#define CAN_BRP (int)(CLOCK_FOSC/(CAN_BAUD * 16) - 1)
28
#define CAN_BRP (int)(CLOCK_FOSC/(CAN_BAUD * 16) - 1)
31
 
29
 
32
 
30
 
33
#endif //CANdefs.h
31
#endif //CANdefs.h
34
 
32