Skip to content

Commit

Permalink
fix(datasheet): broken full gds render / chip map
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed May 4, 2024
1 parent 359dabc commit 0ab56fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 0 additions & 8 deletions docs/doc_header.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,3 @@ header-includes:
---

\pagebreak

# Render of whole chip

![Full GDS](pics/tinytapeout_numbered.png)

\pagebreak

# Projects
2 changes: 2 additions & 0 deletions documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def load_doc_template(self, name: str) -> str:

def dump_markdown(self):
doc_header = self.load_doc_template("doc_header.md")
doc_chip_map = self.load_doc_template("../../docs/chip_map.md")
doc_template = self.load_doc_template("doc_template.md")
doc_pinout = self.load_doc_template("PINOUT.md")
doc_info = self.load_doc_template("../../tt-multiplexer/docs/INFO.md")
Expand All @@ -82,6 +83,7 @@ def dump_markdown(self):
fh.write(
doc_header.format(name=self.config["name"], repo=get_first_remote(repo))
)
fh.write(doc_chip_map)

self.projects.sort(key=lambda x: x.mux_address)

Expand Down

0 comments on commit 0ab56fa

Please sign in to comment.