Skip to content

Commit cc81eca

Browse files
MPAE-18454: readme bugfix
1 parent b3fe5f7 commit cc81eca

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.main-meta/main.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"content": {
55
"metaDataVersion": "1.3.0",
66
"name": "com.microchip.mcu8.mplabx.project.pic18f56q24-cnano-8bit-mdfu-client-mplab-mcc",
7-
"version": "1.2.0",
7+
"version": "1.2.1",
88
"displayName": "Getting Started with the 8-Bit MDFU Client for PIC18F56Q24",
99
"projectName": "pic18f56q24-cnano-8bit-mdfu-client-mplab-mcc",
1010
"shortDescription": "GitHub Example for the 8bit MDFU Client Library using PIC18F56Q24 with a CNANO board.",

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This example demonstrates:
3535

3636
- PIC18F56Q24 Curiosity Nano [(EV01E86A)](https://www.microchip.com/en-us/development-tool/ev01e86a)
3737

38-
[![PIC18F56Q24_CNano](images/230928-MCU8-PHOTO-EV01E86A-Front-Transparent.png)](images/230928-MCU8-PHOTO-EV01E86A-Front-Transparent.png)
38+
[![PIC18F56Q24_CNano](images/230928-mcu8-photo-ev01e86a-front-transparent.PNG)](images/230928-mcu8-photo-ev01e86a-front-transparent.PNG)
3939

4040
## Setup
4141

@@ -138,9 +138,9 @@ This section is consistent for any example created in this repository.
138138
**Clock And Configuration**
139139
- Set the clock and configuration bits to the same values that were set in the MDFU Client
140140

141-
[![CLK](images/ClockSetup_App.PNG)](images/ClockSetup_App.PNG)
141+
[![CLK](images/ClockSetup_App.png)](images/ClockSetup_App.png)
142142

143-
[![CFG](images/ConfigBitsSetup_App.PNG)](images/ConfigBitsSetup_App.PNG)
143+
[![CFG](images/ConfigBitsSetup_App.png)](images/ConfigBitsSetup_App.png)
144144

145145
**I/O Pins**
146146
- GPIO Input: RF3

spi/Readme.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@
2121
- I/O Pin Entry: Enabled
2222
- Memory Verification: CRC32
2323

24-
[![MDFU](../images/MDFUClientSetup_SPI.PNG)](../images/MDFUClientSetup_SPI.PNG)
24+
[![MDFU](../images/MDFUClientSetup_SPI.png)](../images/MDFUClientSetup_SPI.png)
2525

2626
**SPI**
2727
- Custom Name: SERCOM
2828
- BOOT_CONFIG: Mode 0
2929
- Interrupt Driven: Disabled
3030

31-
[![SPI](../images/SPIDriverSetup.PNG)](../images/SPIDriverSetup.PNG)
31+
[![SPI](../images/SPIDriverSetup.png)](../images/SPIDriverSetup.png)
3232

3333
**MSSP1 PLIB**
3434
- Serial Protocol: SPI
3535
- Enable Client Select: Enabled
3636

37-
[![SPI_PLIB](../images/SPIPLIBSetup.PNG)](../images/SPIPLIBSetup.PNG)
37+
[![SPI_PLIB](../images/SPIPLIBSetup.png)](../images/SPIPLIBSetup.png)
3838

3939
**SPI Pins**
4040
- MSSP SCK: RC1
@@ -43,7 +43,7 @@
4343
- MSSP SS (Chip Select): RA5
4444
- Custom Name: CHIP_SELECT
4545

46-
[![SPI_Pins](../images/SPIPortsSetup.PNG)](../images/SPIPortsSetup.PNG)
46+
[![SPI_Pins](../images/SPIPortsSetup.png)](../images/SPIPortsSetup.png)
4747

4848
**8-Bit MDFU Client I/O**
4949
- BOOT INDICATE: RF2
@@ -60,7 +60,7 @@
6060
- ROM Ranges: This option is configured based on the start address of the application
6161
- For example, if the application starts at 0x2000 then this value will reflect as `0-1FFF`
6262

63-
[![IO-Settings](../images/ProjectProperties_SPI.PNG)](../images/ProjectProperties_SPI.PNG)
63+
[![IO-Settings](../images/ProjectProperties_SPI.png)](../images/ProjectProperties_SPI.png)
6464

6565
### Application Setup
6666
Refer to the [Application Setup](../README.md#application-setup) section in the main Readme file.
@@ -82,11 +82,11 @@ This example shows how to execute the CRC32 verification example and update the
8282

8383
3. Right click, then select **Clean and Build**.
8484

85-
[![CleanBuild](../images/CleanAndBuildMDFU_SPI.PNG)](../images/CleanAndBuildMDFU_SPI.PNG)
85+
[![CleanBuild](../images/CleanAndBuildMDFU_SPI.png)](../images/CleanAndBuildMDFU_SPI.png)
8686

8787
4. Program the MDFU client project.
8888

89-
[![ProgramMDFU](../images/ProgramMDFU_SPI.PNG)](../images/ProgramMDFU_SPI.PNG)
89+
[![ProgramMDFU](../images/ProgramMDFU_SPI.png)](../images/ProgramMDFU_SPI.png)
9090

9191
**Bootloader Operation After Initial Programming**
9292

@@ -109,7 +109,7 @@ After initial programming, the LED must be on.
109109

110110
Right click, then select Clean and Build
111111

112-
[![CleanBuild_App](../images/CleanAndBuildApp_SPI.PNG)](../images/CleanAndBuildApp_SPI.PNG)
112+
[![CleanBuild_App](../images/CleanAndBuildApp_SPI.png)](../images/CleanAndBuildApp_SPI.png)
113113

114114
4. Build the Application Image File using [pyfwimagebuilder](https://pypi.org/project/pyfwimagebuilder/).
115115

@@ -124,7 +124,7 @@ Below is an example of the command used in the above step.
124124

125125
`pyfwimagebuilder build -i "application_hex_file.hex" -c "mdfu_config_file.toml" -o output.img`
126126

127-
[![build_img](../images/BuildTheImage_SPI.PNG)](../images/BuildTheImage_SPI.PNG)
127+
[![build_img](../images/BuildTheImage_SPI.png)](../images/BuildTheImage_SPI.png)
128128

129129
> **Tip**: The configuration TOML file is generated by the MDFU Client project.
130130
@@ -144,7 +144,7 @@ Below is an example of the command used in the above step.
144144

145145
`pymdfu update --tool mcp2210 --image ./output.img --chip-select 7 --clk-speed 50000`
146146

147-
[![transfer_img](../images/SendTheImage_SPI.PNG)](../images/SendTheImage_SPI.PNG)
147+
[![transfer_img](../images/SendTheImage_SPI.png)](../images/SendTheImage_SPI.png)
148148

149149
**Application Has Been Updated Successfully**
150150

0 commit comments

Comments
 (0)