This commit is contained in:
parent
7575c06bfa
commit
669e0ef96c
1
.prettierignore
Normal file
1
.prettierignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
_includes/
|
|
@ -8,89 +8,93 @@
|
||||||
|
|
||||||
code[class*="language-"],
|
code[class*="language-"],
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
color: var(--color-fg); /* base05 */
|
color: var(--color-fg); /* base05 */
|
||||||
background: var(--color-black);
|
background: var(--color-black);
|
||||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
word-spacing: normal;
|
word-spacing: normal;
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
word-wrap: normal;
|
word-wrap: normal;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
|
||||||
-moz-tab-size: 4;
|
-moz-tab-size: 4;
|
||||||
-o-tab-size: 4;
|
-o-tab-size: 4;
|
||||||
tab-size: 4;
|
tab-size: 4;
|
||||||
|
|
||||||
-webkit-hyphens: none;
|
-webkit-hyphens: none;
|
||||||
-moz-hyphens: none;
|
-moz-hyphens: none;
|
||||||
-ms-hyphens: none;
|
-ms-hyphens: none;
|
||||||
hyphens: none;
|
hyphens: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
pre[class*="language-"]::-moz-selection,
|
||||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
pre[class*="language-"] ::-moz-selection,
|
||||||
color: inherit;
|
code[class*="language-"]::-moz-selection,
|
||||||
text-shadow: none;
|
code[class*="language-"] ::-moz-selection {
|
||||||
background: var(--color-black-bright); /* base02 */
|
color: inherit;
|
||||||
|
text-shadow: none;
|
||||||
|
background: var(--color-black-bright); /* base02 */
|
||||||
}
|
}
|
||||||
|
|
||||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
pre[class*="language-"]::selection,
|
||||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
pre[class*="language-"] ::selection,
|
||||||
color: inherit;
|
code[class*="language-"]::selection,
|
||||||
text-shadow: none;
|
code[class*="language-"] ::selection {
|
||||||
background: var(--color-black-bright); /* base02 */
|
color: inherit;
|
||||||
|
text-shadow: none;
|
||||||
|
background: var(--color-black-bright); /* base02 */
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
code[class*="language-"],
|
code[class*="language-"],
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Code blocks */
|
/* Code blocks */
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
margin: .5em 0;
|
margin: 0.5em 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
:not(pre) > code[class*="language-"],
|
:not(pre) > code[class*="language-"],
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
background: #{{base00-hex}}; /* base00 */
|
background: var(--color-bg); /* base00 */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Inline code */
|
/* Inline code */
|
||||||
:not(pre) > code[class*="language-"] {
|
:not(pre) > code[class*="language-"] {
|
||||||
padding: .1em;
|
padding: 0.1em;
|
||||||
border-radius: .3em;
|
border-radius: 0.3em;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.comment,
|
.token.comment,
|
||||||
.token.prolog,
|
.token.prolog,
|
||||||
.token.cdata {
|
.token.cdata {
|
||||||
color: #{{base03-hex}}; /* base03 */
|
color: var(--color-white); /* base03 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.entity,
|
.token.entity,
|
||||||
.language-css .token.string,
|
.language-css .token.string,
|
||||||
.style .token.string {
|
.style .token.string {
|
||||||
color: #{{base04-hex}}; /* base04 */
|
color: var(--color-white-bright); /* base04 */
|
||||||
background: #{{base01-hex}}; /* base01 */
|
background: var(--color-black); /* base01 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.punctuation {
|
.token.punctuation {
|
||||||
color: #{{base05-hex}}; /* base05 */
|
color: var(--color-fg); /* base05 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.variable,
|
.token.variable,
|
||||||
.token.tag,
|
.token.tag,
|
||||||
.token.operator,
|
.token.operator,
|
||||||
.token.deleted {
|
.token.deleted {
|
||||||
color: var(--color-blue); /* base08 */
|
color: var(--color-blue-bright); /* base08 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.property,
|
.token.property,
|
||||||
|
@ -98,12 +102,12 @@ pre[class*="language-"] {
|
||||||
.token.boolean,
|
.token.boolean,
|
||||||
.token.constant,
|
.token.constant,
|
||||||
.token.url {
|
.token.url {
|
||||||
color: var(--color-red); /* base09 */
|
color: var(--color-red); /* base09 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.class-name,
|
.token.class-name,
|
||||||
.token.bold {
|
.token.bold {
|
||||||
color: var(--color-yellow); /* base0A */
|
color: var(--color-yellow); /* base0A */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.string,
|
.token.string,
|
||||||
|
@ -111,17 +115,17 @@ pre[class*="language-"] {
|
||||||
.token.attr-value,
|
.token.attr-value,
|
||||||
.token.inserted,
|
.token.inserted,
|
||||||
.token.atrule {
|
.token.atrule {
|
||||||
color: var(--color-cyan); /* base0B */
|
color: var(--color-cyan); /* base0B */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.regex,
|
.token.regex,
|
||||||
.token.important {
|
.token.important {
|
||||||
color: var(--color-cyan-bright); /* base0C */
|
color: var(--color-cyan-bright); /* base0C */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.function,
|
.token.function,
|
||||||
.token.attr-name {
|
.token.attr-name {
|
||||||
color: var(--color-magenta); /* base0D */
|
color: var(--color-magenta); /* base0D */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.keyword,
|
.token.keyword,
|
||||||
|
@ -129,26 +133,25 @@ pre[class*="language-"] {
|
||||||
.token.italic,
|
.token.italic,
|
||||||
.token.char,
|
.token.char,
|
||||||
.token.builtin {
|
.token.builtin {
|
||||||
color: var(--color-green); /* base0E */
|
color: var(--color-green); /* base0E */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.doctype {
|
.token.doctype {
|
||||||
color: var(--color-magenta-bright); /* base0F */
|
color: var(--color-magenta-bright); /* base0F */
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.important,
|
.token.important,
|
||||||
.token.bold {
|
.token.bold {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.token.italic {
|
.token.italic {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.entity {
|
.token.entity {
|
||||||
cursor: help;
|
cursor: help;
|
||||||
}
|
}
|
||||||
|
|
||||||
.namespace {
|
.namespace {
|
||||||
opacity: .7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,6 @@ At this point we needed to test them out. And this is where I realized that,
|
||||||
despite picking the unit with the least yellowing, mine didn't work.
|
despite picking the unit with the least yellowing, mine didn't work.
|
||||||
I saw the cursor, and a line for the status bar, but no characters in sight:
|
I saw the cursor, and a line for the status bar, but no characters in sight:
|
||||||
|
|
||||||
|
|
||||||
Thankfully, the scuffed one worked, so I was able to confirm that
|
Thankfully, the scuffed one worked, so I was able to confirm that
|
||||||
I could interact with it. However, the geometry was bad and there seemed
|
I could interact with it. However, the geometry was bad and there seemed
|
||||||
to be some shaking in the text, meaning a power supply wasn't being stable
|
to be some shaking in the text, meaning a power supply wasn't being stable
|
||||||
|
@ -81,7 +80,6 @@ alongside the character itself, or in a separate "Attribute RAM", which is read
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
With my new test setup, I was able to find and probe pins from the underside of the board.
|
With my new test setup, I was able to find and probe pins from the underside of the board.
|
||||||
One of the challenges here is that there are multiple busses, each with potentially multiple masters.
|
One of the challenges here is that there are multiple busses, each with potentially multiple masters.
|
||||||
Not only do you need to probe a data line, you also need to have a probe for whatever makes the chip
|
Not only do you need to probe a data line, you also need to have a probe for whatever makes the chip
|
||||||
|
@ -98,13 +96,11 @@ Uh, guys?
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
It can't possibly be this, right? U17 and U15 are part of character storage,
|
It can't possibly be this, right? U17 and U15 are part of character storage,
|
||||||
and I did see the font RAM output non-zero, meaning it had to have rendered
|
and I did see the font RAM output non-zero, meaning it had to have rendered
|
||||||
something! I quickly cleaned up the joints and powered it on. I couldn't see it
|
something! I quickly cleaned up the joints and powered it on. I couldn't see it
|
||||||
at first, but it worked. Thankfully I found this before starting to replace other chips.
|
at first, but it worked. Thankfully I found this before starting to replace other chips.
|
||||||
|
|
||||||
|
|
||||||
# Takeaway
|
# Takeaway
|
||||||
|
|
||||||
This highlights the two styles of troubleshooting:
|
This highlights the two styles of troubleshooting:
|
||||||
|
|
|
@ -27,10 +27,10 @@ export default async function (eleventyConfig) {
|
||||||
|
|
||||||
// App plugins
|
// App plugins
|
||||||
eleventyConfig.addPreprocessor("drafts", "*", (data, _content) => {
|
eleventyConfig.addPreprocessor("drafts", "*", (data, _content) => {
|
||||||
if(data.draft && process.env.ELEVENTY_RUN_MODE === "build") {
|
if (data.draft && process.env.ELEVENTY_RUN_MODE === "build") {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// eleventyConfig.addPlugin(pluginFonts);
|
// eleventyConfig.addPlugin(pluginFonts);
|
||||||
// Official plugins
|
// Official plugins
|
||||||
let mkFeed = function (type, path) {
|
let mkFeed = function (type, path) {
|
||||||
|
|
Loading…
Reference in a new issue