From: Joseph Coffland Date: Mon, 11 Nov 2019 18:37:49 +0000 (-0800) Subject: docs X-Git-Url: https://git.buildbotics.com/?a=commitdiff_plain;h=88beefdd17a0d0f8608963289d0241ca5c314e97;p=bbctrl-firmware docs --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 35a6ada..367853b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,15 @@ Buildbotics CNC Controller Firmware Changelog ## v0.4.12 - Segments straddle arc in linearization. - Control max-arc-error with GCode var. - - Implemented path modes G61, G61.1 & G64 with naive CAM but not blending, yet. + - Implemented path modes G61, G61.1 & G64 with naive CAM and basic blending. - Log GCode messages to "Messages" tab. - Acknowledging a message on one browser clears it for all. - Automatically reload Web view when file changes. - Added ``config-screen`` script. Web based screen config to come later. - Suppress message popup with (MSG,# No popup message). - Show latest GCode message in ``Message`` field on CONTROL page. + - Marked several GCodes supported in cheat sheet. + - Solved planner lookahead failure for most reasonable cases. ## v0.4.11 - Don't reset global offsets on M2. diff --git a/src/pug/templates/cheat-sheet-view.pug b/src/pug/templates/cheat-sheet-view.pug index 9146cb2..4f63351 100644 --- a/src/pug/templates/cheat-sheet-view.pug +++ b/src/pug/templates/cheat-sheet-view.pug @@ -77,11 +77,6 @@ script#cheat-sheet-view-template(type="text/x-template") a(target="_blank", href=`${base}/g-code.html#gcode:g5.2-g5.3`) G5.2 td P L td NURBS - tr - td - a(target="_blank", href=`${base}/g-code.html#gcode:g38`) G38.2 - G38.5 - td - td Straight Probe tr.unimplemented(v-if="showUnimplemented") td a(target="_blank", href=`${base}/g-code.html#gcode:g33.1`) G33.1 @@ -97,6 +92,11 @@ script#cheat-sheet-view-template(type="text/x-template") | G28.2, G28.3 td td (Un)set Axis Homed State + tr + td + a(target="_blank", href=`${base}/g-code.html#gcode:g38`) G38.2 - G38.5 + td + td Straight Probe tr td a(target="_blank", href=`${camotics_base}#gcodes-g38_6-38_9`) @@ -122,37 +122,37 @@ script#cheat-sheet-view-template(type="text/x-template") a(target="_blank", href=`${base}/m-code.html#mcode:m61`) M61 td Q td Set Current Tool - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g10-l1`) G10 L1 td P Q R td Set Tool Table - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g10-l10`) G10 L10 td P td Set Tool Table - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g10-l11`) G10 L11 td P td Set Tool Table - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g43`) G43 td H td Tool Length Offset - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g43.1`) G43.1 td td Dynamic Tool Length Offset - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g43.2`) G43.2 td H td Apply additional Tool Length Offset - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g49`) G49 td @@ -296,20 +296,20 @@ script#cheat-sheet-view-template(type="text/x-template") td D L td Dynamic Cutter Compensation - tr.spacer-row.unimplemented(v-if="showUnimplemented"): th - tr.header-row.unimplemented(v-if="showUnimplemented") + tr.spacer-row: th + tr.header-row th(colspan='3') Path Control Mode - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g61-g61.1`) | G61 G61.1 td td Exact Path Mode - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/g-code.html#gcode:g64`) G64 td P Q - td Path Blending + td Path Blending (Partial support) tr.spacer-row.unimplemented(v-if="showUnimplemented"): th tr.header-row.unimplemented(v-if="showUnimplemented") @@ -349,6 +349,11 @@ script#cheat-sheet-view-template(type="text/x-template") a(target="_blank", href=`${base}/g-code.html#gcode:g10-l20`) G10 L20 td P td Set Coordinate System + tr + td + a(target="_blank", href=`${base}/g-code.html#gcode:g52`) G52 + td + td Local Coordinate System Offset tr td a(target="_blank", href=`${base}/g-code.html#gcode:g53`) G53 @@ -418,7 +423,7 @@ script#cheat-sheet-view-template(type="text/x-template") a(target="_blank", href=`${base}/o-code.html#ocode:indirection`) [] td td Indirection - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/o-code.html#ocode:calling-files`) | o call @@ -546,7 +551,7 @@ script#cheat-sheet-view-template(type="text/x-template") | (MSG,…) td td Messages - tr.unimplemented(v-if="showUnimplemented") + tr td a(target="_blank", href=`${base}/overview.html#gcode:debug`) (DEBUG,…) td @@ -556,6 +561,11 @@ script#cheat-sheet-view-template(type="text/x-template") a(target="_blank", href=`${base}/overview.html#gcode:print`) (PRINT,…) td td Print Messages + tr + td + a(target="_blank", href=`${base}/overview.html#_logging`) (LOG,…) + td + td Logging Messages div input(type="checkbox", v-model="showUnimplemented")