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 6, 2024
1 parent 65034f9 commit af1f250
Show file tree
Hide file tree
Showing 2 changed files with 3 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
3 changes: 3 additions & 0 deletions documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def load_doc_template(self, name: str) -> str:

def write_datasheet(self, markdown_file: str, pdf_file: Optional[str] = None):
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 @@ -71,6 +72,8 @@ def write_datasheet(self, markdown_file: str, pdf_file: Optional[str] = None):
fh.write(
doc_header.format(name=self.config["name"], repo=get_first_remote(repo))
)
fh.write(doc_chip_map)
fh.write("# Projects\n")

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

Expand Down

0 comments on commit af1f250

Please sign in to comment.