-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
59 lines (46 loc) · 1.76 KB
/
index.html
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
<html>
<head>
<style>
h2 {
text-decoration: bold;
}
h3 {
text-decoration: underline;
}
ol,ul {
line-height: 200%;
}
</style>
</head>
<body lang=EN-US link=blue vlink=purple>
<table border="0" cellspacing="0" cellpadding="0">
<tr >
<th bgcolor="lightgrey">
<h2><b>DEPRECTION NOTICE:</b>This repo and associated examples are deprecated.</h2>
</th>
</tr>
<tr>
<td bgcolor="lightgrey">Please refer to the latest examples at:<br>
<a href="https://github.com/microchip-pic-avr-examples/dspic33_dsc_bootloader_code_examples">https://github.com/microchip-pic-avr-examples/dspic33_dsc_bootloader_code_examples</a>
</td>
</tr>
</table>
<h1>PIC24/dsPIC CAN/CAN-FD Bootloader Demo</h1>
<h2>Summary</h2>
An example bootloader using the 16-bit MCC bootloader and the CAN or CAN-FD peripheral.
<h2>Related Documentation</h2>
https://www.microchip.com/16-bit-bootloader
<h2>Setup And Operation</h2>
There are 3 configurations provided in this demo:<br>
<ol>
<li>Using CAN classic on a device with the CAN-FD module</li>
<li>Using CAN-FD on a device with the CAN-FD module</li>
<li>Using CAN classic on a device with the enhanced CAN controller</li>
</ol>
The hardware and software setup is different for each of these use cases. There are readme*.html files associated with each folder that describe the required hardware and software as well as how to setup and run each of the corresponding demos.<br>
<a href="./dspic33ck-can/">./dspic33ck-can/</a><br>
<a href="./dspic33ck-canfd/">./dspic33ck-canfd/</a><br>
<a href="./dspic33ep-can2.0b/">./dspic33ep-can2.0b/</a><br>
<a href="./dspic33ck-canfd-ta100/">./dspic33ck-canfd-ta100/</a><br>
</body>
</html>