Bird
0
0
PCB Designbi_tool~10 mins

Interactive router modes in PCB Design - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to activate the interactive router in the PCB design software.

PCB Design
router.activateMode('[1]');
Drag options to blanks, or click blank then click option'
Apreview
Bauto
Cmanual
Dinteractive
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'manual' instead of 'interactive' which is the correct mode name.
Choosing 'auto' which is for automatic routing.
2fill in blank
medium

Complete the code to set the routing layer to the top copper layer in interactive mode.

PCB Design
router.setLayer('[1]');
Drag options to blanks, or click blank then click option'
Abottom_copper
Bsilkscreen
Ctop_copper
Dmechanical
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting 'bottom_copper' which is the opposite side.
Choosing 'silkscreen' which is for markings, not routing.
3fill in blank
hard

Fix the error in the code to correctly start the interactive router with grid snapping enabled.

PCB Design
router.start({ [1]: true });
Drag options to blanks, or click blank then click option'
AsnapToGrid
BsnapGrid
CgridSnap
DenableGrid
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'snapGrid' which is incorrect property name.
Using 'enableGrid' which is not recognized.
4fill in blank
hard

Fill both blanks to configure the interactive router to use the differential pair mode and set the clearance to 0.2mm.

PCB Design
router.configure({ mode: '[1]', clearance: [2] });
Drag options to blanks, or click blank then click option'
Adifferential_pair
B0.2
C0.5
Dsingle_trace
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'single_trace' mode instead of 'differential_pair'.
Setting clearance to '0.5' which is larger than required.
5fill in blank
hard

Fill all three blanks to start the interactive router with the following settings: mode as 'auto_route', enable via stitching, and set the trace width to 0.3mm.

PCB Design
router.start({ mode: '[1]', viaStitching: [2], traceWidth: [3] });
Drag options to blanks, or click blank then click option'
Ainteractive
Btrue
C0.3
Dauto_route
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'interactive' mode instead of 'auto_route'.
Setting via stitching to 'false' or '0'.
Using trace width other than '0.3'.