Skip to content

Commit ccff3ef

Browse files
Merge pull request #85 from MicrochipTech/typo_fixes
Typo fixes
2 parents 7c15566 + 8fdcd51 commit ccff3ef

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Training1/readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ directions below.
514514
looking for Eclipse “.project” files in the subdirectories. Click
515515
Finish to import.
516516

517-
<p align="center">="center"><img src=".//media/image32.png" /></p></br>
517+
<p align="center"><img src=".//media/image32.png" /></p></br>
518518

519519
7. After importing you should see all 9 projects in the Project
520520
Explorer on the left.
@@ -1747,7 +1747,7 @@ is presented in Figure 20.
17471747
void functional_unit_contention( volatile int array[N] ) {
17481748
#pragma HLS loop unroll factor(1)
17491749
#pragma HLS loop pipeline
1750-
for (int I = 0; i < N; i++) {
1750+
for (int i = 0; i < N; i++) {
17511751
int mult1 = coeff1 * coeff1;
17521752
int mult2 = coeff2 * coeff2;
17531753
array[i] = mult1 + mult2;
@@ -3489,7 +3489,7 @@ generated Verilog Cores into Libero® SoC SmartDesign.
34893489
3. Launch Libero® SoC 2024.2 and open the project: “`Libero_training1/Libero_training1.prjx`
34903490

34913491
4. Navigate to the Design Hierarchy and search for “canny”. Right click
3492-
the canny_top design component and select Delete. This is to make
3492+
the canny_top design component and select Unlink. This is to make
34933493
sure there are no duplicated blocks before importing the new
34943494
canny_top HDL+ block from SmartHLS.
34953495
<p align="center"><img src=".//media/image139.png"></p></br>
@@ -3520,10 +3520,10 @@ generated Verilog Cores into Libero® SoC SmartDesign.
35203520
the SmartDesign toolbar for `LegUp_Image_Filters` and each parent
35213521
component (`video_pipelining`, `VIDEO_KIT_TOP`).
35223522

3523-
10. Go to the Design Flow tab and double click Generate FPGA Array Data.
3523+
10. Go to the Design Flow tab and double click Generate FPGA Array Data.
35243524
This should take 1-2h to finish running.
35253525

3526-
11. The Mi-V soft processor receives configuration from the Video
3526+
11. The Mi-V soft processor receives configuration from the Video
35273527
Control GUI running on the PC via the USB-UART. The Mi-V uses this
35283528
configuration to control the Image/Video Processing block. To
35293529
program the executable that runs on the Mi-V, double click

Training2/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ performance.
569569
18 if (!done) {
570570
19 // Pipeline for extra performance.
571571
20 #pragma HLS loop pipeline
572-
21 for (int I = 0; i < 100; i++)
572+
21 for (int i = 0; i < 100; i++)
573573
22 buf[i] = input_fifo.read();
574574
23 done = true;
575575
24 }
@@ -585,7 +585,7 @@ performance.
585585
34 // Pipeline for extra performance.
586586
35 #pragma HLS loop pipeline
587587
36 for (int i = 0; i < 100; i++)
588-
37 sum += buf[i\];
588+
37 sum += buf[i];
589589
38 done = false;
590590
39 output_fifo.write(sum);
591591
40 }

Training3/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1745,7 +1745,7 @@ Libero SoC 2024.2:
17451745
navigating to and clicking
17461746
`Training3/Libero/Libero_training3/Libero_training3.prjx`.
17471747
2. Navigate to the Design Hierarchy and search for “`wide_mult`”. Right
1748-
click the `wide_mult_axi_top` design component and select Delete.
1748+
click the `wide_mult_axi_top` design component and select Unlink.
17491749
We want to avoid any duplicate blocks when importing the new wide
17501750
multiply design from SmartHLS.
17511751

0 commit comments

Comments
 (0)