Skip to content

Commit 49f40e7

Browse files
committed
adding index.html files and renaming help files to be consistent.
1 parent 5454d25 commit 49f40e7

File tree

5 files changed

+163
-0
lines changed

5 files changed

+163
-0
lines changed

dspic33ck-can/index.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<html>
2+
3+
<head>
4+
<style>
5+
h2 {
6+
text-decoration: bold;
7+
}
8+
9+
h3 {
10+
text-decoration: underline;
11+
}
12+
13+
ol,ul {
14+
line-height: 200%;
15+
}
16+
</style>
17+
</head>
18+
19+
<body lang=EN-US link=blue vlink=purple>
20+
<h1>PIC24/dsPIC CAN Bootloader Demo</h1>
21+
22+
<h2>Summary</h2>
23+
24+
An example bootloader using the 16-bit MCC bootloader and the CAN-FD peripheral in CAN classic mode.
25+
26+
<h2>Related Documentation</h2>
27+
28+
https://www.microchip.com/16-bit-bootloader
29+
30+
<h2>Setup And Operation</h2>
31+
32+
The demo setup and operation details are provided in the <a href="readme_run_demo.html">readme_run_demo.html</a> file provided in this folder.
33+
34+
<h2>Porting the Demo</h2>
35+
36+
The <a href="readme_create_new_bootloader_project.html">readme_create_new_bootloader_project.html</a> file details how to take this example and recreate it on a different processor.<br><br>
37+
</body>
38+
39+
</html>

dspic33ck-canfd/index.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<html>
2+
3+
<head>
4+
<style>
5+
h2 {
6+
text-decoration: bold;
7+
}
8+
9+
h3 {
10+
text-decoration: underline;
11+
}
12+
13+
ol,ul {
14+
line-height: 200%;
15+
}
16+
</style>
17+
</head>
18+
19+
<body lang=EN-US link=blue vlink=purple>
20+
<h1>PIC24/dsPIC CAN-FD Bootloader Demo</h1>
21+
22+
<h2>Summary</h2>
23+
24+
An example bootloader using the 16-bit MCC bootloader and the CAN-FD peripheral in CAN-FD mode.
25+
26+
<h2>Related Documentation</h2>
27+
28+
https://www.microchip.com/16-bit-bootloader
29+
30+
<h2>Setup And Operation</h2>
31+
32+
The demo setup and operation details are provided in the <a href="readme_run_demo.html">readme_run_demo.html</a> file provided in this folder.
33+
34+
<h2>Porting the Demo</h2>
35+
36+
The <a href="readme_create_new_bootloader_project.html">readme_create_new_bootloader_project.html</a> file details how to take this example and recreate it on a different processor.<br><br>
37+
</body>
38+
39+
</html>

dspic33ck-canfd/readme_create_bootloader_with_canfd.html renamed to dspic33ck-canfd/readme_create_new_bootloader_project.html

File renamed without changes.

dspic33ep-can2.0b/index.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<html>
2+
3+
<head>
4+
<style>
5+
h2 {
6+
text-decoration: bold;
7+
}
8+
9+
h3 {
10+
text-decoration: underline;
11+
}
12+
13+
ol,ul {
14+
line-height: 200%;
15+
}
16+
</style>
17+
</head>
18+
19+
<body lang=EN-US link=blue vlink=purple>
20+
<h1>PIC24/dsPIC CAN2.0B Bootloader Demo</h1>
21+
22+
<h2>Summary</h2>
23+
24+
An example bootloader using the 16-bit MCC bootloader and the CAN2.0B peripheral. This peripheral is only capable of CAN classic transmission.
25+
26+
<h2>Related Documentation</h2>
27+
28+
https://www.microchip.com/16-bit-bootloader
29+
30+
<h2>Setup And Operation</h2>
31+
32+
The demo setup and operation details are provided in the <a href="readme_run_demo.html">readme_run_demo.html</a> file provided in this folder.
33+
34+
<h2>Porting the Demo</h2>
35+
36+
The <a href="readme_create_new_bootloader_project.html">readme_create_new_bootloader_project.html</a> file details how to take this example and recreate it on a different processor.<br><br>
37+
</body>
38+
39+
</html>

index.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<html>
2+
3+
<head>
4+
<style>
5+
h2 {
6+
text-decoration: bold;
7+
}
8+
9+
h3 {
10+
text-decoration: underline;
11+
}
12+
13+
ol,ul {
14+
line-height: 200%;
15+
}
16+
</style>
17+
</head>
18+
19+
<body lang=EN-US link=blue vlink=purple>
20+
<h1>PIC24/dsPIC CAN/CAN-FD Bootloader Demo</h1>
21+
22+
<h2>Summary</h2>
23+
24+
An example bootloader using the 16-bit MCC bootloader and the CAN or CAN-FD peripheral.
25+
26+
<h2>Related Documentation</h2>
27+
28+
https://www.microchip.com/16-bit-bootloader
29+
30+
<h2>Setup And Operation</h2>
31+
32+
There are 3 configurations provided in this demo:<br>
33+
<ol>
34+
<li>Using CAN classic on a device with the CAN-FD module</li>
35+
<li>Using CAN-FD on a device with the CAN-FD module</li>
36+
<li>Using CAN classic on a device with the enhanced CAN controller</li>
37+
</ol>
38+
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>
39+
40+
<a href="https://microchip-pic-avr-examples.github.io/pic24-dspic-can-canfd-bootloader/dspic33ck-can/">https://microchip-pic-avr-examples.github.io/pic24-dspic-can-canfd-bootloader/dspic33ck-can/</a><br>
41+
<a href="https://microchip-pic-avr-examples.github.io/pic24-dspic-can-canfd-bootloader/dspic33ck-canfd/">https://microchip-pic-avr-examples.github.io/pic24-dspic-can-canfd-bootloader/dspic33ck-canfd/</a><br>
42+
<a href="https://microchip-pic-avr-examples.github.io/pic24-dspic-can-canfd-bootloader/dspic33ep-can2.0b">https://microchip-pic-avr-examples.github.io/pic24-dspic-can-canfd-bootloader/dspic33ep-can2.0b</a><br>
43+
44+
</body>
45+
46+
</html>

0 commit comments

Comments
 (0)