Skip to content

Commit edb3fa1

Browse files
Updated review comments
1 parent e0e7fb0 commit edb3fa1

File tree

20 files changed

+54
-54
lines changed

20 files changed

+54
-54
lines changed

dspic33e-clock-switch/.main-meta/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"shortDescription":"Clock Switch",
1111
"ide":{
1212
"name":"MPLABX",
13-
"semverRange":">=5.50.0"
13+
"semverRange":">=6.00"
1414
},
1515
"compiler":{
1616
"name":"XC16",

dspic33e-clock-switch/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In this example, CPU is initially configured to run from external secondary osc
88
is initiated to run from Internal FRC.
99
The RA4 pin toggles at frequency of 1/8th of system clock frequency.
1010

11-
extern void clockSwitch(unsigned int r);
11+
extern void clockSwitch(unsigned int r);
1212
This function selects the next clock input and initiates clock switch sequence.
1313

1414

@@ -20,6 +20,6 @@ This function selects the next clock input and initiates clock switch sequence.
2020

2121
## Software Used
2222

23-
- MPLAB® X IDE v5.50 or newer (https://www.microchip.com/mplabx)
24-
- MPLAB® XC16 v1.70 or newer (https://www.microchip.com/xc)
23+
- MPLAB® X IDE v6.00 or newer (https://www.microchip.com/mplabx)
24+
- MPLAB® XC16 v2.00 or newer (https://www.microchip.com/xc)
2525

dspic33e-crc-generation/.main-meta/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"shortDescription":"CRC Generation",
1111
"ide":{
1212
"name":"MPLABX",
13-
"semverRange":">=5.50.0"
13+
"semverRange":">=6.00"
1414
},
1515
"compiler":{
1616
"name":"XC16",

dspic33e-crc-generation/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
In this code examples, CRC module is used to generate CRC for input data.
88

9-
10-
CRC_Calc_ChecksumByte()
9+
CRC_Calc_ChecksumByte()
1110
This function calculates the CRC Checksum for the array of bytes provided by the user based on the polynomial
1211
set in the CRCXORH and CRCXORL registers
1312

@@ -25,6 +24,6 @@ The CRC16 and CRC32 polynomials require 0x0000 to be loaded as the initial value
2524

2625
## Software Used
2726

28-
- MPLAB® X IDE v5.50 or newer (https://www.microchip.com/mplabx)
29-
- MPLAB® XC16 v1.70 or newer (https://www.microchip.com/xc)
27+
- MPLAB® X IDE v6.00 or newer (https://www.microchip.com/mplabx)
28+
- MPLAB® XC16 v2.00 or newer (https://www.microchip.com/xc)
3029

dspic33e-dma-trap/.main-meta/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"shortDescription":"DMA TRAP",
1111
"ide":{
1212
"name":"MPLABX",
13-
"semverRange":">=5.50.0"
13+
"semverRange":">=6.00"
1414
},
1515
"compiler":{
1616
"name":"XC16",

dspic33e-dma-trap/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66

77
DMA generates trap error in the following conditions.
88

9-
DMA Write collision:
10-
DMA write collision occurs when both DMA module and CPU tries to write
11-
to the same DMA RAM memory location.
9+
DMA Write collision:
10+
DMA write collision occurs when both DMA module and CPU tries to write
11+
to the same DMA RAM memory location.
1212

13-
Peripheral Write Collision:
14-
Peripheral write collision occurs when both DMA module and CPU tries to write
15-
to the same peripheral SFR.
13+
Peripheral Write Collision:
14+
Peripheral write collision occurs when both DMA module and CPU tries to write
15+
to the same peripheral SFR.
1616

1717
In this code example, UART is configured to continuously transmit/receive data in loop-back mode.
1818
In the back-ground loop, CPU tries to write to DMA RAM or peripheral SFR to create DMA trap condition.
1919

2020
Select the required condition using the following macro in main.c function to generate DMA trap.
2121

22-
// Source Selection for Trap Creation
23-
#define PER_WRITE_COL 1
24-
#define DMA_WRITE_COL 0
22+
// Source Selection for Trap Creation
23+
#define PER_WRITE_COL 1
24+
#define DMA_WRITE_COL 0
2525

2626

2727
## Hardware Used
@@ -32,6 +32,6 @@ Select the required condition using the following macro in main.c function to ge
3232

3333
## Software Used
3434

35-
- MPLAB® X IDE v5.50 or newer (https://www.microchip.com/mplabx)
36-
- MPLAB® XC16 v1.70 or newer (https://www.microchip.com/xc)
35+
- MPLAB® X IDE v6.00 or newer (https://www.microchip.com/mplabx)
36+
- MPLAB® XC16 v2.00 or newer (https://www.microchip.com/xc)
3737

dspic33e-doze-mode/.main-meta/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"shortDescription":"CPU In DOZE MODE",
1111
"ide":{
1212
"name":"MPLABX",
13-
"semverRange":">=5.50.0"
13+
"semverRange":">=6.00"
1414
},
1515
"compiler":{
1616
"name":"XC16",

dspic33e-doze-mode/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In this example, CPU is setup in DOZE mode to run at 1/128 of the System Clock.
88
Device is initially configured to run at Fcy=60Mhz and then DOZE mode is enabled to run the CPU at 468.75Khz (60M/128).
99
Check the RA4 pin toggles i.e at a frequency of ~234khz.
1010

11-
extern void setDozeRatio(unsigned int r);
11+
extern void setDozeRatio(unsigned int r);
1212
This function sets the required DOZE ratio and enables the DOZE mode
1313

1414
## Hardware Used
@@ -19,6 +19,6 @@ This function sets the required DOZE ratio and enables the DOZE mode
1919

2020
## Software Used
2121

22-
- MPLAB® X IDE v5.50 or newer (https://www.microchip.com/mplabx)
23-
- MPLAB® XC16 v1.70 or newer (https://www.microchip.com/xc)
22+
- MPLAB® X IDE v6.00 or newer (https://www.microchip.com/mplabx)
23+
- MPLAB® XC16 v2.00 or newer (https://www.microchip.com/xc)
2424

dspic33e-flash-rtsp/.main-meta/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"shortDescription":"Flash RTSP code example",
1111
"ide":{
1212
"name":"MPLABX",
13-
"semverRange":">=5.50.0"
13+
"semverRange":">=6.00"
1414
},
1515
"compiler":{
1616
"name":"XC16",

dspic33e-flash-rtsp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ RTSP allows the user to program a ROW (128 instructions or 384 bytes) at a time
2222

2323
## Software Used
2424

25-
- MPLAB® X IDE v5.50 or newer (https://www.microchip.com/mplabx)
26-
- MPLAB® XC16 v1.70 or newer (https://www.microchip.com/xc)
25+
- MPLAB® X IDE v6.00 or newer (https://www.microchip.com/mplabx)
26+
- MPLAB® XC16 v2.00 or newer (https://www.microchip.com/xc)
2727

0 commit comments

Comments
 (0)